Linear Combinations, Span & Basis Vectors
Essence of Linear Algebra ยท Chapter 2 ๐ https://youtu.be/k7RM-ot2NWY
๐ง Big Idea
Everything in linear algebra flows from one surprisingly important operation: scaling vectors and adding them together. The concepts of basis, linear combinations, span, and linear dependence are all just different ways of looking at that single idea.
๐ฏ Rethinking Coordinates
Coordinates aren't just numbers โ they are scalars acting on basis vectors.
In the standard xy-plane there are two special vectors:
- รฎ (i-hat) โ length 1, pointing right along x
- ฤต (j-hat) โ length 1, pointing up along y
The vector [3, -2] is really: 3ยทรฎ + (-2)ยทฤต
The coordinates tell you how much to scale each basis vector. The basis vectors are what those scalars act on.
You can pick any two non-parallel vectors as a basis and get a perfectly valid (just different) coordinate system.
โ Linear Combination
Scaling two vectors by any scalars a and b, then adding:
aยทv + bยทw
This is a linear combination of v and w. The word "linear" comes from the fact that scaling a single vector by every real number traces out a line through the origin.
๐ Span
The span of a set of vectors = all possible vectors reachable via linear combinations of those vectors.
| Situation | Span |
|---|---|
| Two non-parallel 2D vectors | The entire 2D plane |
| Two parallel vectors (or one = zero) | A single line through the origin |
| Both are the zero vector | Just the origin (a point) |
| Two non-parallel 3D vectors | A flat sheet (plane) through the origin |
| Three 3D vectors, none in the others' span | All of 3D space |
| Third 3D vector lies in span of first two | Same flat sheet โ no new reach |
Mental image: Imagine two knobs (your two scalars). Turn them freely โ the tip of the resulting vector sweeps out the span.
๐ Vectors vs. Points
When thinking about one vector โ picture it as an arrow. When thinking about a collection of vectors (like an entire span) โ picture each as a point at its tip. The collection becomes a line, plane, or space โ much less cluttered.
๐ Linear Dependence vs. Independence
Linearly dependent โ at least one vector in the set is redundant: it can be expressed as a linear combination of the others, so removing it doesn't shrink the span.
Linearly independent โ every vector genuinely adds a new dimension to the span; none can be written as a combination of the others.
Simple test: if you can remove a vector without losing any reachable points, the set is dependent.
๐ Basis (Technical Definition)
A basis of a space is a set of linearly independent vectors that span that space.
- "Linearly independent" โ no redundancy, each vector contributes
- "Span the space" โ together they can reach every point
The standard basis {รฎ, ฤต} satisfies both. So does any other pair of non-parallel 2D vectors.
๐ก Key Takeaways
- Coordinates = scalars on basis vectors, not just raw numbers
- Linear combination = scale + add (the single core operation of linear algebra)
- Span = everything reachable; think of it as the "reach" of your vectors
- Linear dependence = one vector is already in the others' span โ redundant
- Basis = a minimal, non-redundant set that spans the whole space
๐ Series
โ Ch.1 โ Vectors โ Ch.3 โ Linear transformations and matrices