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.
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.