Proving Convergence of a Sequence Using Cauchy Criterion

andyfeynman
Messages
10
Reaction score
0

Homework Statement


Show that the sequence {xn}:
xn := (21/1 - 1)2 + (21/2 - 1)2 + ... + (21/n - 1)2 is convergent.

Homework Equations

The Attempt at a Solution


If n > m,
|xn - xm| = (21/n - 1)2 + (21/(n-1) - 1)2 + ... + (21/(m+1) - 1)2
< (21/n)2 + (21/(n-1))2 + ... + (21/(m+1))2
< (21/(m+1))2 + (21/(m+2))2 + ...
= 41/m
Let ɛ > 0. We choose N such that 41/N < ɛ for all n > m > N.
Then |xn - xm| < 41/N < ɛ for all n > m > N.
 
Physics news on Phys.org
andyfeynman said:
Let ɛ > 0. We choose N such that 41/N < ɛ for all n > m > N.
Which N would you choose for ɛ=1?
 
mfb said:
Which N would you choose for ɛ=1?
Just forgot it. I made a very stupid mistake.
But I came up with the idea of letting bk = 21/k - 1.
This means bk2 < 4[k(k-1)] for all k > 2.
Therefore,
xn = 1 + b22 + ... + bn2
< 1 + 4/[1(2-1)] + ... 4/[n(n-1)]
= 1 + 4(1 - 1/2) + ... + 4[1/(n-1) - 1/n]
= 5 - 4/n
< 5
Since xn is monotone increasing and bounded, it is convergent.
But is there any way to do it using the Cauchy criterion?
 
andyfeynman said:
This means bk2 < 4[k(k-1)] for all k > 2.
That step is certainly not trivial.

I would use something like 21/k < 1 + c/k for some c.

Cauchy criterion: Probably, but I don't see how it would help.
 
Thread 'Use greedy vertex coloring algorithm to prove the upper bound of χ'
Hi! I am struggling with the exercise I mentioned under "Homework statement". The exercise is about a specific "greedy vertex coloring algorithm". One definition (which matches what my book uses) can be found here: https://people.cs.uchicago.edu/~laci/HANDOUTS/greedycoloring.pdf Here is also a screenshot of the relevant parts of the linked PDF, i.e. the def. of the algorithm: Sadly I don't have much to show as far as a solution attempt goes, as I am stuck on how to proceed. I thought...
Back
Top