|
|
last edited 13 years ago by badae |
1 2 | ||
Editor: badae
Time: 2011/04/07 07:59:54 GMT-7 |
||
Note: |
added:
From badae Thu Apr 7 07:59:53 -0700 2011
From: badae
Date: Thu, 07 Apr 2011 07:59:53 -0700
Subject:
Message-ID: <20110407075953-0700@axiom-wiki.newsynthesis.org>
Name: '#234 limit((-1/2)^n,n=%plusInfinity)' => '#234 limit(-1/2)^n'
Another problem I have is that taking the limit of an expression containing (-1)^n always returns "failed", where my TI-89 Titanium calculator will give a finite limit. For example:
limit( 2 + (-2/%pi)^n, n=%plusInfinity ) ===> "failed"
... but the TI-89t returns 2.
This version of Axiom (FriCAS) gives:
(1) -> )version
"FriCAS 1.3.10 compiled at Wed 10 Jan 02:19:45 CET 2024" limit( 2 + (-2/%pi)^n,n=%plusInfinity )
(1) |
The TI-89t says that the limit of (-1)^n as n approaches infinity is -1, implying that it believes that infinity is an odd number. That kind of makes sense to me, since if you divide infinity in half, you still have infinity, and you keep adding 1 to get to infinity, making it odd. If infinity is even then the answer should be 1, and if we can't know if infinity is even or odd, then the answer is uncertain or undefined.
On the other hand, the TI-89t says that lim ( (-1)^n * (n + 1)/n ) is undefined. But it already told me that lim (-1)^n = -1, and that lim (n + 1)/n = 1. If the limit of a product is the product of the limits of the factors, then lim ( (-1)^n * (n + 1)/n ) should be -1, right?
So, who's right?
Mathematically, the limit is 2 since (-2/%pi) has absolute value less than 1, and hence (-2/%pi)^n converges to 0. So TI-89t is correct and Axiom is wrong.
In the second case, TI-89t is wrong to say that limit (-1)^n is -1. The limit does not exist because the sequence (-1)^n oscillates between 1 and -1. There is no number L (the assumed limit) such that given any epsilon > 0, there is a natural number N such that |(-1)^n - L| < epsilon for all n > N.
At least Axiom gets this right:
limit( (-1)^n,n=%plusInfinity )
(2) |
limit( (n+ 1)/n,n=%plusInfinity )
(3) |
limit( (-1)^n * (n + 1)/n,n=%plusInfinity )
(4) |
#234 limit((-1/2)^n,n=%plusInfinity)
=> #234 limit(-1/2)^n