Linear Algebra
2.168 min read

Affine Sets Revisited

Now that we have the language of subspaces and dimension, we can revisit the solution structure from Chapter 1. An affine set is a translation of a subspace: S=p+VS = \mathbf{p} + V for some point p\mathbf{p} and subspace VV.

The solution set of a consistent system Ax=bA\mathbf{x} = \mathbf{b} is an affine set. Its dimension equals the nullity of AA (number of free variables). When b=0\mathbf{b} = \mathbf{0}, the solution set is a subspace (the null space). When b0\mathbf{b} \neq \mathbf{0}, it's a shift of the null space.

Affine sets are the linear algebra version of "translated planes" — flat, but not necessarily through the origin.

Formal View

Definition 2.16 — Affine Set
A subset SRmS \subseteq \mathbb{R}^m is an affine set if S=p+V={p+v:vV}S = \mathbf{p} + V = \{\mathbf{p} + \mathbf{v} : \mathbf{v} \in V\} for some subspace VV and some pRm\mathbf{p} \in \mathbb{R}^m. The dimension of SS is dim(V)\dim(V).

Why This Matters

Affine sets are the geometric shape of all solution sets in linear algebra — understanding them gives immediate structural insight.

  • Constraint sets in optimization are affine sets
  • Feasible regions in linear programming are intersections of affine sets (halfspaces)
  • The set of all images consistent with a set of measurements is an affine set

Quiz

Question 1

The solution set of Ax=bA\mathbf{x} = \mathbf{b} (with b0\mathbf{b} \neq \mathbf{0}) is a subspace.

Common Mistakes

  • Confusing affine sets (shifted subspaces) with subspaces — subspaces must contain the origin, affine sets need not.