Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168745
Image: ubuntu2004

Ellipsoid

x2a2+y2b2+z2c2=1\displaystyle \frac {x^2}{a^2} + \frac {y^2}{b^2} + \frac {z^2}{c^2} = 1

x, y, z = var('x,y,z') implicit_plot3d(x^2/4^2 + y^2/3^2 + z^2/2^2==1, (x,-8, 8), (y,-6,6), (z,-4,4), aspect_ratio=1)

Elliptic Paraboloid

zc=x2a2+y2b2\displaystyle \frac zc = \frac {x^2}{a^2} + \frac {y^2}{b^2}

x, y, z = var('x,y,z') implicit_plot3d(x^2/4^2 + y^2/3^2 - z/2==0, (x,-8, 8), (y,-6,6), (z,-4,4), aspect_ratio=1)

Hyperbolic Paraboloid

zc=x2a2y2b2\displaystyle \frac zc = \frac {x^2}{a^2} - \frac {y^2}{b^2}

x, y, z = var('x,y,z') implicit_plot3d(x^2/4^2 - y^2/3^2 - z/2==0, (x,-8, 8), (y,-6,6), (z,-4,4), aspect_ratio=1)

Cone

z2c2=x2a2+y2b2\displaystyle \frac {z^2}{c^2} = \frac {x^2}{a^2} + \frac {y^2}{b^2}

x, y, z = var('x,y,z') implicit_plot3d(x^2/4^2 + y^2/3^2 - z^2/2^2==0, (x,-8, 8), (y,-6,6), (z,-4,4), aspect_ratio=1)

Hyperboloid of One Sheet

x2a2+y2b2z2c2=1\displaystyle \frac {x^2}{a^2} + \frac {y^2}{b^2} - \frac {z^2}{c^2} = 1

x, y, z = var('x,y,z') implicit_plot3d(x^2/4^2 + y^2/3^2 - z^2/2^2==1, (x,-8, 8), (y,-6,6), (z,-4,4), aspect_ratio=1)

Hyperboloid of Two Sheets

x2a2y2b2+z2c2=1\displaystyle - \frac {x^2}{a^2} - \frac {y^2}{b^2} + \frac {z^2}{c^2} = 1

x, y, z = var('x,y,z') implicit_plot3d(- x^2/4^2 - y^2/3^2 + z^2/2^2==1, (x,-8, 8), (y,-6,6), (z,-4,4), aspect_ratio=1)