Search Knowledge

© 2026 LIBREUNI PROJECT

Linear Algebra / Vector Spaces

Subspaces and Quotients

Subspaces and Quotients

A vector space can contain smaller vector spaces called subspaces. We can also “divide” a space by a subspace to create a quotient space.

Subspaces

A subset WW of a vector space VV is a subspace if:

  1. The zero vector 0W\mathbf{0} \in W.
  2. WW is closed under addition: u,vW    u+vW\mathbf{u}, \mathbf{v} \in W \implies \mathbf{u} + \mathbf{v} \in W.
  3. WW is closed under scalar multiplication: cF,vW    cvWc \in F, \mathbf{v} \in W \implies c\mathbf{v} \in W.
python

Interactive Lab

Read the code, make a small change, then run it and inspect the output. Runtime setup messages stay outside the terminal so the result remains focused on what the program prints.

Step 1
Inspect the idea
Step 2
Edit the program
Step 3
Run and compare

Quotient Spaces

Given a subspace WVW \subseteq V, the quotient space V/WV/W is the set of all cosets v+W\mathbf{v} + W. Intuitively, the quotient space “ignores” all differences that lie within WW.

The dimension of a quotient space is: dim(V/W)=dim(V)dim(W)\dim(V/W) = \dim(V) - \dim(W)

If V = R3 and W is a line through the origin, what is the dimension of V/W?

Kernels and Images

For a linear map T:VWT: V \to W:

  • The Kernel ker(T)={vVT(v)=0}\ker(T) = \{ \mathbf{v} \in V \mid T(\mathbf{v}) = \mathbf{0} \} is a subspace of VV.
  • The Image im(T)={T(v)vV}im(T) = \{ T(\mathbf{v}) \mid \mathbf{v} \in V \} is a subspace of WW.
python

Interactive Lab

Read the code, make a small change, then run it and inspect the output. Runtime setup messages stay outside the terminal so the result remains focused on what the program prints.

Step 1
Inspect the idea
Step 2
Edit the program
Step 3
Run and compare

According to the First Isomorphism Theorem for vector spaces, V/ker(T) is isomorphic to what?

Previous Module Inner Product Spaces