Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Project: Cálculo II
Views: 218
# Declare x,y,z as variables x,y,z=var('x,y,z')
# Draw the explicit z=x^2+y^2, for -10<x<10 y -5<y<5 (HIT "RUN" OR MAY+INTRO) plot3d(x^2+y^2,(x,-10,10), (y,-5,5))
3D rendering not yet implemented
# Now draw the same in implicit form x^2+y^2-z=0, adding -15<z<15 (HIT "RUN" OR MAY+INTRO) implicit_plot3d(x^2+y^2-z==0,(x,-10,10),(y,-5,5),(z,-15,15))
3D rendering not yet implemented
# Now the implicit x^2-y^2-z^2=0, same limits (HIT "RUN" OR MAY+INTRO) implicit_plot3d(x^2-y^2-z^2==0,(x,-10,10),(y,-5,5),(z,-15,15))
3D rendering not yet implemented