1. Basic Linear Algebra Review
Feb 8, 2021
What is a matrix?
A matrix is a 2D array of numbers. A
- Any vector in the span of a basis can be written as a linear combination of the basis vectors.
- A vector can be thought as a
matrix. - A scalar can be thought of as a
matrix.
Common operations on matrices
Matrix vector products
If we denote
Note that if
Transpose
Inner product (over )
Outer product
Matrix-matrix multiplication
This can be thought of a sum between a
💡 Matrix-vector, inner product, and the outer product are all special cases of matrix-matrix multiplication!
Remember that matrix multiplication is linear and associative.
Blocked operations
A matrix can be thought of a combination of smaller matrices. Let
The solutions to this equation are
Linear Algebra Concepts
From the range, we get the rank, which is the dimension of the image of
The null space (the kernel), is the set
Rank-nullity theorem
Example. Suppose
Since
Proposition. If for a matrix
Major Course Topics
- Solving linear systems.
. - Least squares problems.
- Eigenvalue problems.
- Numerical optimization.
- What types of solutions?
- Efficiency
- Trade off with speed and quality
This course will involve developing algorithms.
- They guarantee solutions (in exact arithmetic), or approximate answers
- Stable w/r/t perturbations
- Efficiency / computational complexity
Theme: Factorization
Goals
- Literate and comfortable with matrix comps + basic operations
- Know general building blocks and ideas
- Confidence to find a good solution for your problem