LINEAR-ALGEBRA Β· Unit 17 Β· Video 4 Β· Interactive Practice

How Determinants Turn Matrix Multiplication into Simple Arithmetic

IKey Formulas

Formula Name Description
det⁑(AB)=det⁑(A)β‹…det⁑(B)\det(AB) = \det(A) \cdot \det(B) Multiplicative Property (P9) Products become scalar multiplication
det⁑(Aβˆ’1)=1det⁑(A)\det(A^{-1}) = \frac{1}{\det(A)} Inverse Determinant Requires det⁑(A)β‰ 0\det(A) \neq 0
det⁑(cA)=cnβ‹…det⁑(A)\det(cA) = c^n \cdot \det(A) Scalar Multiplication nn = matrix size, cc = scalar
det⁑(AT)=det⁑(A)\det(A^T) = \det(A) Transpose Property (P10) Row properties == column properties

IIVisualization 1 β€” Scaling by cc Multiplies the Determinant by cnc^n

Multiply every entry of an nΓ—nn \times n matrix by cc and the determinant scales by cnc^n, not by cc.

IIIVisualization 2 β€” Composing Transformations Multiplies Their Determinants

Apply BB, then AA: the area-scale factors multiply, so det⁑(AB)=det⁑(A)β‹…det⁑(B)\det(AB) = \det(A) \cdot \det(B).

det⁑\det has no addition rule: det⁑(A+B)β‰ det⁑(A)+det⁑(B)\det(A + B) \neq \det(A) + \det(B) in general β€” e.g. det⁑(2I)=4\det(2I) = 4 but det⁑(I)+det⁑(I)=2\det(I) + \det(I) = 2.

IVVisualization 3 β€” Powers and Inverses Reuse One Number

One number fixes every power and inverse of AA: det⁑(Ak)=[det⁑(A)]k\det(A^k) = [\det(A)]^k and det⁑(Aβˆ’1)=1/det⁑(A)\det(A^{-1}) = 1/\det(A).

VQuiz Questions

Question 1

Let AA be a 4Γ—44 \times 4 matrix with det⁑(A)=3\det(A) = 3.

What is det⁑(2A)\det(2A)?

βœ… Correct! Each of the 4 rows contributes a factor of 2, giving 24β‹…3=482^4 \cdot 3 = 48.

❌ Not quite. Remember: det⁑(cA)=cnβ‹…det⁑(A)\det(cA) = c^n \cdot \det(A) where nn is the matrix dimension. Here c=2c = 2 and n=4n = 4.

Show solution

Solution:

For a 4Γ—44 \times 4 matrix with det⁑(A)=3\det(A) = 3:

det⁑(2A)=24β‹…det⁑(A)=16β‹…3=48\det(2A) = 2^4 \cdot \det(A) = 16 \cdot 3 = 48

Common mistakes:

  • 6: computed 2β‹…32 \cdot 3 β€” forgot that the scalar is raised to the power nn
  • 16: computed 24=162^4 = 16 β€” forgot to multiply by det⁑(A)\det(A)
  • 24: used 23β‹…3=242^3 \cdot 3 = 24 β€” used the wrong dimension (n=3n = 3 instead of n=4n = 4)

Question 2

Let AA and BB both equal the 2Γ—22 \times 2 identity matrix I2I_2. Which statement is correct?

βœ… Correct! This classic counterexample proves that determinants do NOT respect addition.

❌ Not quite. Compute det⁑(2I2)\det(2I_2) using the scaling property: det⁑(cA)=cnβ‹…det⁑(A)\det(cA) = c^n \cdot \det(A).

Show solution

Solution:

With A=B=I2A = B = I_2:

A+B=2I2=(2002)A + B = 2I_2 = \begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix}

det⁑(A+B)=det⁑(2I2)=22β‹…det⁑(I2)=4β‹…1=4\det(A + B) = \det(2I_2) = 2^2 \cdot \det(I_2) = 4 \cdot 1 = 4

det⁑(A)+det⁑(B)=1+1=2\det(A) + \det(B) = 1 + 1 = 2

Since 4β‰ 24 \neq 2, the determinant does not distribute over addition. This is the classic counterexample from the video!

Question 3

If det⁑(A)=5\det(A) = 5, what is det⁑(A3)β‹…det⁑(Aβˆ’1)\det(A^3) \cdot \det(A^{-1})?

Hint: Use both the power rule and the inverse rule.

βœ… Correct! 53β‹…15=255^3 \cdot \frac{1}{5} = 25, or equivalently det⁑(A2)=52=25\det(A^2) = 5^2 = 25.

❌ Not quite. Break it into parts: det⁑(A3)=[det⁑(A)]3\det(A^3) = [\det(A)]^3 and det⁑(Aβˆ’1)=1/det⁑(A)\det(A^{-1}) = 1/\det(A). Then multiply.

Show solution

Solution:

Using the power rule and the inverse rule:

det⁑(A3)=[det⁑(A)]3=53=125\det(A^3) = [\det(A)]^3 = 5^3 = 125

det⁑(Aβˆ’1)=1det⁑(A)=15\det(A^{-1}) = \frac{1}{\det(A)} = \frac{1}{5}

det⁑(A3)β‹…det⁑(Aβˆ’1)=125β‹…15=25\det(A^3) \cdot \det(A^{-1}) = 125 \cdot \frac{1}{5} = 25

Elegant alternative: By the multiplicative property:

det⁑(A3)β‹…det⁑(Aβˆ’1)=det⁑(A3β‹…Aβˆ’1)=det⁑(A2)=[det⁑(A)]2=52=25\det(A^3) \cdot \det(A^{-1}) = \det(A^3 \cdot A^{-1}) = \det(A^2) = [\det(A)]^2 = 5^2 = 25

Question 4

True or False: If swapping two rows of a matrix flips the sign of the determinant, then swapping two columns also flips the sign of the determinant.

βœ… Correct! The transpose property guarantees that every row property has an automatic column counterpart.

❌ Not quite. Think about what det⁑(AT)=det⁑(A)\det(A^T) = \det(A) implies: a column operation on AA equals the corresponding row operation on ATA^T.

Show solution

Solution: True

By the transpose property, det⁑(AT)=det⁑(A)\det(A^T) = \det(A).

A column operation on AA is the same as the corresponding row operation on ATA^T. Since det⁑(AT)=det⁑(A)\det(A^T) = \det(A), any property that holds for rows automatically holds for columns.

Specifically: Swapping columns ii and jj of AA is the same as swapping rows ii and jj of ATA^T. The row swap flips the sign of det⁑(AT)\det(A^T). But det⁑(AT)=det⁑(A)\det(A^T) = \det(A), so the column swap flips the sign of det⁑(A)\det(A) too.

Every row rule has a column twin β€” for free!

Solved: 0 / 4