Cartesian Form - Definition, Formula, and Examples

Cartesian Form - Definition, Formula, and Examples

TL;DR

Cartesian form writes a point, line, or plane using the coordinates x, y, and z directly, with no parameter or direction vector attached. This article defines Cartesian form, gives the point, line, and plane formulas, contrasts it with vector and polar form, and walks through six worked examples plus the mistakes students make most.

A Coordinate System Built From A Fly On A Ceiling

The story goes that René Descartes, lying in bed and watching a fly cross his ceiling, realised he could pin the insect's position with just two numbers: how far along one wall, how far along the other. That single idea, turning a location into a pair of numbers, is the whole of Cartesian form, and it is why the coordinate plane still carries his name.

What Is Cartesian Form?

Cartesian form is a way of describing a point, a line, or a plane using the coordinate variables x, y, and z in an implicit or explicit algebraic relation, without a parameter. A point is written as an ordered pair (x,y) in two dimensions or an ordered triple (x,y,z) in three dimensions. A line or a plane is written as an equation those coordinates must satisfy.

If you deleted everything else on this page, that sentence would still answer the search. Cartesian form is the "coordinates and equations" way of doing geometry, as opposed to the "arrows and parameters" way (vector form) or the "distance and angle" way (polar form).

A quick note on terms before we go further. A coordinate is a single number giving a distance along one axis. An axis is one of the reference lines (the x-axis, y-axis, z-axis) that all meet at the origin, the point (0,0) or (0,0,0). If those words are new, the Cartesian plane article sets them up from scratch.

The Three Things Cartesian Form Describes

A point is the simplest case. In 2D it is (x,y); in 3D it is (x,y,z). Each number locates the point along one axis.

A line in 3D through a point (x1,y1,z1) with direction ratios a,b,c has the Cartesian form
\frac{x - x_1}{a} = \frac{y - y_1}{b} = \frac{z - z_1}{c}

A plane has the linear Cartesian equation
ax + by + cz = d
where a, b, c are the components of a vector perpendicular to the plane (its normal), and d is a constant.

Here is the variable glossary so no symbol is a mystery: x,y,z are the coordinates of a general point on the object; x1,y1,z1 are the coordinates of one known point; a,b,c are direction ratios (for a line) or normal components (for a plane); d is the constant that fixes the plane's distance from the origin.

How do you convert vector form to Cartesian form? You take the vector equation \vec{r} = \vec{a} + \lambda \vec{b}, write \vec{r} = x\hat{i} + y\hat{j} + z\hat{k}, match components, and eliminate the parameter \lambda. That elimination is exactly what turns arrows-with-a-parameter into a pure coordinate equation. The reverse trip is set out in the vector form article.

Cartesian Form Versus Vector and Polar Form

The single most useful thing to hold in your head: these are three descriptions of the same geometry, not three different geometries.

When is Cartesian form the right choice? When you want to test whether a specific point lies on a curve (just substitute and check), or when you are graphing on a standard grid. Vector form wins when a direction matters; polar and cylindrical coordinates win when the shape has rotational symmetry.

Feature Cartesian form Vector form Polar form
Point in 2D (x,y) \vec{r} = x\hat{i} + y\hat{j} (r,θ)
Uses a parameter No Yes (λ) No
Best for testing points, graphing motion, direction rotational symmetry
Circle of radius 3 x^2 + y^2 = 9 r = 3

Examples of Cartesian Form

Example 1

Write the point that sits 5 units along x, 2 units along y, and 3 units along z in Cartesian form.

The point is simply the ordered triple.
(5,2,3)

Example 2

A line passes through (1,2,3) and (4,6,8). A student writes its Cartesian form straight away as \frac{x}{4} = \frac{y}{6} = \frac{z}{8}. Is that right?

It is tempting to drop the second point's coordinates into the denominators, but that ignores the starting point entirely and produces a line through the origin, not through (1,2,3).

The correct method uses direction ratios (differences of coordinates) in the denominators and one known point in the numerators:

Direction ratios: 4−1=3, 6−2=4, 8−3=5.

\frac{x - 1}{3} = \frac{y - 2}{4} = \frac{z - 3}{5}

Example 3

Find the Cartesian equation of the plane through (2,3,4) whose normal has direction ratios 5,−3,2.

Start from ax + by + cz = d with (a,b,c)=(5,−3,2).

5x−3y+2z=d

Find d by substituting the known point:

d = 5(2) - 3(3) + 2(4) = 9

Final answer: 5x−3y+2z=9.

Example 4

Convert the vector equation \vec{r} = (2\hat{i} + \hat{j}) + \lambda(3\hat{i} + 4\hat{j}) to Cartesian form.

Write \vec{r} = x\hat{i} + y\hat{j} and match components:

x = 2 + 3λ
y = 1 + 4λ

Set them equal (eliminate the parameter):

\frac{x - 2}{3} = \frac{y - 1}{4}

Final answer: \frac{x - 2}{3} = \frac{y - 1}{4}, or rearranged, 4x−3y=5.

Example 5

Does the point (3,0) lie on the curve with Cartesian equation x^2 + y^2 = 9?

Cartesian form makes this a substitute-and-check problem.

3^2 + 0^2 = 9

The equation holds, so the point lies on the curve. Final answer: yes, (3,0) is on the circle.

Example 6

A plane has Cartesian equation 2x + y - z = 6. Write its normal vector and find where it crosses the x-axis.

The coefficients of x, y, z are the normal's components:

normal = 2\hat{i} + \hat{j} - \hat{k}

The x-intercept is where y=0 and z=0:

2x=6 ⟹ x=3

Final answer: normal =(2,1,−1); the plane crosses the x-axis at (3,0,0).

Where Cartesian Form Earns Its Keep: "Every Screen Pixel Has An Address"

The reason Cartesian form outlived a 17th-century philosopher is that it turned geometry into arithmetic. Before Descartes, a curve was a drawing; after him, a curve was an equation you could compute with. That shift is the quiet engine behind an enormous amount of modern technology.

The Mistakes Students Make Most Often

Mistake 1: Putting the second point in the denominators

Don't do this: put a point's coordinates (x2,y2,z2) straight into the denominators.
The correct way: the denominators are direction ratios, the differences x2−x1, y2−y1, z2−z1.

Mistake 2: Losing the constant when converting a plane

Don't do this: write ax + by + cz = 0 and forget to solve for d using the known point.
The correct way: d is only zero when the plane passes through the origin.

Mistake 3: Treating the three forms as unrelated

Don't do this: re-derive the geometry from the picture.
The correct way: match components and eliminate λ.

Conclusion