Let's work through a concrete example and extract the bases for its fundamental subspaces. Here's a simple 3×4 matrix:

A=[121024213632]

Step 1: Row Reduce to Find Rank and Row Space

We perform row operations to reduce ( A ) to row echelon form:

RREF(A)=[121000010000]

From this, we see:

Row space basis=[1210],[0001]

Step 2: Null Space Basis

We solve ( A\vec{x} = \vec{0} ). From RREF, we express leading variables in terms of free variables:

Let ( x2=s ), (x3=t )

x1=2s+t,x4=0

So the general solution is:

x=s[2 1 0 0]+t[1 0 1 0]

Thus, the null space basis is:

[2 1 0 0],[1 0 1 0]

Step 3: Column Space (Vector Space of A)

We look at the original matrix and identify pivot columns from RREF: columns 1 and 4.

So the column space basis is:

[1 2 3],[0 1 2]

Summary Table

Subspace Basis Vectors
Row Space ( [1210], [0001] )
Null Space ( [2 1 0 0], [1 0 1 0] )
Column Space ( [1 2 3], [0 1 2] )

Rank of A


Nullity of A

So:

Property Value
Rank 2
Nullity 2

This satisfies the Rank–Nullity Theorem:

Rank(A)+Nullity(A)=Number of columns=4