Across the sections above, each operation, transformation, or matrix structure has its own effect on the determinant. The table below collects every rule covered on the page into a single reference card — a one-stop lookup whenever a calculation requires recalling the right identity.
| Operation / Setting |
Effect on det |
Identity |
| Row swap (Rᵢ ↔ Rₖ) |
× (−1) |
det(B) = −det(A) |
| Row scaling (k · Rᵢ → Rᵢ) |
× k |
det(B) = k · det(A) |
| Scale entire matrix (kA) |
× kn |
det(kA) = kn · det(A) |
| Row addition (Rᵢ + c · Rₖ → Rᵢ) |
unchanged |
det(B) = det(A) |
| Transpose |
unchanged |
det(Aᵀ) = det(A) |
| Matrix product |
multiplicative |
det(AB) = det(A) · det(B) |
| Inverse |
reciprocal |
det(A⁻¹) = 1 / det(A) |
| Integer power |
exponent |
det(Ak) = (det A)k |
| Triangular / diagonal |
product of diagonal entries |
det(A) = a₁₁ · a₂₂ ⋯ aₙₙ |
| Identity matrix |
one |
det(Iₙ) = 1 |
| Block triangular |
product of diagonal blocks' dets |
det(A) = det(A₁₁) · det(A₂₂) ⋯ det(Aₖₖ) |
| Invertibility test |
nonzero ⟺ invertible |
A invertible ⟺ det(A) ≠ 0 |
| Sum (NOT a rule) |
no general identity |
det(A + B) ≠ det(A) + det(B) in general |