Linear Transformations and Matrices
A linear transformation is a mapping between vector spaces that preserves the operations of addition and scalar multiplication.
Properties of Linear Maps
is linear if for all and :
Every linear transformation between finite-dimensional vector spaces can be represented as a matrix.
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.
Composition and Matrix Multiplication
If and are linear maps, their composition is also linear. The matrix representing is the product of the matrices representing and .
If A is a 3x2 matrix and B is a 2x5 matrix, what is the size of AB?
Change of Basis
The matrix representation of a linear map depends on the choice of bases for and . If is the matrix in basis , and is the transition matrix from basis to , then:
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.