We discuss how to find implicit and explicit formulas for planes.
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:
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 .xxxxxxxxxx
vector=arrow3d((3,-5,-1),(-2,0,4),5,color='blue');
F(x,y,z) = 1*(x+2)+1*(y+2)+1*(z+2)
plane=implicit_plot3d(F(x,y,z)==1,(x,-10,10),(y,-10,10),(z,-10,10),color='red');
plane+vector
Normal vectors not only allow us to define equations for planes but also they help us describe properties of planes.
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.
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!
xxxxxxxxxx
vector=arrow3d((1,2,3),(1,-2,-4),5,color='blue');
F(x,y,z) = 1*(x+2)+1*(y+2)+1*(z+2)
plane=implicit_plot3d(F(x,y,z)==1,(x,-10,10),(y,-10,10),(z,-10,10),color='red');
plane+vector