Visual walkthrough — Equation of a line in 3D — vector, symmetric, parametric forms
Step 1 — A line is "one spot" plus "one direction"
WHAT. Imagine an empty room. We drop a single dot and call it (the "anchor"). Then we draw one arrow starting at pointing off into the room — call that arrow , the direction.
WHY. A dot alone is just a spot; it does not tell you which way to travel. An arrow alone floats — it says "which way" but not "starting where." A line needs both: a place to stand and a way to face. That is the whole seed of every formula on this page.
PICTURE. Look at the black dot and the single red arrow . The faint dashed line is what we are about to trace out — but right now we only have the two raw ingredients.

Step 2 — Walking generates every point on the line
WHAT. Stand at and take steps along . One copy of forward lands you somewhere new. Two copies land you further. Half a copy lands you halfway. A negative number of copies walks you backwards. Sweeping through all such multiples paints the entire line.
WHY. We want a single knob that produces every point and only points on the line. Scalar multiplication of is exactly that knob — this is the scalar-multiplication engine: multiplying by a number stretches or flips it but never tilts it, so you can never leave the line.
PICTURE. The red arrows show (that's ), , and , all laid nose-to-tail from . Notice they land on the dashed line and nowhere else.

Step 3 — Name the general point and its displacement from
WHAT. Pick any point on the line and call it . The arrow from to is written — it is the "how far and which way you walked" from the anchor to reach .
WHY. We are hunting for an equation that says " is on the line." The honest meaning of "on the line" is: the walk from to points the same way as (forwards or backwards). So the whole game reduces to describing .
PICTURE. The red arrow runs from the black anchor to a general point further along. It lies flat on the line — it must, because is on the line.

Step 4 — "On the line" means is a multiple of
WHAT. Because runs along the same line as , the two arrows are parallel. And parallel arrows are always scalar multiples of one another. So:
WHY. This is the single load-bearing idea of the whole topic. Two arrows are parallel exactly when one is a stretched/flipped copy of the other — that is what parallel means. The particular stretch factor is our step-count . Different points just use different ; the direction never changes.
PICTURE. Two points and on the line: (a short forward multiple) and (a longer one). Same red , different multiples.

Step 5 — Trade for position vectors → the master equation
WHAT. We don't usually know directly; we know positions from the origin . So rewrite as a difference of position vectors. The rule for "arrow from one point to another" is head minus tail:
WHY. Everything on a coordinate grid is measured from the origin. Converting into lets the equation talk in coordinates we can actually plug numbers into. Substituting into Step 4:
PICTURE. The triangle ––: black arrow from to , red arrow from to , and the side closing the triangle. Watch literally as "go to , then walk along the line."

Step 6 — Split into coordinates → parametric form
WHAT. A vector equation is really three ordinary equations stacked, one per axis. Write , , , and read off each row:
WHY. Computers, and we, work one coordinate at a time. The single vector knob still controls all three rows simultaneously — that shared is what glues the coordinates into one line instead of three unrelated motions.
PICTURE. The line pierces the 3D box; the three red guides drop onto the -, -, -axes, each axis-value governed by the same . The numbers are the direction ratios.

Step 7 — Erase the scaffolding → symmetric form
WHAT. was only scaffolding. Solve each parametric row for it (this needs ): All three equal the same , so they equal each other:
WHY. A clean line equation shouldn't need an extra letter hanging around. Eliminating it leaves a relation purely between — the Cartesian / symmetric form. Numerators reveal the point, denominators the direction.
PICTURE. Same line, but has vanished: each chain link is one "clock" and all clocks read identically along the line.

Step 8 — The degenerate case: a zero direction ratio
WHAT. What if the line never moves in one coordinate, say ? Then for every , so is frozen at . You cannot write — division by zero is meaningless. Instead:
WHY. Step 7 divided by . That move is illegal the instant a divisor is . Geometrically a zero DR means the line runs inside a flat plane parallel to an axis — the frozen coordinate labels which plane.
PICTURE. The line lives entirely in the plane (shaded). It slides in and but its height never changes. The red line stays pinned at one height.

The one-picture summary
Everything above collapses into a single image: stand at , and let the red step-vector carry you — the master equation drives the parametric rows, which drop the scaffold to become the symmetric form. Three costumes, one motion.

Recall Feynman retelling — the whole walkthrough in plain words (click)
Drop a dot in an empty room () and point your arm one way (). Walking any number of steps along your arm — even backwards — traces every point of the line and nothing else, because scaling an arrow can stretch or flip it but never tilt it. Call the point you land on ; the trip must point the same way as your arm, so it's just "some number () of arm-steps": . But we measure everything from the corner of the room (the origin), so swap for "position of minus position of ," i.e. . Rearranged, that's — the master equation. Split it into , , rows and you get the parametric form, all three sharing the one dial . Solve each row for and set them equal, and disappears, leaving the symmetric form where the tops say where you are and the bottoms say where you go. And if the line never budges in one coordinate, that coordinate's bottom would be — illegal — so you just freeze it: . That's the entire subtopic, start to finish.
Connections
- Vectors — scalar multiplication & parallel vectors — the engine of Steps 2 & 4.
- Direction ratios and direction cosines — the numbers read off in Steps 6–7.
- Angle between two lines in 3D — next, once you can extract .
- Distance of a point from a line in 3D — uses this parametric setup directly.
- Shortest distance between two skew lines
- Coplanarity of two lines
- Equation of a plane in 3D