PDA

View Full Version : Another tricky sum


twoflower
Dec4-04, 04:36 AM
Hi,

I really don't know which trick should I use to solve convergence of this sum:


\sum_{n=1}^{\infty} a_{n}


where


a_{n} = \left( 1 - \frac{1}{n^2} \right)^{n} - 1


Neither binomial development nor writing first few terms helped me, and because all terms of this sum are negative, I can't use many of theorems...

It seems it could have something to do with e, but I can't see the adjustment to get it exactly...

Thank you for any suggestion.

Tide
Dec4-04, 06:54 AM
Does this help?

1 - \frac {1}{n^2} = \left( 1 - \frac {1}{n}\right) \left( 1 + \frac {1}{n}\right)

twoflower
Dec4-04, 07:40 AM
Does this help?

1 - \frac {1}{n^2} = \left( 1 - \frac {1}{n}\right) \left( 1 + \frac {1}{n}\right)

Not much :redface:

Tide
Dec4-04, 07:58 AM
Does this help?

\lim_{n -> \infty} \left(1 - \frac {1}{n}\right)^n = \frac {1}{e}

twoflower
Dec4-04, 08:08 AM
Yes I noticed it, but the only thing I was able to use it for was the prove of neccessary convergence condition. Anyway, I can't realize how to use this information in proving of convergence itself...

twoflower
Dec4-04, 08:09 AM
I tried


\lim_{n \rightarrow \infty} \frac{a_{n+1}}{a_{n}} < 1


But it doesn't seem so...

arildno
Dec4-04, 02:02 PM
Damn!
This one seems really difficult, and I have only one lame suggestion:
(1-\frac{1}{n^{2}})^{n}-1^{n}=-\frac{1}{n^{2}}\sum_{i=0}^{n-1}(1-\frac{1}{n^{2}})^{i}
Hence, your originial partial sum can be written as:
-\sum_{n=1}^{N}\sum_{i=0}^{n-1}\frac{1}{n^{2}}(1-\frac{1}{n^{2}})^{i}

Possibly, this double sum may be rewritten in a clever manner as a Cauchy product, but I'm a bit skeptical..

twoflower
Dec4-04, 02:32 PM
I took a look at what Cauchy product is (at wolfram.com) and I think that however it may lead to solving this problem, we're intended to solve it otherwise, because Cauchy product was not ever mentioned in the lecture...

shmoe
Dec4-04, 04:41 PM
Is this a series from a practice final again? This is another question that I want to use Taylor series, or some bounds derived from series. You really need to know something about how fast (1-1/n^2)^n is approaching 1, and unless you've been given some inequalities to that effect (or some bounds like e^x\geq 1+x) I don't see how you can do this.

twoflower
Dec4-04, 04:58 PM
Is this a series from a practice final again? This is another question that I want to use Taylor series, or some bounds derived from series. You really need to know something about how fast (1-1/n^2)^n is approaching 1, and unless you've been given some inequalities to that effect (or some bounds like e^x\geq 1+x) I don't see how you can do this.

No, this is just a problem from previous year winter semester from mathematical analysis test for informatics. It's definitely possible that it should be solved using Talyor's polynom, because according to sylabus we should learn it before the test comes...but now we're only at derivatives.

shmoe
Dec4-04, 05:30 PM
I can't think of another way. The lower bound e^x\geq 1+x (true for all x) in my last post is easy enough to prove just knowing derivatives, but I also want to use the upper bound e^{-1/x}\leq 1-1/(2x) (for x>1) that won't be so easy to prove*.

If you assume these bounds (though you should be able to prove the first), you should be able to solve it. Try writing

\left( 1 - \frac{1}{n^2} \right)^{n}-1=e^{n\log\left( 1 - \frac{1}{n^2} \right)}-1

And converting e^x\geq 1+x to a bound for log, x\geq \log(1+x). Use this bound on the exponent. Then use the harder to prove upper bound.


edit*-on furthur thought, this won't be so difficult. You'll only need it to hold for large x. This is equivalent to proving e^{-y}\leq 1-y/2 holds for (positive) values of y that are close to zero, which can be done using only derivatives.

Tsss
Dec5-04, 09:43 AM
n\ln(1 - \frac{1}{n^2})\sim-\frac{n}{n^2}=-\frac{1}{n}\rightarrow 0

So, (1 - \frac{1}{n^2})^{n}-1=e^{n\ln(1 - \frac{1}{n^2} )}-1\sim-\frac{1}{n}

Now, you can conclude ;).

arildno
Dec6-04, 07:31 AM
The easiest way to do this, is by making the binomial coeffecient expansion (I'll just change the sign):
1-(1-\frac{1}{n^{2}})^{n}=\sum_{i=1}^{n}(-1)^{i-1}\binom{n}{i}\frac{1}{n^{2i}}
Now, you should be able to show that:
\binom{n}{i}\frac{1}{n^{2i}}\leq\frac{1}{i!n^{i}}

Hence, each coefficient a_{n} is an alternating (finite) series with terms of decreasing magnitude, hence:
a_{n}\geq\frac{1}{n}-\frac{1}{2n^{2}}\geq\frac{1}{n}-\frac{1}{2n}=\frac{1}{2n}

Hence, your series diverges faster than one half of the harmonic series.

shmoe
Dec6-04, 10:18 AM
That was nice and simple arildno! I gave up without too much thought on the binomial expansion and headed for a less direct route to get the same result (half the harmonic is what my string of inequalities will also yield).