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 of a vector space is a subspace if:
- The zero vector .
- is closed under addition: .
- is closed under scalar multiplication: .
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.
Quotient Spaces
Given a subspace , the quotient space is the set of all cosets . Intuitively, the quotient space “ignores” all differences that lie within .
The dimension of a quotient space is:
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 :
- The Kernel is a subspace of .
- The Image is a subspace of .
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.