๐ข Pivots
A pivot is the leading non-zero entry in a row after applying Gaussian elimination. It marks a position where a variable is constrained or a row is linearly independent.
- Each pivot corresponds to a linearly independent row or column
- Pivot positions determine the rank of a matrix
๐ Structural Limits
Let $A \in \mathbb{R}^{m \times n}$. Then:
- Max number of pivots = $\min(m, n)$
- You canโt have more than one pivot per row or column
- If $m > n$, at least $m - n$ rows will be pivotless (i.e. dependent)
๐งฎ Pivot โ Rank โ Independence
| Structure | Pivot Present | Interpretation |
|---|---|---|
| Column | โ Yes | Linearly independent |
| Column | โ No | Linearly dependent |
| Row | โ Yes | Adds a new constraint |
| Row | โ No | Redundant (dependent) |
๐ Example: Row Reduction
Let:
$$ A = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix} $$- Pivot positions: (1,1), (2,2)
- Rank = 2
- Rows 3 and 4 are dependent (no new constraints)
๐ Deriving the RouchรฉโCapelli Theorem from Pivot Logic
Let $Ax = b$ be a system of $m$ equations in $n$ unknowns.
Form the augmented matrix $[A \mid b]$.
Step-by-step:
- Row reduce both $A$ and $[A \mid b]$
- Count pivot rows in each
- Compare:
Why?
- Each pivot row in $A$ corresponds to an independent constraint
- If $b$ introduces a new pivot in $[A \mid b]$, it means $b$ is not in the column space of $A$
- That makes the system inconsistent
โ
If ranks match โ $b$ lies in the column space โ solution exists
โ If ranks differ โ $b$ is outside the column space โ no solution
๐งญ Geometric Interpretation
Pivot rows define the dimension of the row space
Pivot columns define the dimension of the column space
Imagine each pivot as a new direction in space. Non-pivot rows/columns lie within the span of earlier onesโthey donโt expand the space.
๐ก Callouts
Pivotless Rows Any row without a pivot is a linear combination of earlier pivot rows. It contributes no new constraint.