| 1 | initial version |
If your function is "nice enough", you can try to take the limit one at a time. In general, the limit may not exist.
sage: f(x,y) = x^2 + y^2
sage: f.limit(x=0).limit(y=0)
(x, y) |--> 0
sage: f.limit(x=0).limit(y=2)
(x, y) |--> 4
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.