| > | plot3d(r^2,r=0..10,theta=0..2*Pi,coords=z_cylindrical); |
![[Plot]](images/L4_1.gif)
| > | plot3d(x^2+y^2,x=-2..2,y=-2..2); |
![[Plot]](images/L4_2.gif)
| > | plot3d(x^2-y^2,x=-2..2,y=-2..2); |
![[Plot]](images/L4_3.gif)
| > |
| > | plot3d([cos(t)+v*sin(t), sin(t)-v*cos(t), v],t=0..2*Pi, v=-1..1); |
![[Plot]](images/L4_4.gif)
| > | plot3d(sqrt(r^2-1),r=1..2,theta=0..2*Pi,coords=z_cylindrical); |
![[Plot]](images/L4_5.gif)
| > | plot3d(sqrt(z^2-1),theta=0..2*Pi,z=-3..3,coords=cylindrical,numpoints=10000); |
![[Plot]](images/L4_6.gif)
| > |