Problem
Show det(AB) equals det(A) times det(B) for square matrices A, B
We illustrate with 2×2 and 3×3 integer matrices and multiple independent checks.
We illustrate with 2×2 and 3×3 integer matrices and multiple independent checks.
True. For all square matrices A, B of the same size, det(AB) = det(A)·det(B).
Compute det(AB) and compare with det(A)·det(B).
Entries from −3..3. We use the exact 3×3 formula (no floating error).
For triangular U, V: det(UV) equals product of diagonals of U times product of diagonals of V.
Pick a random A and a random elementary E. Verify det(EA) = det(E)·det(A) for each type.
If det(A) = 0, then det(AB) must be 0 for any B.
Enter 2×2 or 3×3 matrices as rows separated by semicolons. Examples:
A: 1,2; 3,4B: 2,0; 5,1 or
A: 1,0,2; -1,3,1; 0,2,1
det(A^k) = det(A)^k for k = 2,3,4 (follows from multiplicativity).