← Algebra → Linear Algebra Lesson 10 of 12
Algebra → Linear Algebra · Lesson 10

Vector Spaces & Linear Independence

Vector spaces are the abstract framework that unifies all of linear algebra. Functions, polynomials, and solutions to differential equations are all vector spaces.

Key Concepts

Vector Space Axioms

A set V is a vector space over ℝ if it satisfies 8 axioms: closure under addition and scalar multiply, associativity, commutativity, zero vector, additive inverse, distributive laws.

Subspaces

A subset W of V is a subspace if: 1) W contains the zero vector. 2) W is closed under addition. 3) W is closed under scalar multiply. Lines through origin, planes through origin are subspaces.

Linear Independence

Vectors v₁, v₂, ..., vₙ are linearly independent if the only solution to c₁v₁ + c₂v₂ + ... + cₙvₙ = 0 is all cᵢ = 0. Otherwise linearly dependent (one vector is a combo of others).

Basis & Dimension

A basis is a linearly independent set that spans V. All bases have the same number of vectors — this is the dimension of V. ℝⁿ has dimension n. Standard basis: e₁=(1,0,...,0), e₂=(0,1,...,0), etc.

Live Python Practice

Interactive Lab

v₁:    v₂:
Blue dots = span of v₁ and v₂. Independent vectors span ℝ² (fill the plane). Dependent vectors only span a line.

Check Your Understanding

Vectors (1,2) and (2,4) are:

The dimension of ℝ³ is:

A subspace must contain:

← Lesson 9 Lesson 11 →