Prove the lower bound for a sequence (Buck, Advanced Calculus)

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
9 replies · 2K views
yucheng
Messages
232
Reaction score
57
Homework Statement
Define a sequence ##{x_n}## by $$x_1=1, x_{n+1} = x_n + \sqrt{x_n}$$

Show that ##\forall n\geq 1: x_n \geq \frac{n^2}{9}##

(Buck, Advanced Calculus, section 1.6, Exercise 16)
Relevant Equations
N/A
Clearly, ##x_{n+1}>x_n \because x_n + \sqrt{x_n} > x_n##
$$
\begin{align*}
x_{n+1} &= x_n+ \sqrt{x_n} \\
&= x_1 + \sqrt{x_1} + \sqrt{x_2} + \cdots \sqrt{x_n} \\
&>n+1
\end{align*}
$$
##\because \sqrt{x_n}>\sqrt{x_1}=1##

In fact, $$x_{n+1} > 1+ \sqrt{1} + \sqrt{2}+ \sqrt{3} + \cdots \sqrt{n}$$

So... Might this help? Closed form for sum of square roots
 
Physics news on Phys.org
Say [tex]y_n=x_n−x_{n−1}[/tex] for n>1, y1=1 the relation is written as
[tex]y_{n+1}^2=x_n=\sum_{i=1}^n y_i[/tex]
For n=1 the statement stands,i.e.
[tex]x_1=1>\frac{1^2}{9}[/tex]
If it stand for n
[tex]y_{n+1}^2=x_n > \frac{n^2}{9}[/tex]
[tex]y_{n+1} > \frac{n}{3}[/tex]
Now you can show it stands for n+1.
 
Last edited:
  • Like
Likes   Reactions: yucheng
anuttarasammyak said:
Say [tex]y_n=x_n−x_{n−1}[/tex] for n>1, y1=1 the relation is written as
[tex]y_{n+1}^2=x_n=\sum_{i=1}^n y_i[/tex]
For n=1 the statement stands,i.e.
[tex]x_1=1>\frac{1^2}{9}[/tex]
If it stand for n
[tex]y_{n+1}^2=x_n > \frac{n^2}{9}[/tex]
[tex]y_{n+1} > \frac{n}{3}[/tex]
You can show it stand for n+1.

did you mean this (I changed all [tex]to ##\#\###)<br /> <br /> Say ##y_n=x_n−x_{n−1}## for n>1, y1=1 the relation is written as<br /> ##y_{n+1}^2=\sum_{i=1}^n y_i ##<br /> For n=1 the statement stands,i.e.<br /> ##x_1=1>\frac{1^2}{9}##<br /> If it stand for n<br /> ##y_{n+1}^2=\sum_{i=1}^n y_i > \frac{n^2}{9}##<br /> ##y_{n+1} > \frac{n}{3}##<br /> You can show it stand for ##n+1##.[/tex]
 
I think you can just do this by mostly straightforward induction. In particular notice that ##\frac{(n+1)^2}{9} < \frac{n^2}{9} + \sqrt{\frac{n^2}{9}},## at least if n is big enough (proof of this left to the reader)
 
  • Like
Likes   Reactions: yucheng, suremarc and pasmith
@Office_Shredder
I guess we always forget the most straightforward and basic methods :doh:thanks!
 
yucheng said:
@Office_Shredder
I guess we always forget the most straightforward and basic methods :doh:thanks!
So, did you find the answer?Tell us about it if you want.
 
  • Like
Likes   Reactions: epenguin
anuttarasammyak said:
Say [tex]y_n=x_n−x_{n−1}[/tex] for n>1, y1=1 the relation is written as
[tex]y_{n+1}^2=x_n=\sum_{i=1}^n y_i[/tex]
For n=1 the statement stands,i.e.
[tex]x_1=1>\frac{1^2}{9}[/tex]
If it stand for n
[tex]y_{n+1}^2=x_n > \frac{n^2}{9}[/tex]
[tex]y_{n+1} > \frac{n}{3}[/tex]
Now you can show it stands for n+1.
This is an different approach that i took to solve it. Does the equation ##x_n=\sum_{i=1}^n y_i ## hold? How did you show it? Because if you try ##\sum_{i=1}^n y_i=y_1+y_2+...+y_n=(x_1-x_0)+(x_2-x_1)+(x_3-x_2)+(x_4-x_3)+(x_5-x_4)+## ##...+(x_n-x_{n-1})+(x_{n+1}-x_n)=-x_0+x_{n+1}=-1+x_{n+1}##
 
##y_1=1## to be add and the final term be n not n+1.
 
anuttarasammyak said:
##y_1=1## to be add and the final term be n not n+1.
You are correct, I saw it now. Sorry for that.
 
Office_Shredder said:
I think you can just do this by mostly straightforward induction. In particular notice that ##\frac{(n+1)^2}{9} < \frac{n^2}{9} + \sqrt{\frac{n^2}{9}},## at least if n is big enough (proof of this left to the reader)

infinitely small said:
So, did you find the answer?Tell us about it if you want.

Yup. Base case: ##x_1=1 \geq 1/9## Assume inductively that ##x_n \geq \frac{x^2}{9}##, then ##\frac{(n+1)^2}{9} < \frac{n^2}{9} + \sqrt{\frac{n^2}{9}} \leq x_n + \sqrt{x_n} = x_{n+1}##

P.S. ##\frac{3n}{9} > \frac{2n+1}{9} \because n>1## (except base case)