Lecture 13 Linear Combinations & Matrix Equations
Tags: #linear-algebra #vectors #matrices #span
1. The "Three Languages" of Linear Algebra
These three forms represent the exact same mathematical problem. If you can solve one, you can solve the others:
- Linear System (Augmented Matrix)
- Vector Equation:
- Matrix Equation:
2. Linear Combinations
A vector
Put the vectors into the columns of an augmented matrix
- Consistent (A solution exists): YES, it is a linear combination.
- Inconsistent (You get a row like
0 0 0 | 3): NO, it is not a linear combination.
3. The Span
Definition: The Span{v1, v2, ...} is the set of ALL possible linear combinations you can make with those vectors.
Geometric Interpretation in
- Span of 1 (non-zero) vector = A Line through the origin.
- Span of 2 (non-multiple) vectors = A Plane through the origin.
- Span of 3 (independent) vectors = The entire 3D space.
4. The Matrix-Vector Product ( )
There are two ways to look at
- The Row-Column Rule (The "Calculator" View):
Dot products of the matrix rows with the vector column. - The Column Combination Rule (The "Matrix Intuition" View):
Multiplying a matrix by a vectoris just creating a linear combination of the columns of , using the entries of as the weights.
Standard Unit Vectors ( )
Multiplying a matrix
5. Important Theorems & Tricks
Existence of Solutions
For an
- The columns of
span . - Matrix
has a pivot position in every row. (No all-zero rows in the coefficient matrix!)
Properties of Linearity
Matrix equations are linear, meaning you can distribute and pull out scalars:
💡 Trick: Solving by Inspection (No Row Operations)
If you are given a relationship between vectors, you can easily find the solution vector
Example:
Given vectors
Find
Solution:
- Rearrange the given fact to isolate the target vector (
):
- Since the matrix equation is really just
, we can just read the weights directly! - Therefore,
.