In short
In two variables, one linear equation is a line. Two lines cross at a point — that point is the unique solution. Step up to three variables: one linear equation ax + by + cz = d is now a plane in 3D space. Three independent planes typically meet at a single point — and that point (x, y, z) is the unique solution to the system. The whole geometric trichotomy you learned in 2D survives the jump: planes can intersect at a point (one solution), at a line (a one-parameter family of solutions), at a plane (every point on the common plane works), or not at all (parallel-shifted, no solution). The picture tells you which case before you finish solving.
You already know how a pair of lines behaves in the plane. Now imagine zooming out to the room you are sitting in. The floor is a plane. The wall behind you is a plane. The wall to your side is a plane. Where do all three meet? Exactly one corner — a single point. That corner is the geometric meaning of the unique solution to a 3 \times 3 linear system.
This satellite extends the parent article on systems of linear equations into 3D, which is the natural setting for CBSE Class 11 (matrices and determinants) and the linear-algebra questions you will see in JEE Mains.
Each equation is a plane
A linear equation in three variables looks like
with a, b, c not all zero. Geometrically, this is a flat infinite sheet — a plane — sitting somewhere in 3D space. The vector (a, b, c) is perpendicular to the plane (its normal), and d controls how far the plane is from the origin.
A few quick examples to anchor the picture:
- z = 0 is the floor of the room — the xy-plane.
- x = 0 is the wall on your left — the yz-plane.
- y = 0 is the wall behind you — the xz-plane.
- x + y + z = 1 is a tilted sheet that slices through (1,0,0), (0,1,0) and (0,0,1).
A single plane has two degrees of freedom: pick any x and y, and the equation tells you the unique z on the sheet. So one equation in three unknowns has a 2D family of solutions — far too many.
Three planes intersecting at a point
Now stack three plane-equations together:
A point (x, y, z) solves the system only if it lies on all three sheets simultaneously. Why a point? Each plane removes one degree of freedom from 3D space: 3 unknowns − 3 independent equations = 0 degrees of freedom = a single point.
To actually find P, the workhorse method is elimination: combine equations to kill one variable, then solve the resulting 2 \times 2 system, then back-substitute.
A solvable 3×3 system
Solve
Step 1 — kill two variables at once by exploiting symmetry. Subtract Eq. 2 from Eq. 1:
Step 2 — repeat for z. Subtract Eq. 3 from Eq. 1:
Step 3 — back-substitute into any equation. Use Eq. 1: x + 3 + 4 = 6 \implies x = -1.
Verify all three: -1 + 3 + 4 = 6 ✓; -1 - 3 + 4 = 0 ✓; -1 + 3 - 4 = -2 ✓.
So the three planes meet at (x, y, z) = (-1, 3, 4). That single point is the geometric intersection.
The lesson: elimination is mechanical, but it pays to verify every solution by plugging back into all three originals. One wrong sign and the whole answer collapses.
Degenerate cases — when the picture changes
The trichotomy from 2D becomes a small zoo in 3D. Here are the cases you actually meet:
Case A — Three planes meet at one point. The generic case above. One unique solution.
Case B — Three planes meet along a common line. Two planes intersect in a line (every pair of non-parallel planes does), and the third plane contains that line. Every point on the line satisfies all three equations. You get a one-parameter family of solutions, usually written as (x, y, z) = (x_0, y_0, z_0) + t\,(\ell, m, n).
Case C — Two planes coincide; the third cuts them. The two coincident planes are really one equation in disguise, so you have 2 effective equations in 3 unknowns. Solutions form a line.
Case D — All three planes coincide. Only one effective equation. Solutions form an entire plane — a 2-parameter family.
Case E — Two parallel planes (different d) plus any third plane. No common point exists, because the two parallel planes never meet. No solution.
Case F — Three parallel planes, all distinct. Same disease: never meet. No solution.
Case G — Three planes pairwise meet in three parallel lines (a triangular prism). Each pair intersects, but no point lies on all three. No solution. This is the sneakiest "no solution" case — easy to miss because every pair looks fine.
Two parallel planes — no solution
Consider
The first two equations have the same left side x + y + z but different right sides (3 and 5). Subtracting gives 0 = 2, which is a contradiction. The first two planes are parallel and shifted apart, like two floors of a building — they never share a point, no matter what the third equation says. The system has no solution.
Three identical planes — infinite solutions
Consider
Equation 2 is just 2 \times Eq. 1, and Eq. 3 is 3 \times Eq. 1. All three are the same plane. Every point on x + y + z = 6 — for example (6, 0, 0), (0, 6, 0), (2, 2, 2), (1, 4, 1) — is a solution. Why infinite? You have 3 unknowns and only 1 independent equation, leaving 3 - 1 = 2 free parameters. The solution set is a 2D plane.
You can detect these cases without solving by hand by computing the determinant of the coefficient matrix A. If \det(A) \ne 0, you are in Case A — one unique solution. If \det(A) = 0, you are in one of the degenerate cases, and you have to look at the augmented matrix's rank to tell which. That is the matrix-rank story you will meet in CBSE Class 12 and lean on heavily for JEE Mains and JEE Advanced.
How this links back to 2D
| 2D (two lines) | 3D (three planes) |
|---|---|
| Cross at one point — unique solution | Meet at one point — unique solution |
| Coincide — infinitely many solutions | Coincide / share a line — infinitely many solutions |
| Parallel, distinct — no solution | Parallel pair, or prism configuration — no solution |
The same algebraic conditions (consistent vs inconsistent, dependent vs independent) drive both pictures. Once you have seen the 3D version, you understand that "system of linear equations" really means "intersection of flat objects of one dimension lower than the ambient space" — and the same idea keeps generalising into 4D, 5D, and the high-dimensional spaces that show up in machine learning and physics.
References
- NCERT, Mathematics Textbook for Class 12, Part 1, Chapter 4: Determinants. ncert.nic.in
- Strang, G. Introduction to Linear Algebra, 5th ed., MIT Press — Chapter 1 on the row and column pictures of Ax = b. math.mit.edu/~gs/linearalgebra
- Wikipedia, System of linear equations. en.wikipedia.org/wiki/System_of_linear_equations
- Wikipedia, Plane (geometry). en.wikipedia.org/wiki/Plane_(geometry)
- Khan Academy, Solving systems of equations with three variables. khanacademy.org
- Paul's Online Math Notes, Linear Systems with Three Variables. tutorial.math.lamar.edu