Matrices are not only used to solve systems of equations, but are also used to map vectors into another vector in space.

A function that performs this mapping is an input vector multiplied by some transformation matrix.

The domain of a mapping is its number of columns and it’s codomain is its number of rows.

The Image is the output vector of the mapping.

Matrix mapping must satisfy…

Linear Mapping

This is defined as a mapping from if the following is satisfied

  1. where we can combine these properties in one example when we test.

Standard Matrix of Linear Mapping

You can represent all linear mappings as matrix mapping by forming a transformation matrix by compiling the images of the basis vectors.

For example, for a domain in , the basis is…
and . We can apply a linear mapping of on this basis to get and making matrix where we can multiply an input vector by this transformation matrix to get our image.

Composite Mapping

You can represent two linear mappings in one matrix called a composition of linear mapping.

You can also think of this as a cascading mapping. The idea is that for two mappings of…
and , where the codomain of the first mapping must be the domain of the second mapping, the composition is defined as .

We need the codomain and domains to match up since matrix multiplication only works if the inner dimensions are equivalent.

Geometrical Transformations are too large of a topic to be included here.