Recall that we gave the formula for matrix-vector products:
Let A=(aij) be an n×m matrix and let x be a m×1 column vector. The product y=Ax is a n×1 vector y given by
yi=m∑j=1aijxj,1≤i≤n.Let A=(aij) be an n×m matrix and let B=(bjk) be and m×p matrix. The product C=AB, C=(cik) is given by
cik=m∑j=1aijbjk.The easiest way to remember this formula is:
C=AB=[Ab1,Ab2,…,Abp]where bk is the kth column of b.
This has to be the case because of the rules of matrix multiplication:
So B=[b1,0,0,0,…,0]+[0,b2,0,0,…0]+[0,0,b3,0,…0]+⋯
and (check this!)
AB=[Ab1,0,0,0,…,0]+[0,Ab2,0,0,…0]+[0,0,Ab3,0,…0]+⋯=[Ab1,Ab2,…,Abp]If A=(aij)1≤i≤n,1≤j≤m is an n×m matrix then AT=(a′ij)1≤i≤m,1≤j≤n is an m×n matrix with
a′ij=aji.A linear transformation y=T(x) from Rn to Rm is a function that takes in a vector x∈Rn and returns a vector y∈Rm. In addition, it must satisfy the rule of linearity:
Every linear transformation (from Rn to Rm) has a matrix representation A such that T(x)=Ax for all x∈Rn. In addition
A=[a1,a2,…,an⏟columns of A],ai=T(ei),ei=[0,0,…,0⏟i−1 zeros,1,0,0,…]TSuppose that A is a square matrix
for any 1 \leq i \leq n or 1 \leq j \leq n.
Find \det A using the cofactor expansion
A = \begin{bmatrix} 1 & 1 & 3 & 0 \\ 2 & 1 &0 & 3 \\ 1 & 0 & 1 & 0 \\ 0 & -1 & -1 & 0 \end{bmatrix}.Find \det A using Gaussian elimination
A = \begin{bmatrix} 1 & 1 & 3 & 0 \\ 2 & 1 &0 & 3 \\ 1 & 0 & 1 & 0 \\ 0 & -1 & -1 & 0 \end{bmatrix}.