Scalar multiple of determinant
Very CommonFORMULA
For an n×n matrix A, ∣kA∣=kn∣A∣, not k∣A∣.
Why: The scalar multiplies each of the n rows, so it appears n times in the determinant.
WRONG: ∣2A∣=2∣A∣ for a 3×3 matrix RIGHT: ∣2A∣=23∣A∣=8∣A∣. The scalar multiplies each of the n rows. See pattern: System of Linear Equations →Determinant of sum $
eq$ sum of determinants
Very CommonFORMULA
$|A + B|
eq |A| + |B|$ in general. This is a very common error.
Why: Determinant is multiplicative (∣AB∣=∣A∣∣B∣) but NOT additive.
WRONG: ∣A+B∣=∣A∣+∣B∣ RIGHT: No shortcut for ∣A+B∣. You must compute A+B first, then find its determinant. Confusing D=0 cases for systems
Very CommonCASE MISS
D=0 does not automatically mean infinite solutions. You need all Di=0 as well.
Why: Students memorize 'D = 0 means infinite' without checking the numerator determinants.
WRONG: D=0, so the system has infinite solutions RIGHT: D=0: check D1,D2,D3. If any $D_i
eq 0:nosolution.IfallD_i = 0$: possibly infinite (verify). See pattern: Adjoint & Inverse Properties →Wrong adjoint formula for nested adj
CommonFORMULA
adj(adj(A))=∣A∣n−2⋅A, and ∣adj(A)∣=∣A∣n−1, not ∣A∣n.
Why: The exponent (n−1) is easy to confuse with n or (n−2) in different formulas.
WRONG: ∣adj(A)∣=∣A∣n for 3×3 RIGHT: ∣adj(A)∣=∣A∣n−1=∣A∣2 for 3×3. The exponent is always (n−1). Matrix multiplication is not commutative
CommonCASE MISS
$AB
eq BA$ in general. Only commutative in special cases.
Why: Real number intuition (ab=ba) does not extend to matrices.
WRONG: Rearranging AB=C to BA=C RIGHT: Never swap order unless given that AB=BA. Use left/right multiplication by inverse carefully.