4.5.28 · D5Linear Algebra (Full)

Question bank — Matrix representation of linear transformations

1,464 words7 min readBack to topic

This bank leans on the parent note Matrix representation of linear transformations and pokes at ideas from Coordinate vectors and bases, Change of basis, Composition of linear maps, Rank and nullity, Kernel and image, and Eigenvalues and diagonalization.


True or false — justify

The matrix is a property of the linear map alone.
False. It depends on both the chosen bases and ; the same has infinitely many matrices, one per pair of bases.
If two matrices represent the same linear map (via different bases), they must be equal.
False. They need not be equal — they are equivalent (or similar, if changes together), related through change-of-basis matrices. See Change of basis.
A linear map with , always has an matrix.
True. Columns count domain basis vectors () and rows count codomain coordinates (), so the shape is fixed regardless of which bases you pick.
Knowing on three arbitrary vectors of always determines completely.
False. Only if those three vectors form a basis (are linearly independent). If they are dependent, is undetermined on directions they miss.
The zero map has the zero matrix in every choice of bases.
True. Every basis vector maps to , whose coordinate vector is all zeros in any codomain basis, so all columns are zero.
Changing only the codomain basis can change the matrix while is unchanged.
True. The columns store in the -basis, so recoordinatizing the output rewrites every entry even if inputs are untouched.
If is the identity matrix, then must be the identity map.
False. only says each has the same coordinate list as ; with this can be a genuine change-of-basis map, not the identity.
The matrix of is (in the natural reading order).
False. It is : apply first, so its matrix sits on the right, matching function composition order. See Composition of linear maps.
Listing the outputs as rows gives a valid matrix for .
False. That produces the transpose , which represents a different map; the formula forces outputs into columns.
An matrix with more columns than rows () can represent an injective map.
False. Injectivity needs zero kernel, but an matrix with has rank , so its nullity is positive — some nonzero input maps to zero. See Rank and nullity.

Spot the error

" is linear, so I'll build its matrix."
The error: is not linear — . No linear-map matrix exists; only linear maps have matrix representations.
" so the -th column is ." (codomain basis )
Error: is written in the standard basis, not . You must solve first, giving column .
", so its matrix is ."
Error: rows = , columns = , so the matrix is , not .
"Since rotates by , its matrix is in any basis."
Error: that matrix holds in the standard basis only. In a skewed basis the same rotation gets a different-looking matrix (Example 3 of the parent shows this).
" for the derivative, so I'll just leave that column out."
Error: a zero output is still a column — the coordinate vector . Dropping it breaks the shape and misaligns the matrix–vector product.
" exists, so I can multiply and in either order."
Error: the intermediate space must match — needs 's codomain basis to equal 's domain basis. The other order may not even be conformable.
"The map has a nonzero matrix, therefore it is invertible."
Error: nonzero invertible. Invertibility needs a square, full-rank matrix; is nonzero but not even square.

Why questions

Why must we express in the codomain basis rather than the domain basis?
Because lives in , and coordinates only make sense relative to a basis of the space the vector actually inhabits — so we use , a basis of .
Why does matrix multiplication use the "row times column" rule instead of something simpler?
It is reverse-engineered so that multiplying two matrices equals composing the two maps; the rule is the price paid so holds. See Composition of linear maps.
Why is a linear map completely fixed by its values on a basis?
Every vector is a unique combination , and linearity gives — so the finite data determines everywhere.
Why can the same map look diagonal in one basis and full in another?
A diagonalizing basis aligns with the map's eigenvectors, so each basis vector merely scales — off-diagonal entries vanish. In a generic basis directions get mixed. See Eigenvalues and diagonalization.
Why do we store outputs in columns rather than rows?
So that (which selects column ) returns exactly , making come out right by construction.
Why is the kernel of the same as the null space of its matrix ?
A vector satisfies iff its coordinate vector satisfies , so kernel and null space correspond one-to-one through the coordinate map. See Kernel and image.
Why does the rank of the matrix not change when you switch bases?
Change of basis multiplies by invertible matrices, which preserve dimension of the image; rank measures that dimension, an intrinsic property of . See Rank and nullity.

Edge cases

What is the matrix of (map into the zero space)?
It is the unique matrix — zero rows because — representing the map that annihilates everything.
Can a linear map from a -dimensional space have a matrix?
Yes: an matrix (no columns). The only vector in a -dimensional domain is , and , consistent with an empty product.
If but is not invertible, is the matrix still square?
Yes, the matrix is square () because it counts basis vectors, not invertibility. It is just a singular square matrix (determinant zero).
What does a column of all zeros in tell you?
The corresponding basis vector maps to , so lies in the kernel of — a direct read-off of part of Kernel and image.
What happens to the matrix if you reorder the basis vectors of ?
Its columns get permuted in the same order; the map is unchanged but its bookkeeping table is shuffled — another reminder the matrix is basis-dependent.
What happens to the matrix if you reorder the codomain basis ?
Its rows get permuted, since each column's coordinate list is reindexed to match the new order of .
For the identity map with the same basis in and out, what is the matrix?
The identity matrix : each maps to itself, whose coordinates in are , filling the diagonal with ones. Choosing a different output basis instead gives a change-of-basis matrix.
Recall One-line summary of every trap

The matrix is a basis-dependent bookkeeping table: columns catch outputs in the codomain basis, shape comes from dimensions, and intrinsic facts (rank, kernel, invertibility) survive basis changes while the entries themselves do not.

Connections

  • Change of basis — why entries change but the map does not.
  • Composition of linear maps — origin of the multiplication order.
  • Coordinate vectors and bases — the every trap relies on.
  • Rank and nullity — basis-invariant facts read off the matrix.
  • Kernel and image — zero columns and null space.
  • Eigenvalues and diagonalization — why some bases simplify .