Can Induction Prove All Terms in a Sequence Are Greater Than One?

  • Thread starter Thread starter mtayab1994
  • Start date Start date
  • Tags Tags
    Induction Series
Click For Summary

Homework Help Overview

The discussion revolves around a recursive sequence defined by U0=2 and the relation (U)n+1=(Un^2+Un)/(1+Un). The goal is to prove that for every n in N, Un>1.

Discussion Character

  • Exploratory, Assumption checking, Mathematical reasoning

Approaches and Questions Raised

  • Participants discuss the validity of the base case for n=0 and the induction hypothesis. There are attempts to manipulate the recursive formula to show that Un+1 is greater than Un and greater than 1. Some participants question the steps taken and the assumptions made in the proof process.

Discussion Status

The discussion is ongoing, with participants providing insights into the structure of induction proofs and clarifying the steps needed to establish the inequality. Some guidance has been offered regarding the manipulation of the recursive formula, but there is no explicit consensus on the correctness of the approaches taken.

Contextual Notes

There are mentions of formatting issues with subscripts and superscripts, which may affect clarity. Participants are also addressing potential errors in the expressions used in the proof attempts.

mtayab1994
Messages
584
Reaction score
0

Homework Statement

(

Given: U0=2 and :

(U)n+1=(Un^2+Un)/(1+Un)



Homework Equations



prove that for every n in N : Un>1

The Attempt at a Solution



ok for n=0 i got Un+1=2 and 2>1 therefore for n=0 its true.

now we assume its true for U=0 and we want to show that Un+1>Un

((Un+1)^2+Un+1)/(1+(Un+1)^2) > Un

am i correct so far?
 
Physics news on Phys.org
mtayab1994 said:

Homework Statement

(

Given: U0=2 and :

(U)n+1=(Un^2+Un)/(1+Un)



Homework Equations



prove that for every n in N : Un>1

The Attempt at a Solution



ok for n=0 i got Un+1=2 and 2>1 therefore for n=0 its true.

now we assume its true for U=0 and we want to show that Un+1>Un

((Un+1)^2+Un+1)/(1+(Un+1)^2) > Un

am i correct so far?


sorry ((Un+1)^2+Un+1)/(1+(Un+1)^2)>1
 
can't you just go
(U)n+1=(Un^2+Un)/(1+Un) = Un(Un+1)/(1+Un)=Un?
 
Nope. With induction proofs, you have some statement P(n) that is either true or false for some value of n. In this case, your statement P(n) is "Un is greater than 1." You first want to establish that P(n) is true for some specific value of n. Then you want to show that if P(k) is true, then P(k+1) is true.
mtayab1994 said:

Homework Statement

(

Given: U0=2 and :

(U)n+1=(Un^2+Un)/(1+Un)

Homework Equations



prove that for every n in N : Un>1

The Attempt at a Solution



ok for n=0 i got Un+1=2 and 2>1 therefore for n=0 its true.
For n=0, you're given Un=2, which is obviously greater than 1. In other words, P(0) is true. You're not trying to show (at this step) that
[tex]U_{n+1} = \frac{U_n^2+U_n}{1+U_n} > 1[/tex]
now we assume its true for U=0 and we want to show that Un+1>Un
Now you assume P(n) is true for n=k and show that this implies that it's true for n=k+1.

Your induction hypothesis is P(k) is true, that is, Uk>1, and you want to prove now that Uk+1>1. According to the recursion relation, you have
[tex]U_{k+1} = \frac{U_k^2+U_k}{1+U_k}[/tex]You want to show the righthand side is greater than 1 because that means P(k+1) is also true.
((Un+1)^2+Un+1)/(1+(Un+1)^2) > Un

am i correct so far?
 
vela said:
Nope. With induction proofs, you have some statement P(n) that is either true or false for some value of n. In this case, your statement P(n) is "Un is greater than 1." You first want to establish that P(n) is true for some specific value of n. Then you want to show that if P(k) is true, then P(k+1) is true.

For n=0, you're given Un=2, which is obviously greater than 1. In other words, P(0) is true. You're not trying to show (at this step) that
[tex]U_{n+1} = \frac{U_n^2+U_n}{1+U_n} > 1[/tex]
Now you assume P(n) is true for n=k and show that this implies that it's true for n=k+1.

Your induction hypothesis is P(k) is true, that is, Uk>1, and you want to prove now that Uk+1>1. According to the recursion relation, you have
[tex]U_{k+1} = \frac{U_k^2+U_k}{1+U_k}[/tex]You want to show the righthand side is greater than 1 because that means P(k+1) is also true.

ok i did:

(Un^2+Un)/(1+Un^2)>1 then:

Un+1-1=(Un-1)/(1+Un^2) and since we know that Un>1 therefor Un-1>0 and 1+Un^2>0 so therefore Un+1>0

Is this correct?
 
It would really help if you would typeset subscripts and superscripts as appropriate. It's really hard to understand what you've written. If you go in advanced more, there are tools to typeset your text. You could also use LaTeX.

Where did (Un2+Un)/(1+Un2)>1 come from? Note that in your original post, Un wasn't squared in the denominator.
 
vela said:
It would really help if you would typeset subscripts and superscripts as appropriate. It's really hard to understand what you've written. If you go in advanced more, there are tools to typeset your text. You could also use LaTeX.

Where did (Un2+Un)/(1+Un2)>1 come from? Note that in your original post, Un wasn't squared in the denominator.

sorry that was my fault Un is squared in the denominator. sorry. so that means that's true then.
 
mtayab1994 said:
(Un^2+Un)/(1+Un^2)>1 then:
You don't start off with this. This is what you're trying to prove.
Un+1-1=(Un-1)/(1+Un2)
This is fine because it only depends on the definition of Un+1.
and since we know that Un>1 therefore Un-1>0 and 1+Un2>0 so therefore Un+1>0

Is this correct?
Yes, that's right.

For the actual proof you write down, you may want to start with something like
\begin{align*}U_{n+1} &= \frac{U_n^2+U_n}{1+U_n^2} \\
&= \frac{U_n^2+1+U_n-1}{1+U_n^2} \\
&= 1+\frac{U_n-1}{U_n^2+1}
\end{align*}And then explain as you did why that last term is positive. It makes it a bit clearer what your argument is, starting from a definition and ending with what you're trying to prove.
 
Last edited:

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
Replies
6
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
4
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K