1. Basic Linear Algebra Review

Feb 8, 2021

What is a matrix?

A matrix is a 2D array of numbers. A m×n matrix has m rows and n columns. It is a linear map between vector spaces. L:VW.

Common operations on matrices

Matrix vector products

Ax=y.

If we denote A as the set of vectors [a1,,an],

y=i=1nxiai

Note that if A is m×n, then x must be n×1.

Transpose

(AT)ij=Aji

Inner product (over R)

xTyα

x and y must be n×1.

Outer product

xyTA

Matrix-matrix multiplication

ABC

This can be thought of a sum between a m×k matrix and k×n matrix.

C=i=1mr=1kairbrj

💡 Matrix-vector, inner product, and the outer product are all special cases of matrix-matrix multiplication!

Remember that matrix multiplication is linear and associative.

A(α1B1+α2B2)=α1AB1+α2AB2.

Blocked operations

A matrix can be thought of a combination of smaller matrices. Let Aij denote a block.

[A11A12A21A22][x1x2]=[y1y2]

The solutions to this equation are

y1=A11x1+A12x2y2=A21x1+A22x2.

Linear Algebra Concepts

range(A)="Col space of A"={AxxRn}.

From the range, we get the rank, which is the dimension of the image of A.

The null space (the kernel), is the set zAz=0.

Rank-nullity theorem

rank(A)+dim(null(A))=n.

Example. Suppose A is equal to the outer product uvT. The range of A is

{(uvT)xxRn}.

Since vTx is a scalar, the rank of A is 1. By the rank nullity theorem, the dimension of the null space is n1.

Proposition. If for a matrix m=n and is full rank, then by the rank nullity theorem, the dimension of the null space is 0. The matrix is called nonsingular (has an inverse).

Major Course Topics

  1. Solving linear systems. x=A1b.
  2. Least squares problems. minx|Axb|22
  3. Eigenvalue problems. Ax=λx
  4. Numerical optimization. yicTσ(W2σ(W1xi+b1)+b2)
    1. What types of solutions?
    2. Efficiency
    3. Trade off with speed and quality

This course will involve developing algorithms.

Theme: Factorization A=PLU, A=QR, A=QTQT

Goals