Proving the Limit of |a|^n Goes to 0 for |a| < 1

  • Thread starter Thread starter kingstrick
  • Start date Start date
Click For Summary
SUMMARY

The limit of |a|^n approaches 0 as n approaches infinity when |a| < 1. The proof utilizes the properties of monotonic sequences and boundedness, demonstrating that |a|^n is a decreasing sequence bounded below by 0. By applying the convergent monotone sequence theorem, it is established that the limit L must be 0, as any non-zero limit would contradict the condition |a| < 1. The discussion also highlights the importance of avoiding incorrect manipulations of limits, particularly when logarithmic properties are misapplied.

PREREQUISITES
  • Understanding of limits and convergence in sequences
  • Familiarity with the properties of monotonic sequences
  • Knowledge of the Squeeze Theorem
  • Basic logarithmic identities and their applications in calculus
NEXT STEPS
  • Study the properties of monotonic sequences in more depth
  • Learn about the Squeeze Theorem and its applications in proving limits
  • Explore the concept of bounded sequences and their convergence
  • Review logarithmic properties and their correct usage in limit calculations
USEFUL FOR

Students studying calculus, particularly those focusing on limits and sequences, as well as educators seeking to clarify concepts related to convergence and boundedness in mathematical analysis.

kingstrick
Messages
107
Reaction score
0

Homework Statement



given |a| < 1, show that the limit of |a|^n goes to 0 as n goes to infinity.

Homework Equations





The Attempt at a Solution



let |a|<1 and n>0 (n is a natural number, a is a real number)

then

|a^n| < 1^n

then

|a|^n < 1

then

1/n * |a|^n <= |a|^n < 1 (and we know from earlier that 1/n * |a|^n goes to zero)

so 0 <=|a|^n < 1 meaning |a|^n is bounded below.

now note that

|a| > |a|^2 > |a|^3 > ... |a|^n > |a|^(n+1) > ... since a < 1

Since a^n is progressively smaller and bounded below by zero, we know that a^n does converge by the convergent monotone sequence thm and since there are infinite items in this sequence, its limit cannot be in the set of a^n.

therefore let L be the limit,

|a^n - L| < e, since L is smaller than a^n;

a^n - L < e.

**I tried using the squeeze theorem but could not find a sequence that I new to be greater than a^n and goes to zero.** And I don't know what I am missing in order to be able to claim that L is zero.
 
Physics news on Phys.org
Hint: ##|a|^{n+1} = |a| \cdot |a|^{n}##. What happens if you take limits of both sides of this equation?
 
i am still missing something, cause now i am getting the lim to be e which i know is incorrect.

(n+1) * lim ln |a|= Lim (|a| * |a|^n) = lim |a| * n lim ln |a|

(n+1) = n lim |a|

(1+1/n) = lim |a|

(1+1/n)^n = (lim |a|)^n

e = lim |a|^n
 
kingstrick said:
i am still missing something, cause now i am getting the lim to be 1 which i know is incorrect.

(n+1) * lim ln |a|= Lim (|a| * |a|^n) = lim |a| * n lim ln |a|
I'm not sure why you're taking logs, but in any case the above doesn't make any sense.

First, how did you slide the "lim" past the ##n+1## to get ##(n+1) \lim \ln |a|##? Aren't you taking the limit with respect to ##n##?

Second, it is not true that ##\ln (|a| \cdot |a|^n) = |a| \cdot n\ln|a|## as your second equality seems to suggest.
 
Try taking limits directly of the left and right hand sides. Don't take logs first:
$$|a|^{n+1} = |a| \cdot |a|^n$$
Take advantage of the fact that you already concluded that ##\lim |a|^n## must exist because the sequence is bounded and monotonic.
 
I am unsure. I remember from an earlier class that the limit of x^n is equal to n * lim ln x

so i tried extending it to calculate the limits like you suggested:

lim of a^(n+1) = (n+1) * lim ln a [1]

lim (a*a^n) = lim a * lim a^n = lim a * n * lim ln a. [2] Then i divided both sides ([1], [2]) by lim ln a
 
kingstrick said:
I am unsure. I remember from an earlier class that the limit of x^n is equal to n * lim ln x
It's not true. What is true is that ##\ln (x^n) = n \ln (x)## and therefore ##\lim \ln (x^n) = \lim n \ln (x)##, but that isn't going to help you here.

You have established that ##\lim_{n\rightarrow \infty} |a|^n## must exist. Let's call this limit ##L##. Now what is ##\lim_{n\rightarrow \infty} |a|^{n+1}##?
 
lim |a|^(n+1) = aL < L since a < 1
 
kingstrick said:
lim |a|^(n+1) = aL < L since a < 1
What else is ##\lim|a|^{n+1}## equal to? Think about sequences in general. If ##(x_n)## is some sequence and ##\lim x_n = L##, then what is ##\lim x_{n+1}##?
 
  • #10
It should have the same limit
 
  • #11
kingstrick said:
It should have the same limit
Yes, that's right. So if we put ##x_n = |a|^n##, then ##x_{n+1} = |a|^{n+1}##.

If ##\lim |a|^n = L##, then what is ##\lim |a|^{n+1}##?
 
  • #12
lim |a|^(n+1) = L
 
  • #13
but doesn't that show

lim |a|^(n+1) = lim |a| * lim |a|^n

L = lim |a| * L
1 = lim |a| ??
 
  • #14
kingstrick said:
but doesn't that show

lim |a|^(n+1) = lim |a| * lim |a|^n

L = lim |a| * L
Yes!

1 = lim |a| ??
Well, that would be valid if ##L## was nonzero. Notice that ##\lim |a| = |a|##, so what you have just shown is that if you can divide by ##L##, then ##|a| = 1##. But we are given that ##|a| < 1##.

We want to prove that ##L## is zero, so dividing by ##L## is not what you want to do. How can you solve ##L = \lim |a| \cdot L## for ##L##?
 
  • Like
Likes   Reactions: 1 person
  • #15
since |a| < 1 then lim |a| = |a| < 1 and L = lim |a| * L then L - L*Lim |a| = 0
which implies L(1-Lim|a|)=0 therefore L = 0
 
  • #16
got it! thanks!
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 4 ·
Replies
4
Views
2K