The eight sections above are unified by a single condition — preservation of linear combinations — but recognizing whether a particular function satisfies that condition means knowing which specific tests catch failure and which standard operations are guaranteed to pass. The table below collects every transformation discussed across the page, names the space it acts on, gives the verdict, and identifies the reason in a single cell. It serves both as a recap of the page and as a reference card to return to when judging a new transformation.
| Transformation |
Defined on |
Linear? |
Reason |
| Zero map T(v) = 0 |
any V → W |
✓ |
corresponds to the zero matrix |
| Identity T(v) = v |
any V → V |
✓ |
corresponds to the identity matrix |
| Matrix multiplication T(x) = Ax |
ℝⁿ → ℝᵐ |
✓ |
A(cu + dv) = cAu + dAv |
| Rotation by θ |
ℝ² → ℝ² |
✓ |
matrix transformation |
| Projection onto a subspace |
ℝⁿ → ℝⁿ |
✓ |
matrix transformation |
| Differentiation T(p) = p' |
𝒫ₙ → 𝒫ₙ₋₁ |
✓ |
derivative respects + and scalar mult. |
| Integration T(f) = ∫ₐˣ f |
C[a, b] → C[a, b] |
✓ |
integral respects + and scalar mult. |
| Transpose T(A) = Aᵀ |
ℝⁿˣⁿ → ℝⁿˣⁿ |
✓ |
(A + B)ᵀ = Aᵀ + Bᵀ; (cA)ᵀ = cAᵀ |
| Trace T(A) = tr(A) |
ℝⁿˣⁿ → ℝ |
✓ |
additive and scalar-homogeneous |
| Translation T(v) = v + b, b ≠ 0 |
V → V |
✗ |
T(0) = b ≠ 0 |
| Squaring T(x) = x² |
ℝ → ℝ |
✗ |
fails additivity |
| Absolute value T(x) = |x| |
ℝ → ℝ |
✗ |
fails homogeneity |
| Norm T(v) = ‖v‖ |
V → ℝ |
✗ |
fails additivity (triangle inequality) |
| Affine T(v) = Av + b, b ≠ 0 |
V → V |
✗ |
T(0) = b ≠ 0 |