When a system of linear equations is written down, the real object of interest is not the list of equations itself. It is the set of all tuples of numbers that make every equation true at the same time.
That solution set can be a single point, no point at all, or an infinite family of points. The course notes begin with this language because every later method, from substitution to elimination to matrices, row reduction, and null spaces, is really a way of describing the same set more efficiently.
What a solution set records
Definition
Solution set
A solution set is the collection of every number or vector that satisfies the whole system.
If the system has unknowns , then a solution is an
ordered n-tuple such that every equation becomes a
true statement after we substitute for each i.
That order matters. The tuple (2, 3) is not the same solution as (3, 2).
Likewise, a tuple is not a set. We do not write {2, 3} when the intended
solution is the ordered pair (2, 3).
The system itself can be read as an intersection of conditions:
- the first equation cuts out the tuples that satisfy it;
- the second equation cuts out the tuples that satisfy it;
- the solution set is the intersection of all those individual solution sets.
This is why even one failed equation disqualifies a tuple.
Consistent or inconsistent
Definition
Consistent and inconsistent systems
A linear system is consistent if it has at least one solution.
Otherwise, it is inconsistent.
This is a very small definition, but it carries a lot of meaning.
- A consistent system may have exactly one solution.
- A consistent system may have infinitely many solutions.
- An inconsistent system has no solutions, so its solution set is empty.
Later row-reduction arguments prove that these are the only possibilities.
Theorem
A linear system has only three possible kinds of solution set
For a linear system, the solution set is either:
- a singleton, so the system has a unique solution;
- the empty set, so the system is inconsistent;
- an infinite set, so the system has infinitely many solutions.
The theorem is not a guess. Later sections justify it by elimination and row-reduction, but the point is already visible here: once a free variable appears, there are infinitely many choices; once a contradiction appears, there are none.
A system with one solution
Worked example
A tiny system with one solution
Solve
The second equation says . Substitute that into the first equation:
So , hence , and therefore .
The solution set is
This is the simplest possible example of a consistent system: there is exactly one ordered pair that works.
A system with no solution
Worked example
A contradiction gives an empty solution set
Consider
If a pair (x, y) satisfied both equations, then the same left-hand side would
have to equal two different numbers. Subtracting the first equation from the
second gives
which is impossible.
So the system is inconsistent, and its solution set is empty:
The important subtlety is that an inconsistent system is not a system with "many" solutions. It has none.
Common mistake
Inconsistent does not mean more than one solution
Students sometimes read "inconsistent" as "too complicated" or "overdetermined." That is not the definition. Inconsistent means that there is no tuple of values that satisfies all equations simultaneously.
A system with infinitely many solutions
Worked example
The same line can be written in more than one way
Consider
The second equation is just 2 times the first, so it adds no new condition.
Every pair on the line satisfies both equations.
If we let , then , where . So the solution set is
There are infinitely many solutions because every real value of t gives a
different ordered pair.
The same phenomenon appears in larger systems. The notation gets longer, but the logic is the same: each free variable introduces one independent choice.
Worked example
A four-variable system written as a full solution set
Solve
Start from the last equation:
Substitute this into the second equation:
so
Now substitute both expressions into the first equation:
Simplifying gives
Let . Then every solution has the form
so the solution set is
This is the kind of answer the course wants: a complete description of all solutions, not just one sample solution.
Why equivalent systems matter
Two systems are equivalent if they have the same solution set.
Definition
Equivalent systems
Two linear systems are equivalent if and only if they have exactly the same solution set.
This definition is stronger than "they look similar" and stronger than "they have the same number of equations." Equivalence is about solutions only.
Common mistake
Same number of equations does not mean equivalent
Two systems can have the same number of equations but different solution sets. They can also have different numbers of equations and still be equivalent.
There are three elementary equation operations:
- swap two equations;
- multiply one equation by a nonzero scalar;
- add a multiple of one equation to another equation.
These are the equation-level version of the row operations used later on augmented matrices.
Theorem
Elementary equation operations preserve the solution set
If one system is obtained from another by a finite sequence of the three elementary equation operations, then the two systems are equivalent.
Proof
Why the three elementary equation operations are safe
This is the formal reason elimination is allowed. We are not changing the problem; we are rewriting it in a more readable form.
Two variables: geometry gives a quick picture
When there are two unknowns, each equation can be drawn as a line in the plane. Then the solution set is the intersection of those lines.
- If the lines meet at one point, the system has a unique solution.
- If the lines are parallel and distinct, the system is inconsistent.
- If the lines coincide, the system has infinitely many solutions.
This geometric picture is useful because it makes the three possibilities feel inevitable instead of arbitrary.
Why the course starts with solution sets
The later matrix language does not replace this section. It formalizes it.
Once we introduce coefficient matrices and augmented matrices, the same system can be encoded more compactly. Once we introduce row operations, we can transform one equation system into an equivalent one. Once we reach row-echelon or reduced row-echelon form, the solution set becomes easier to read.
So if the solution set is the object, then every later technique is just a different lens.
Try the interactive preview below once you are comfortable reading a small system as a list of conditions.
Read and try
Translate one system into a matrix
The live explorer highlights how each equation becomes one matrix row plus one constant entry.
System
- x + 2y = 5
- 3x - y = 4
Result
| 1 | 2 | 5 |
| 3 | -1 | 4 |
Common mistakes and subtle points
Common mistake
A solution is an ordered tuple, not a bag of numbers
(2, 3) solves a system in two variables, but {2, 3} does not mean the same
thing. Order matters because the first number belongs to and the second
belongs to .
Common mistake
A contradiction row means no solution
If elimination produces a row like , the system is inconsistent. Do not continue trying to solve it as if it were a valid equation.
Common mistake
A free variable is part of the answer
When a solution set is written with parameters, the parameter is not a missing answer. It is the correct way to describe the whole family of solutions.
Quick checks
Quick check
Which ordered pair solves both equations and ?
Test the pair against both equations.
Solution
Answer
Quick check
Is the system , consistent?
Use the definition of consistency, not the number of equations.
Solution
Answer
Quick check
If two systems have the same solution set, what do we call them?
This is the course definition.
Solution
Answer
Quick check
Why does swapping two equations not change the solution set?
Think about what the word "solution" means.
Solution
Guided solution
Exercises
Quick check
Write the solution set of , , in parametric form.
Use one free parameter.
Solution
Guided solution
Quick check
Find c so that the system , , has no solution.
You may eliminate x first.
Solution
Guided solution
Read this first
This note is the starting point for the matrix treatment of systems. The next useful pages are: