Quick question on real analysis proof

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
6 replies · 2K views
Lee33
Messages
156
Reaction score
0

Homework Statement



Show that the sequence of functions ##x(1-x), x^2(1-x),...## converges uniformly on ##[0,1].##

2. The attempt at a solution

I have a quick question. For the following proof why is ##\left ( \frac{n}{n+1}\right )^n < 1##?

Proof:

We need to prove that, given ##\epsilon > 0##, there exists an ##N## such that for every ##n > N## and for every ##x \in[0, 1]##, we have ##|x^n(1 - x)-0| < \epsilon.##

##x^n## and ##(1-x)## are both continuous functions. Now ##x^n(1 - x)## has a maximum on ##[0, 1]## at $x=\frac{n}{1+n}$ since ##\frac{d}{dx}[x^n(1-x)] = -x^n +nx^{n-1}-nx^n = -x-nx+n## thus ##x=\frac{n}{1+n}##.

Then ##|x^n(1-x)|<(\frac{n}{n+1})^n(\frac{1}{n+1})<\frac{1}{n+1}<\epsilon.## Choose ##N = \frac{1-\epsilon}{\epsilon}## therefore for ##n>N## we have ##|x^n(1-x)|<\epsilon.##

Why is ##\left ( \frac{n}{n+1}\right )^n < 1##?
 
Physics news on Phys.org
I think that's pretty obvious, but one can of course formally prove it:
[tex]0<1 \; \Rightarrow \; n<n+1.[/tex]
Now since [itex]n+1>0[/itex] you have
[tex]\frac{n}{n+1}<1.[/tex]
Now multiplying this with [itex]n/(n+1)[/itex] gives
[tex]\left (\frac{n}{n+1} \right )^2 < \frac{n}{n+1}<1,[/tex]
and in this way you can prove that
[tex]\left (\frac{n}{n+1} \right )^k<1[/tex]
for all [itex]k \in \mathbb{N}[/itex]. Setting [itex]k=n[/itex] gives the inequality you asked for.
 
  • Like
Likes   Reactions: 1 person
vanhees71 - Thanks, that is a nice way to prove it!

Is there another way, for example something similar ##\lim_{n\to \infty}(\frac{n}{n+1})^n <1## implies ##\lim_{n\to \infty} \left(1+\frac{1}{n}\right)^n = e > 1##? Or am I wrong?
 
It has to be valid for all n>N thus your exponential limit is not going to work here.
 
Dirk-mec1 - So I can't use that? Vanhees71 proof will suffice?
 
Lee33 said:
vanhees71 - Thanks, that is a nice way to prove it!

Is there another way, for example something similar ##\lim_{n\to \infty}(\frac{n}{n+1})^n <1## implies ##\lim_{n\to \infty} \left(1+\frac{1}{n}\right)^n = e > 1##? Or am I wrong?
You have that backwards. The limit
$$\lim_{n\to \infty} \left(1+\frac{1}{n}\right)^n = e$$ implies that
$$\lim_{n\to \infty} \left(\frac{n}{n+1}\right)^n = \frac{1}{e} < 1.$$ You can probably use this fact in an indirect way for your needs. You know that if ##n## is large enough, ##\left(\frac{n}{n+1}\right)^n## will necessarily be less than 1 because the sequence approaches 1/e. With a suitable choice for ##N##, you will get the result you need. But why would you want to do that? The proof vanhees provided is much clearer and direct.
 
  • Like
Likes   Reactions: 1 person
Vela - Thanks and you're right, vanhees proof is a lot more clear! Thanks for all the help.