| 1 | initial version |
sage: f(x)=(4*3+3*x)/(-12+2*x)
sage: f.limit(x=Infinity)
3/2
or
sage: g=(4*3+3*x)/(-12+2*x)
sage: g.limit(x=Infinity)
3/2
or with $f$ and $g$ defined as above,
sage: limit(f, x=Infinity)
3/2
sage: limit(f(x), x=Infinity)
3/2
sage: limit(g, x=Infinity)
3/2
You can also leave out the asterisks:
sage: implicit_multiplication(True)
sage: g=(12+3x)/(-12+2x)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.