You are on page 1of 3

8/7/23, 9:44 PM Linear Algebra - Intuitive Math

Intuitive Math

Null Space
Like Row Space and Column Space, Null Space is another fundamental space in a matrix, being
the set of all vectors which end up as zero when the transformation is applied to them.

In cases where the transformation does not flatten all of space into a lower dimension, the null space
will just contain the zero vector, since the only thing that can get transformed to zero is the zero
vector itself.

In other cases, there is an interesting compliment going on between both the Column Space, the
Row Space and the Null Space.

Consider the same case above where space was squished on to a plane.

You can imagine that on every point of this plane, there was once a whole line full of vectors sticking
out perpendicular to the plane that got squashed down to a single point. But there is a special line
sticking out from the origin of all vectors that got squashed down on to the origin, or the zero vector.
In this case, that line is the set of all vectors that ended up on the zero vector under the
transformation, so it is the Null Space.

https://intuitive-math.club/linear-algebra/null-space 1/4
8/7/23, 9:44 PM Linear Algebra - Intuitive Math

(Astute readers might instantly recognize that this line is the surface normal to the plane in both
directions)

Now on to actually computing the Null Space. What we are after is a solution to the system of
equations, some valid values for x, y, z, such that any linear combination of the vector made up of
x, y, z gets squished down to the zero vector.

To do that, we can just use Elementary Row Operations to get the matrix into a form that is a
little easier to work with, and then try and solve for those values from there.

Now, recall that our original matrix row-reduces as follows:

1 2 3 0 0 0
⎡ ⎤ ⎡ ⎤
⎢ 2 2 2⎥ ⎢2~ 1 0⎥
⎣ ⎦ ⎣ ⎦
−1 0 1 0 2 4

And recall that we are trying to solve the system when the result is the zero vector

0 0 0 x 0
⎡ ⎤⎡ ⎤⎡ ⎤
⎢2 1 0 ⎥⎢ y ⎥⎢ 0 ⎥
⎣ ⎦⎣ ⎦⎣ ⎦
0 2 4 z 0

Now, how do we solve for x, y, z, from here? One thing to pay attention to are what we call basic
variables and free variables. A basic variable has a leading entry, whereas a free variable does
not.

So in this case, our basic variables are x andy since we have a 2 in the first column of the second row
and a 2 in the second column of the third row.z is not a leading column, so it is a free variable.

In order to solve the system, we can rephrase the two basic variables in terms of the free variable:

2y + 4z = 0

https://intuitive-math.club/linear-algebra/null-space 2/4
8/7/23, 9:44 PM Linear Algebra - Intuitive Math

y = −2z

And solving for x...

2x + y = 0

2x − 2z = 0

−2z = −2x

x = z

Now that we have a solution for x, y in terms of z, we can express it as a vector like this:

z
⎡ ⎤

⎢ −2z ⎥
⎣ ⎦
z

Or more specifically:

1
⎡ ⎤
⎢ −2 ⎥z
⎣ ⎦
1

1
⎡ ⎤
Thus, the vector ⎢ −2 ⎥ is the basis for the Null Space of the transformation. You will also notice
⎣ ⎦
1

that this is the exact same vector we found earlier as the normal vector to the plane.

Column Space / Range Determinant

https://intuitive-math.club/linear-algebra/null-space 3/4

You might also like