Systems of Linear Equations

Summary

A linear system asks for all vectors x satisfying Ax=b . The solution set is empty, a single point, or an affine subspace. Matrix form and geometry of intersecting hyperplanes organize the theory.

Prerequisites

High-school systems of equations; Vectors and Dot Product helpful. Hub: Linear Algebra.

Definition / Statement

A linear equation in unknowns x1,,xn has the form

a1x1++anxn=b.

A system of m linear equations is

a11x1++a1nxn=b1,am1x1++amnxn=bm.

In matrix form, with A=(aij)Rm×n , xRn , bRm ,

Ax=b.

Objects and Dimensions

Object Meaning Dimensions
A coefficient matrix m×n
x unknown vector n×1
b right-hand side m×1
[Ab] augmented matrix m×(n+1)

Notation

Symbol Meaning
Ax=b matrix form of the system
consistent at least one solution
inconsistent no solution
free variable variable not forced by a pivot

Conditions / Assumptions

Matrix / Vector Form

Equivalent views of Ax=b :

  1. Row view: each equation is a hyperplane (dot product of a row of A with x equals bi ).
  2. Column view: b is a linear combination of the columns of A with coefficients xj .

Geometric Interpretation

If b=0 (homogeneous system), x=0 is always a solution; extra solutions form a subspace (the null space of A ).

Procedure

  1. Form the augmented matrix [Ab] .
  2. Row-reduce (see Matrices and Row Reduction) to row echelon or reduced row echelon form.
  3. Read pivot variables and free variables; parametrize the solution set.
  4. Declare inconsistency if a row [0  0c] with c0 appears.

Worked Example

{x+y=3,2x+2y=6.

The second equation is twice the first, so the system is consistent with infinitely many solutions: y=3x , free variable x=t , so x=t,3t .

If the second right-hand side were 7 , the system would be inconsistent.

Common Mistakes

Connections

References

Linear systems and solution geometry follow MIT 18.06 and standard introductory linear algebra.[1]


  1. MIT OpenCourseWare, 18.06 Linear Algebra, https://ocw.mit.edu/courses/18-06-linear-algebra-spring-2010/ ↩︎