Systems of linear equations can be expressed as vector equations or as matrix equations. This different perspective allow us to prove that a system of linear equations cannot have exactly two solution.
Vector Equation and Matrix Equation
Consider a system of linear equations represented as an augmented matrix[Ab]. Suppose that the columns of A are a1,a2,…,an. Then, we can also represent it as
A vector equation:
x1a1+x2a2+⋯+xnan=b
A matrix equation:
Ax=b
Consider the system of linear equations:
{2x−y+3z=8x+2y−z=1
We can rewrite this system as an equivalent vector equation:
x[21]+y[−12]+z[3−1]=[81]
Indeed, equality of vectors means equality in each coordinate. The equality of the first coordinates recovers the first linear equation, and the equality of the second coordinates recovers the second linear equation. Hence, this vector equation is equivalent to the original system.
A linear combination of vectors can be expressed as a matrix–vector product. Therefore, we can further rewrite the vector equation as the following matrix equation:
[21−123−1]xyz=[81]
The following forms represent the same system of equations.
1. System of linear equations:⎩⎨⎧x+2y−z=43x+y+2z=12x−y+z=0
Why System of Linear Equations Cannot Have Exactly 2 Solutions
Using the matrix equation representation and the linearity of the matrix–vector product, we can establish a fundamental fact about linear systems:
Theorem:
If a system of linear equations has two distinct solutions, then it has infinitely many solutions.
Consequently, a system of linear equations can have zero, one, or infinitely many solutions, but it cannot have exactly two, three, or any other finite number greater than one.
Proof
We write the system of linear equations as a matrix equation Ax=b. Suppose x1 and x2 are two distinct solutions to Ax=b. We'll show that infinitely many solutions exist.
Step 1: Since both x1 and x2 are solutions:
Ax1=bandAx2=b
Step 2: For any scalar t, consider:
x(t)=(1−t)x1+tx2
Step 3: Show that x(t) is also a solution using linearity:
Ax(t)=A((1−t)x1+tx2)=A((1−t)x1)+A(tx2)=(1−t)Ax1+tAx2=(1−t)b+tb=b(linearity)(linearity)(both x1,x2 are solutions)
Step 4: Since t can be any real number, there are infinitely many solutions x(t).
The parametric form x(t)=(1−t)x1+tx2 is exactly the line through x1 and x2:
Rewrite as: x(t)=x1+t(x2−x1)
This is a line through x1 in direction (x2−x1)
Key insight: The solution set to a system of linear equation is either:
Empty (no solutions)
A single point (one solution)
A line, plane, or hyperplane (infinitely many solutions)
It's never a finite set with more than one element. If it contains two distinct points, it also contains the line passing through those two points.