Below you will find the quadric surfaces that we tried to sketch in class. I made these using SageMath (http://sagemath.org) in a web-based Jupyter notebook (http://jupyter.org).
The ellipsoid that we plotted in class had the formula $$\left(\frac{x}{3}\right)^2 + \left(\frac{y}{2}\right)^2 + z^2 = 1.$$ The jagged edges near the equator of the graph are a numerical artifact. The surface should close smoothly.
var('x,y,z');
fu = sqrt(1 - (x/3)**2 - (y/2)**2);
fl = -fu;
show(plot3d(fu,(x,-3,3),(y,-2,2),aspect_ratio=1,viewer='tachyon') +
plot3d(fl,(x,-3,3),(y,-2,2),aspect_ratio=1,viewer='tachyon'))
The hyperbolic paraboloid from class had equation $$ z = x^2 - 2y^2.$$
saddle = x**2 - 2*y**2;
plot3d(saddle,(x,-2,2),(y,-1,1),aspect_ratio=1,viewer='tachyon')
The elliptic paraboloid from class had equation $$z = x^2 + 2y^2.$$
ep = x**2 + 2*y**2;
plot3d(ep,(x,-2,2),(y,-1,1),aspect_ratio=1,viewer='tachyon')