Column Space (Col(A)) & Null Space (Null(A))
\( m \times n \) Linear System
- \( a_{11}x_1 + a_{12}x_2 + \cdots + a_{1n}x_n = b_1 \)
- \( a_{21}x_1 + a_{22}x_2 + \cdots + a_{2n}x_n = b_2 \)
- \( a_{m1}x_1 + a_{m2}x_2 + \cdots + a_{mn}x_n = b_m \)
unknowns: \( x_1, x_2, x_3, \ldots, x_n \)
Column Space (Col(A)) & Null Space (Null(A))
\( m \times n \) linear system, in Matrix form :
\[ \begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ & & a_{ij} & \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix} \begin{bmatrix} x_1 \\ x_2 \\ \vdots \\ x_n \end{bmatrix} = \begin{bmatrix} b_1 \\ b_2 \\ \vdots \\ b_m \end{bmatrix} \]\( A^{(m \times n)} \), \( \vec{x} \in \mathbb{R}^n \), \( \vec{b} \in \mathbb{R}^m \)
first row of \( AX \): \( a_{11}x_1 + a_{12}x_2 + \cdots + a_{1n}x_n \)
second row of \( AX \): \( a_{21}x_1 + a_{22}x_2 + \cdots + a_{2n}x_n \)
\(i\)-th row of \( AX \): \( a_{i1}x_1 + a_{i2}x_2 + \cdots + a_{in}x_n \)
\(m\)-th row of \( AX \): \( a_{m1}x_1 + a_{m2}x_2 + \cdots + a_{mn}x_n \)
Properties of the "Notation" \( A\vec{X} \)
matrix multiply by a vector
\[ A\vec{X} = \vec{b} \]\( A^{(m \times n)} \), \( \vec{X} \in \mathbb{R}^n \), \( \vec{b} \in \mathbb{R}^m \)
Linearity Property of Matrix Multiplication
- \( A(\vec{X} + \vec{Y}) = A\vec{X} + A\vec{Y} \)
- \( A(\alpha \vec{X}) = \alpha A\vec{X} \)
- \( (A + B)(\vec{X}) = A\vec{X} + B\vec{X} \)
- \( (\alpha A)(\vec{X}) = \alpha(A\vec{X}) \)
Properties of the "Notation" \( A\vec{X} \)
matrix multiplication by a vector
\[ A\vec{X} = \vec{b} \]\( A^{(m \times n)} \), \( \vec{X} \in \mathbb{R}^n \), \( \vec{b} \in \mathbb{R}^m \)
Linearity Property of Matrix Multiplication
- \( A(\alpha \vec{X} + \beta \vec{Y}) = \alpha (A\vec{X}) + \beta (A\vec{Y}) \)
- \( (\alpha A + \beta B)(\vec{X}) = \alpha (A\vec{X}) + \beta (B\vec{X}) \)
Column Space of A and Solution of \( A\vec{X} = \vec{b}\)
\( a_{11}x_1 + a_{12}x_2 + \cdots + a_{1n}x_n = b_1 \)
\( a_{21}x_1 + a_{22}x_2 + \cdots + a_{2n}x_n = b_2 \)
\( \cdots \)
\( a_{m1}x_1 + a_{m2}x_2 + \cdots + a_{mn}x_n = b_m \)
\[ x_1 \begin{bmatrix} a_{11} \\ a_{21} \\ \vdots \\ a_{m1} \end{bmatrix} + x_2 \begin{bmatrix} a_{12} \\ a_{22} \\ \vdots \\ a_{m2} \end{bmatrix} + \cdots + x_n \begin{bmatrix} a_{1n} \\ a_{2n} \\ \vdots \\ a_{mn} \end{bmatrix} = \begin{bmatrix} b_1 \\ b_2 \\ \vdots \\ b_m \end{bmatrix} \]columns of A
Column Space of A and Solution of \( A\vec{X} = \vec{b} \)
- \[ A\vec{X} = \vec{b} \iff \vec{b} \text{ can be written as lin. comb. of columns of } A \]
-
Column Space of A = Span \(\{\)columns of A\(\} = \text{Col}(A) \)
- \[ A\vec{X} = \vec{b} \iff \vec{b} \in \text{Col}(A) \]
Column Space of A and Solution of \( A\vec{X} = \vec{b} \)
Figure 1
\( \vec{X} \in \mathbb{R}^n \longrightarrow A\vec{X} \in \text{Col}(A)\subseteq \mathbb{R}^m \)
Column Space of A and Solution of \( A\vec{X} = \vec{b} \)
Backward picture
Figure 2
Given \( \vec{b} \in \text{Col}(A) \), find \( \vec{X} \in \mathbb{R}^n \) s.t. \( A\vec{X} = \vec{b} \)
Column Space of A and Solution of \( A\vec{X} = \vec{b} \)
Backward picture
Figure 3
Note
If \( \vec{b} \notin \text{Col}(A) \), then there is no \( \vec{X} \) s.t. \( A\vec{X} = \vec{b} \)
Homogeneous vs Inhomogeneous System
Homogeneous System (H)
\[ A\vec{X} = \vec{0} \]\[ \left[\begin{array}{c|c} A & \begin{matrix} 0 \\ 0 \\ \vdots \\ 0 \end{matrix} \end{array}\right] \longrightarrow \longrightarrow \left[\begin{array}{c|c} R & \begin{matrix} 0 \\ 0 \\ \vdots \\ 0 \end{matrix} \end{array}\right] \]Solution is written as :
\[ \vec{X}_h = s_1 \vec{V}_1 + s_2 \vec{V}_2 + \cdots + s_k \vec{V}_k \]\( s_i \) — free variables
\( \vec{V}_i \) — spanning vectors
\( \text{Null Space of } A \ (\text{Null}(A)) = \{ \text{Solution of } A\vec{X} = \vec{0} \} \)
Homogeneous vs Inhomogeneous System
Homogeneous System (H)
\[ A\vec{X} = \vec{0} \]\[ \left[\begin{array}{c|c} A & \begin{matrix} 0 \\ 0 \\ \vdots \\ 0 \end{matrix} \end{array}\right] \longrightarrow \longrightarrow \left[\begin{array}{c|c} R & \begin{matrix} 0 \\ 0 \\ \vdots \\ 0 \end{matrix} \end{array}\right] \]Solution is written as :
\[ \vec{X}_h = s_1 \vec{V}_1 + s_2 \vec{V}_2 + \cdots + s_k \vec{V}_k \]\( s_i \) — free variables
\( \vec{V}_i \) — spanning vectors
Null Space of A \( (\text{Null}(A)) = \) Span \( \{ \vec{V}_1, \vec{V}_2, \cdots \vec{V}_k \} \)
Homogeneous vs Inhomogeneous System
Figure 4
Homogeneous vs Inhomogeneous System
Inhomogeneous System (I)
\[ A\vec{X} = \vec{b} \] \[ \left[\begin{array}{c|c} A & \vec{b} \end{array}\right] \longrightarrow \longrightarrow \left[\begin{array}{c|c} R & \begin{matrix} * \\ * \\ * \\ * \end{matrix} \end{array}\right] \]Solution is written as :
\[ \vec{X} = \vec{p} + s_1 \vec{V}_1 + s_2 \vec{V}_2 + \cdots + s_k \vec{V}_k \]translation vector: \(\vec{p}\)
spanning vectors: \( \vec{V}_1, \vec{V}_2, \ldots, \vec{V}_k\)
Homogeneous vs Inhomogeneous System
Inhomogeneous System (I)
\[ A\vec{X} = \vec{b} \]\[ \left[\begin{array}{c|c} A & \vec{b} \end{array}\right] \longrightarrow \longrightarrow \left[\begin{array}{c|c} R & \begin{matrix} * \\ * \\ * \\ * \end{matrix} \end{array}\right] \]Solution is written as :
\[ \vec{X} = \vec{p} + \text{Null}(A) \]Shifted Null Space
Homogeneous vs Inhomogeneous System
Figure 5
Solving \( m \times n \) Linear System
\[ A^{(m \times n)} X^{(n \times 1)} = b^{(m \times 1)} \]Existence of Solution
\[ \vec{b} \in \text{Col}(A) \]Uniqueness of Solution (if exists)
no free variables
\[ \text{Null}(A) = \{ \vec{0} \} \]Solving \( m \times n \) Linear System
\[ A^{(m \times n)} X^{(n \times 1)} = b^{(m \times 1)} \](More unknown Theorem)
\[ n > m \]If solution exists , then it cannot be unique, i.e. there must be some free. va
Figure 6
Solving \( m \times n \) Linear System
\[ A^{(m \times n)} X^{(n \times 1)} = b^{(m \times 1)} \](More equation Theorem)
\[ m > n \]There must be some \( b \) such that \( A\vec{X} = \vec{b} \) does not have a solution