Skip to content

Graphs in Space

In this section we will introduce some basic graphs in space.

Lines

We have three basic methods to express a line in three space:

  • direction vectors
  • parametric equations
  • symmetric equations

We will introduce them one by one.

Direction Vectors

This is the most basic way to draw a line in space, with a point and its direction.

For example, a line through (x0,y0,z0), have the same direction as <a,b,c> has the equation:

(x,y,z)=(x0,y0,z0)+t(a,b,c)

Parametric Equations

This is actually the split of the vector equation.

For each independent directions, we have:

x=x0+at
y=y0+bt
z=z0+ct

Symmetric Equations

For equations like:

xx0a=yy0b=zz0c

We call it the symmetric equation of the line.

Planes

We mainly introduce two form of the quations of planes here, the standard form and the general form. Remember that the equation of planes is actually the linear combination of three variables.

Standard Form

We use a point (x0,y0,z0) and a direction vector that perpendicular to the plane <A,B,C> to fix a plane.

The standard equation of this plane is A(xx0)+B(yy0)+C(zz0)=0.

General Form

The general form of the plane:
Ax+By+Cz=D,A2+B2+C20 Can be translated to the standard form.

Spheres

Similar to the circle in plane, we expand the equation to:

(xh)2+(yk)2+(zl)2=r2

And that is the equation of spheres in three space.