Ask Your Question
0

Limit of 1/x = infinty?

asked 2014-02-12 11:04:50 +0200

anonymous user

Anonymous

Hi,

I don't get why limit(1/x, x = 0) returns infinity.

Shouldn't it be undefined?

Interestingly, Mathematica also returns infinity, but on Wolfram Alpha it says two-sided limit does not exist.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2014-02-12 11:32:28 +0200

Infinity is not signed There also +Infinity and -Infinity .

example :

sage: limit(1/x, x=0)
Infinity
sage: limit(1/x, x=0, dir='+')
+Infinity
sage: limit(1/x, x=0, dir='-')
-Infinity

Look at here : http://www.sagemath.org/doc/reference/calculus/sage/calculus/calculus.html

edit flag offensive delete link more

Comments

Thanks. I get it now, although returning infinity when asking for the two-sided limit seems a bit misleading to me. But it's not just sage doing it...

Cassio gravatar imageCassio ( 2014-02-12 12:07:25 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2014-02-12 11:04:50 +0200

Seen: 2,171 times

Last updated: Feb 12 '14