Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168735
Image: ubuntu2004

A Limit That Does Not Exist

lim(x,y)(0,0)x2y2x2+y2\displaystyle \lim_{(x, y) \to (0, 0)} \frac {x^2 - y^2}{x^2 + y^2}

x, y = var('x,y') plot3d((x^2 - y^2)/(x^2 + y^2), (x,-4,4), (y,-4,4), aspect_ratio=1)

Another Limit That Does Not Exist

lim(x,y)(0,0)xyx2+y2\displaystyle \lim_{(x, y) \to (0, 0)} \frac {xy}{x^2 + y^2}

x, y = var('x,y') plot3d((x*y)/(x^2 + y^2), (x,-4,4), (y,-4,4), aspect_ratio=1)

A Limit That Does Exist

lim(x,y)(0,0)3x2yx2+y2=0\displaystyle \lim_{(x, y) \to (0, 0)} \frac {3x^2y}{x^2 + y^2} = 0

x, y = var('x,y') plot3d((3*x^2*y)/(x^2 + y^2), (x,-4,4), (y,-4,4), aspect_ratio=1)