Cue Column:
- What happens when you swap rows?
- What is det(kA) vs k*det(A)?
- How does transpose affect det?
Note Column: Core properties that save computation time:
- det() = det(A) -- row and column operations are interchangeable
- Swapping two rows/columns flips the sign
- Two identical rows/columns => det = 0
- Multiplying one row by k => det multiplied by k
- det(kA) = * det(A) for n x n matrix (THE classic trap)
- det(AB) = det(A) * det(B)
- Adding a multiple of one row to another does NOT change det
- If a row is all zeros, det = 0
- det(A^(-1)) = 1/det(A)
- For triangular matrices, det = product of diagonal entries
Summary: Properties 5 and 7 are the most tested. Property 5 catches students every year. Property 7 is the workhorse for simplification.