3. Matrix Methods for Systems

Existence And Uniqueness Of Solutions

Existence and Uniqueness of Solutions in Matrix Methods for Systems

In this lesson, students, you will learn how to tell whether a system of linear equations has one solution, no solution, or infinitely many solutions. This is one of the most important ideas in matrix methods because it tells you what kind of answer to expect before you even finish solving the system. 📘

Objectives:

  • Explain the main ideas and terminology behind existence and uniqueness of solutions.
  • Use matrix methods to decide whether a system has a solution, and whether that solution is unique.
  • Connect these ideas to augmented matrices, row reduction, and the broader study of systems of equations.
  • Summarize how these concepts fit into Linear Algebra.

A real-world example: imagine two roads crossing on a map. If they cross at exactly one point, there is one solution. If they are parallel and never meet, there is no solution. If they are the same road, every point on the road is a solution. Matrix methods help us detect which situation is happening. 🚗

What “Existence” and “Uniqueness” Mean

When we solve a system of linear equations, we are looking for values of the variables that make every equation true at the same time. In Linear Algebra, this is called a solution to the system.

The word existence asks, “Does at least one solution exist?” The word uniqueness asks, “If a solution exists, is it the only one?”

For a system of equations, there are three main possibilities:

  1. Exactly one solution — the system is consistent and has a unique solution.
  2. No solution — the system is inconsistent.
  3. Infinitely many solutions — the system is consistent, but not unique.

These ideas are central because matrix methods are not just about solving systems; they are about understanding the structure of the solutions. In many applications, such as balancing chemical equations, planning network flow, or finding intersection points, knowing whether the answer exists and whether it is unique is just as important as finding the answer itself.

Suppose a system is written in matrix form as $A\mathbf{x}=\mathbf{b}$, where $A$ is the coefficient matrix, $\mathbf{x}$ is the vector of variables, and $\mathbf{b}$ is the constant vector. Then the question becomes: does the vector $\mathbf{b}$ lie in the column space of $A$? If yes, then a solution exists. If the solution is the only one, then the columns of $A$ are arranged so that no free variables remain after row reduction.

Using Augmented Matrices and Row Reduction

The most common matrix method for studying existence and uniqueness is to form the augmented matrix $[A\,|\,\mathbf{b}]$ and row-reduce it. Row reduction is a systematic way to simplify the system without changing its solution set.

Each elementary row operation preserves equivalence:

  • swapping two rows,
  • multiplying a row by a nonzero number,
  • adding a multiple of one row to another.

As you row-reduce, look for two important signs:

  • A row of the form $[0\ 0\ 0\ |\ c]$ where $c\neq 0$ means the system has no solution. This happens because it represents the impossible equation $0=c$.
  • The absence or presence of free variables helps determine uniqueness.

If every variable corresponds to a pivot column, then there is exactly one solution. If at least one variable is free and the system is consistent, then there are infinitely many solutions.

Consider this system:

$$

$\begin{aligned}$

$ x+y&=4\\$

$ 2x+2y&=8$

$\end{aligned}$

$$

The second equation is just $2$ times the first, so these equations describe the same line. The augmented matrix is

$$

$\left[\begin{array}{cc|c}$

1 & 1 & 4\\

2 & 2 & 8

$\end{array}\right]$

$$

Row-reducing gives

$$

$\left[\begin{array}{cc|c}$

1 & 1 & 4\\

0 & 0 & 0

$\end{array}\right]$

$$

There is one pivot and one free variable, so the system has infinitely many solutions. Geometrically, the two equations represent the same line. 🟦

Now compare with

$$

$\begin{aligned}$

$ x+y&=4\\$

$ x+y&=5$

$\end{aligned}$

$$

The augmented matrix is

$$

$\left[\begin{array}{cc|c}$

1 & 1 & 4\\

1 & 1 & 5

$\end{array}\right]$

$$

After row reduction, we get a row like

$$

$\left[\begin{array}{cc|c}$

1 & 1 & 4\\

0 & 0 & 1

$\end{array}\right]$

$$

This means $0=1$, which is impossible. So the system has no solution. Geometrically, these are parallel lines that never meet.

Unique Solutions and Pivot Positions

A system has a unique solution when every variable is a leading variable, meaning each variable corresponds to a pivot column in the row-reduced matrix. This is one of the cleanest tests for uniqueness.

For a square matrix $A$ of size $n\times n$, a unique solution to $A\mathbf{x}=\mathbf{b}$ occurs when $A$ is invertible. In that case, the solution is

$$

$\mathbf{x}=A^{-1}\mathbf{b}$

$$

The inverse exists exactly when the matrix has a pivot in every row and every column after row reduction. Another way to say this is that $\det(A)\neq 0$, though determinants are usually introduced separately from row reduction.

Example:

$$

$\begin{aligned}$

$ x+2y&=5\\$

$ 3x+4y&=11$

$\end{aligned}$

$$

The augmented matrix is

$$

$\left[\begin{array}{cc|c}$

1 & 2 & 5\\

3 & 4 & 11

$\end{array}\right]$

$$

Subtract $3$ times the first row from the second row:

$$

$\left[\begin{array}{cc|c}$

1 & 2 & 5\\

0 & -2 & -4

$\end{array}\right]$

$$

Then divide the second row by $-2$:

$$

$\left[\begin{array}{cc|c}$

1 & 2 & 5\\

0 & 1 & 2

$\end{array}\right]$

$$

Now eliminate the $2$ above the pivot:

$$

$\left[\begin{array}{cc|c}$

1 & 0 & 1\\

0 & 1 & 2

$\end{array}\right]$

$$

So the unique solution is $x=1$ and $y=2$. ✅

Consistency, Free Variables, and Infinite Solutions

A system is consistent if it has at least one solution. A consistent system may still have many solutions if there are free variables.

Free variables appear when there are fewer pivot columns than variables. They can take any value, and the other variables depend on them. This is why infinitely many solutions often come in a parametric form.

Example:

$$

$\begin{aligned}$

$ x+y+z&=3\\$

$ 2x+2y+2z&=6$

$\end{aligned}$

$$

The second equation is redundant, so after row reduction there will be one equation and two free variables. Let $y=s$ and $z=t$. Then

$$

$ x=3-s-t$

$$

So the solutions are

$$

$(x,y,z)=(3-s-t,s,t)$

$$

for any real numbers $s$ and $t$. This is an infinite family of solutions.

This kind of answer is very useful in applications. In a design problem, for example, multiple combinations of ingredients may satisfy the same constraints. In a geometry problem, infinitely many solutions might mean that three planes intersect in a line rather than a single point.

The Big Picture: Matrix Methods and the Structure of a System

Matrix methods do more than solve a specific system. They reveal the structure of the equations.

Here is the big picture:

  • If row reduction gives a contradiction, the system has no solution.
  • If there is no contradiction and every variable has a pivot, the system has one solution.
  • If there is no contradiction but some variables are free, the system has infinitely many solutions.

These outcomes depend on the coefficient matrix $A$ and the augmented matrix $[A\,|\,\mathbf{b}]$.

A useful relationship is this: if the system $A\mathbf{x}=\mathbf{b}$ is consistent, then $\mathbf{b}$ is in the column space of $A$. If the columns of $A$ are linearly independent and $A$ is square, then a solution, if it exists, must be unique. In that case, the matrix is invertible.

This connects existence and uniqueness to other major ideas in Linear Algebra such as:

  • linear independence,
  • span,
  • column space,
  • invertibility,
  • rank.

So when you study existence and uniqueness, you are also learning how matrices organize information and control the behavior of systems. That is why this topic appears throughout the course. 📐

Conclusion

students, the main lesson is that solving a system is not only about finding numbers; it is also about understanding how many answers the system has. Matrix methods give a reliable way to test for existence and uniqueness using augmented matrices and row reduction.

A system may have exactly one solution, no solution, or infinitely many solutions. The difference depends on pivots, free variables, and contradictions in the reduced matrix. These ideas are essential in Linear Algebra because they connect algebraic procedures with geometric meaning and real-world applications.

Study Notes

  • A system is consistent if it has at least one solution.
  • A system is inconsistent if it has no solution.
  • A system has a unique solution when every variable is a pivot variable and there are no free variables.
  • A system has infinitely many solutions when it is consistent but has at least one free variable.
  • A row like $[0\ 0\ \dots\ 0\ |\ c]$ with $c\neq 0$ means no solution.
  • The augmented matrix is written as $[A\,|\,\mathbf{b}]$.
  • Row operations preserve the solution set.
  • For square matrices, a unique solution to $A\mathbf{x}=\mathbf{b}$ occurs when $A$ is invertible.
  • Existence asks whether a solution is there; uniqueness asks whether it is the only one.
  • These ideas connect to span, linear independence, column space, and rank.

Practice Quiz

5 questions to test your understanding