We discuss how to find implicit and explicit formulas for planes.

Planes are the three-dimensional analogue of lines in two-dimensions.

Implicit planes

Remember an implicit function in is one of the form: We would like to know the implicit formula for a plane. Here the dot product saves the day. Recall that if is any vector, and , then the equation is solved by all vectors that are orthogonal to . We plotted several such vectors below:

PIC
From this we see that gives the formula for a plane. Since is a solution, this plane must pass through the origin. If we want our plane to be located anywhere in space, we must know a point on the plane, call it . Putting this together, we can now see:

If you know

  • a vector and
  • a point (given by a vector)

then,

is an implicit equation for a plane passing through the point with normal vector .
Find the implicit equation of a plane that passes through the point and with normal vector . Check your answer by modifying the definition of in the SAGE code below:

Normal vectors not only allow us to define equations for planes but also they help us describe properties of planes.

What is the (most obvious) normal vector for the plane
Which of the following planes are parallel to the plane ?
Which of the following planes are orthogonal to the plane ?

Parametric planes

Given any two nonzero vectors, and such that we can produce a parametric formula for a plane by writing where is a vector whose “tip” is on the plane, and and are in the plane.

Given two nonzero vectors, and , what does it mean for ?
It means these vectors are parallel. It means these vectors are not parallel. It means these vectors are orthogonal. It means these vectors are not orthogonal.

The vector-valued formula for a plane is very similar to our formula for a line, where is a vector that points in the direction of the line, both represent linear relationships, and hence we use similar notation for both.

Now that we have two methods of graphing planes, let’s use both of the representations at once!

Let and . Compute .
Use your answer above to give an implicit equation for the plane that passes through the point that is normal to . Check your answer by modifying the SAGE code below to show appropriate normal vector and modifying the definition of :
Now give a parametric formula for the same plane using the vectors given above.