login  home  contents  what's new  discussion  bug reports     help  links  subscribe  changes  refresh  edit

Edit detail for #345 fails to compute some simple limits revision 1 of 5

1 2 3 4 5
Editor:
Time: 2007/11/17 22:30:32 GMT-8
Note:

changed:
-
On March 25, 2007 11:54 AM Ondrej Certik asked:
 
... how can I calculate the limit of:
 
$$(3**x+5**x)**(1/x)$$
 
for $x \rightarrow +\infty$?

The result is 5 as you can check by hand:
 
$$(3**x+5**x)**(1/x) = 5 * ((3/5)**x+1)**(1/x) \rightarrow 5$$
 
When I tried that in axiom:
\begin{axiom}
limit((3**x+5**x)**(1/x), x=%plusInfinity)
\end{axiom}
 
or the equivalent problem:
 
\begin{axiom}
limit((3**(1/x)+5**(1/x))**(x), x=0, "right")
\end{axiom}

I got "failed".


Submitted by : (unknown) at: 2007-11-17T22:30:32-08:00 (16 years ago)
Name :
Axiom Version :
Category : Severity : Status :
Optional subject :  
Optional comment :

On March 25, 2007 11:54 AM Ondrej Certik asked:

... how can I calculate the limit of:

LatexWiki Image 

for LatexWiki Image?

The result is 5 as you can check by hand:

LatexWiki Image 

When I tried that in axiom:

axiom
limit((3**x+5**x)**(1/x), x=%plusInfinity)
LatexWiki Image(1)
Type: Union("failed",...)

or the equivalent problem:

axiom
limit((3**(1/x)+5**(1/x))**(x), x=0, "right")
LatexWiki Image(2)
Type: Union("failed",...)

I got "failed".