Linear Algebra: IX Four Fundamental Subspaces

Four Fundamental Subspaces


Consider a linear transformation $T: \mathbb{R}^n \rightarrow \mathbb{R}^m$ defined by $T(\vec{x}) = A\vec{x}$ where $A$ is an $m$ by $n$ matrix.


Row Echelon Form (REF)

An $m$ by $n$ matrix $A$ is in row echelon form (REF) if:


  • Each row has a non-zero leading entry called its pivot.

  • The next pivot is to the right of the previous pivot above it.

  • Every entry below each pivot is zero.

  • All zero rows are at the bottom.

Reduced Row Echelon Form (RREF)

An $m$ by $n$ matrix $A$ is in reduced row echelon form (RREF) if also:


  • Each pivot is normalized to one.

  • Every entry above each pivot is zero.

Every $m$ by $n$ matrix $A$ has a unique RREF.


Column Space

The column space of an $m$ by $n$ matrix $A$, denoted $\mathrm{Col}(A)$, is the set of all linear combinations of the columns $\vec{c}_1 \cdots \vec{c}_n \in \mathbb{R}^m$ of $A$. It describes the set of all output vectors in $\mathbb{R}^m$ of the linear transformation $T$:

$$ \mathrm{Col}(A) = \mathrm{span}\{\vec{c}_1, \dots, \vec{c}_n\} = \{ T(\vec{x}) \in \mathbb{R}^m \mid \vec{x} \in \mathbb{R}^n \} \subseteq \mathbb{R}^m $$

Row Space

The row space of an $m$ by $n$ matrix $A$, denoted $\mathrm{Row}(A)$, is the set of all linear combinations of the rows $\vec{r}_1^\top \cdots \vec{r}_m^\top \in \mathbb{R}^n$ of $A$. It is thus the column space of the transpose of $A$. It describes the set of all vectors in $\mathbb{R}^n$ whose directions determine the output vectors of the linear transformation $T$:

$$ \mathrm{Row}(A) = \mathrm{span}\{\vec{r}_1^\top, \dots, \vec{r}_m^\top\} = \mathrm{Col}(A^\top) = \{ A^\top \vec{y} \in \mathbb{R}^n \mid \vec{y} \in \mathbb{R}^m \} \subseteq \mathbb{R}^n $$

Comments

Popular posts from this blog

Linear Algebra: III Square and Inverse Matrices

Linear Algebra: VII Orthonormal Matrices

Linear Algebra: VI Triangular Matrices and LU Decomposition