Affine Combinations
An affine combination is a linear combination whose weights sum to one. The affine hull of a set is the smallest flat containing it: a point, a line, a plane, or a translated subspace.
╌╌╌╌
Most of linear algebra treats a subspace as the primary object: a set closed under all linear combinations, always containing the origin. Geometry needs lines and planes that miss the origin, triangles, and solid bodies. The device that produces them is a single restriction on the weights of a linear combination.1
Given points in and scalars , an affine combination is a linear combination
The set of all affine combinations of points in a set is the affine hull (or affine span) of , written . The affine hull of a single point is , since the only admissible weight is .
The line through two points
For two distinct points , an affine combination has weights . Write , so , and
This passes through at and at . Regrouping exposes its structure as a translate:
where and . The multiples trace , the line through the origin in the direction . Adding shifts that line to pass through . So is the line through and .
The relation between and the shifted point holds for any number of points.
If , then collecting the terms gives
whose weights sum to . The converse reverses the algebra: turns any affine combination back into a linear combination of the translated points. The point carries no special role; any point in the list can play the base.
The translated-points criterion turns the membership question into a row reduction. Subtract from every point and test whether lies in the span of the translated set.
When the points are a basis for , the test is immediate: every has unique -coordinates, and is an affine combination of the basis exactly when those coordinates sum to .
The affine hull as a flat
Although every linear combination of fills all of , the affine combinations fill only the plane through the three points. That plane contains and misses .
A set whose affine hull equals itself deserves a name. A set is affine if for every and every real , the point is in . Geometrically, whenever contains two points it contains the entire line through them.
The line condition covers combinations of two points by definition. An induction extends it to any number: for a combination of points in , at least one weight differs from , say . Set . Then
expresses as an affine combination of two points of : the inner combination has weights summing to and lies in by the induction hypothesis.
Flats and their dimension
The definition ties affine sets to subspaces. A translate of a set by a vector is . A flat in is a translate of a subspace. Two flats are parallel if one is a translate of the other, and the dimension of a flat is the dimension of that parallel subspace.
- Line: a flat of dimension .
- Hyperplane: a flat of dimension .
- Point: a flat of dimension .
In the proper flats are points, lines, and planes, each of which may or may not pass through the origin. The dimension of an arbitrary set , written , is the dimension of the smallest flat that contains it.
Fix and let . Since , the zero vector lies in . For and in , a direct computation gives
The point is an affine combination of points of , hence in , and one more affine combination keeps the result in , so . Thus is a subspace and is a flat. The converse runs the same identity backward. The affine-sets-are-flats theorem gives the affine hull its geometric reading: is the smallest flat containing .
A familiar object is now recognizable as a flat.
Homogeneous coordinates
Affine combinations become ordinary linear combinations after one lift. For in , the standard homogeneous form is
the point lifted to the plane where the last coordinate equals .
The last coordinate of equals . Matching it to the last
coordinate of , which is , forces the weights to sum to
, and the first coordinates reproduce . The affine constraint has become the single linear
equation last coordinate equals .
Homogeneous coordinates carry into computer graphics, where translations, rotations, and perspective all become single matrix multiplications in . The affine structure of a scene reduces to linear algebra one dimension up, and the affine hull of a point set is the span of its lifted copies intersected with the height- plane. Affine independence — when those lifted copies are linearly independent — is the subject of barycentric coordinates.
Footnotes
- Lay, Linear Algebra and Its Applications, §8.1 — Affine Combinations: Theorem 1 (affine versus translated linear combinations), Theorem 2 (), Theorem 3 (affine sets are flats), and Theorem 4 (homogeneous forms). Worked examples adapt §8.1 Examples 1–4. ↩
╌╌ END ╌╌