Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Westminster College- Math 203 demos

116 views
var('x, y')
(x, y)
%md $z = y^{2} - x^{2}$

z=y2x2z = y^{2} - x^{2}

plot3d(y^2 - x^2, (x, -1, 1), (y, -1, 1), adaptive = True)

z=x2+y2z = x^{2} + y^{2}

plot3d(x^2 + y^2, (x, -1, 1), (y, -1, 1), adaptive = True)

z=x2+y2z = \sqrt{x^{2} + y^{2}}

z=1yz = 1 - y

plot3d(sqrt(x^2 + y^2), (x, -3, 3), (y, -3, 3), adaptive = True, opacity = 0.5) + plot3d(1 - y, (x, -3, 3), (y, -3, 3), adaptive = True, opacity = 0.5)
%md $z = \sqrt{9 - x^{2}}$

z=9x2z = \sqrt{9 - x^{2}}

plot3d(sqrt(9 - x^2), (x, -3, 3), (y, -3, 3))
3D rendering not yet implemented

z=9x2y2z = \sqrt{9 - x^{2} - y^{2}}

plot3d(sqrt(9 - x^2 - y^2), (x, -3, 3), (y, -3, 3))