Skip to content
๐Ÿ“ Rank

๐Ÿ“ Rank

Rank tells us how much independent information a matrix contains.

  • In systems of equations: rank tells us how many equations are truly useful (not duplicates).
  • In geometry: rank tells us how many directions the matrix spans.
  • In data: rank tells us how much redundancy exists.

If a matrix has full rank, it means: Every row or column contributes something new. No duplicates. No wasted space.


๐Ÿ” What Is Rank?

The rank of a matrix is:

The number of linearly independent rows or columns.

This is always equal to the number of pivot positions after row reduction.

$$ \text{rank}(A) = \text{number of pivot rows} $$

๐Ÿงฎ How Do You Find Rank?

Step-by-step:

  1. Start with matrix $A$
  2. Apply Gaussian elimination to reduce it to row echelon form
  3. Count the number of pivot rows (rows with leading non-zero entries)

That count is the rank.

Example:

$$ A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 1 & 1 & 1 \end{bmatrix} \quad \Rightarrow \quad \text{rank}(A) = 2 $$

(Row 2 is a multiple of Row 1 โ†’ not independent)


๐Ÿ“ Role of Rank in Linear Algebra

ContextWhat Rank Tells You
Solving $Ax = b$Whether a solution exists (via Rouchรฉโ€“Capelli)
GeometryHow many dimensions the matrix spans
Data compressionHow much redundancy is present
Matrix invertibilityWhether a square matrix is invertible (full rank)
Column spaceDimension of the space spanned by columns
Row spaceDimension of the space spanned by rows

๐Ÿ”ญ Geometric Interpretation

  • Rank 1 โ†’ all columns lie on a line
  • Rank 2 โ†’ columns span a plane
  • Rank 3 โ†’ columns span full 3D space

Each pivot adds a new direction.
No pivot โ†’ no new direction โ†’ redundancy.


๐Ÿ’ก Callouts

Rank = Number of Pivots After row reduction, each pivot row counts toward the rank.

โ„น๏ธ
Rank Is the Bridge Rank connects equations, geometry, and solvability.
โ„น๏ธ
Rouchรฉโ€“Capelli Theorem A system $Ax = b$ has a solution iff $\text{rank}(A) = \text{rank}([A \mid b])$
Last updated on