Processing math: 100%
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

i is the square root of 1, so it doesn't really make sense to take a limit as it varies. If you instead do either

lim(x/(x+1),x=infinity)

or

var('i')  # make "i" a variable
lim(i/(i+1),i=infinity)

then you'll get the answer you expect.

click to hide/show revision 2
No.2 Revision

i is predefined in Sage to be the square root of 1, so it doesn't really make sense to take a limit as it varies. If you instead do either

lim(x/(x+1),x=infinity)

or

var('i')  # make "i" a variable
lim(i/(i+1),i=infinity)

then you'll get the answer you expect.