next up previous
Next: About this document ... Up: lab_template Previous: lab_template

Subsections


Cylindrical and Spherical Coordinates

Getting Started

To assist you, there is a worksheet associated with this lab that contains examples. You can copy that worksheet to your home directory with the following command, which must be run in a terminal window, not in Maple.
cp /math/calclab/MA1024/Coords_start_C11.mw My_Documents
Another way to access the getting started worksheet is to go to your computer's Start menu and choose run. In the run field type:
\\filer\calclab
when you hit enter, you can then choose MA1024 and then choose the worksheet
Coords_start_C11.mw
.

Remember to immediately save it in your own home directory. Once you've copied and saved the worksheet, read through the background on the internet and the background of the worksheet before starting the exerises.

Background

Defining surfaces with rectangular coordinates often times becomes more complicated than necessary. A change in coordinates can simplify things. Cylindrical coordinates can simplify plotting a region in space that is symmetric with respect to the $z$-axis such as paraboloids and cylinders. The paraboloid $z=x^2+y^2$ would become $z=r^2$ and the cylinder $x^2+y^2=1$ would become $r=1$. Spherical coordinates would simplify the equation of a sphere, such as $x^2+y^2+z^2=1$, to $\rho=1$. The conversion tables below show how to make the change of coordinates.

To change to cylindrical coordinates from rectangular coordinates use the conversion:

$x=r\cos(\theta)$
$y=r\sin(\theta)$
$z=z$

Where $r$ is the radius in the x-y plane and $\theta$ is the angle in the x-y plane.

To change to spherical coordinates from rectangular coordinates use the conversion:

$x=\rho\sin(\phi)\cos(\theta)$
$y=\rho\sin(\phi)\sin(\theta)$
$z=\rho\cos(\phi)$

Where $\theta$ is the angle in the x-y plane; $\rho$ is the radius from the origin in any direction; and $\phi$ is the angle in the x-z plane.

Using a triple integral to find the volume of a solid translates in the following manner:

\begin{displaymath}\int \int \int 1 \,dz \,dy \,dx = \int \int \int r \,dz \,dr ...
...ta = \int \int \int \rho^2\sin(\phi) \,d\rho \,d\phi \,d\theta \end{displaymath}

Exercises

  1. Given the rectangular equation:

    \begin{displaymath}
z=\exp(-x^2-y^2)
\end{displaymath}

    A)
    Graph the equation using the domain values of $-2 \leq x \leq 2$, $-2 \leq y \leq 2$ and the range values $0 \leq z \leq 1$.
    B)
    Find the above equation in cylindrical coordinates and then graph the equation. Write the equation in text in its simplest form.
    C)
    Find the above equation in spherical coordinates and graph it. Write the equation of the equation in text in its simplest form.
    D)
    Looking at the three equations, which coordinates appear to give the simplest equation?

  2. Given the rectangular equation:

    \begin{displaymath}
2(x^2+y^2)-z^2=2
\end{displaymath}

    A)
    Graph the equation using the domain values of $-8 \leq x \leq 8$, $-8 \leq y \leq 8$ and the range values $-8 \leq z \leq -8$.
    B)
    Find the above equation in cylindrical coordinates and then graph the equation. Write the equation in text in its simplest form.
    C)
    Find the above equation in spherical coordinates and graph it. Write the equation of the equation in text in its simplest form.
    D)
    Looking at the three equations, which coordinates appear to give the simplest equation?

  3. Use a triple integral in all three coordinate systems to prove that the volume of a sphere of radius $R$ centered at the origin is $\displaystyle \frac{4}{3}\pi R^3$.

next up previous
Next: About this document ... Up: lab_template Previous: lab_template
Dina J. Solitro-Rassias
2011-02-17