Processing math: 100%

Matrices, linear systems, and linear transformations

Connections to linear systems

We can now view a linear system as a single equation involving a matrix-vector product:

{ax+by=αcx+dy=β[abcd][xy]=[αβ].

In general, a system of m equations involving n unknowns can be written as a compact equation

Ax=b

where A is an m×n matrix that collects all the coefficients, x is a column vector containing n entries x1,,xn, each representing an unknown, and b is a column vector containing m entries that are the right-hand-sides of the equations.

Matrix-vector products as transformations

For a given 2×2 matrix A, the function vAv can be considered as a transformation of vectors in R2. That is, the function f:R2R2 given by f(v)=Av is defined everywhere in R2 and sends vectors in R2 to vectors in R2.

Exercise. Consider matrices

A=[1001]B=[2003]C=[0110]

What are the geometric interpretations of the transformation vAv, vBv, and vCv?

In general, given a m×n matrix A, the function f(v)=Av is a function f:RnRm. That is, the domain if f is Rn and its codomain is Rm (the range may not be the entire Rm).

Linearity

For a m×n matrix A, a vector vRn, and a real number r, it is easy to verify that

A(rv)=rAv

Similarly, for a m×n matrix A and two vectors u,vRn, we can also verify that

A(u+v)=Au+Av

Therefore, for a given m×n matrix A, the function vAv preserves vector addition and scalar multiplication and is hence called a linear function.

It is also easy to verify that for two m×n matrices A and B and a vector vRn,

(A+B)v=Av+Bv.