Determinants: Conceptual Doubts Cleared (4)

easy 2 min read

Question

If AA is a 3×33 \times 3 matrix with det(A)=4\det(A) = 4, find det(2A)\det(2A), det(A1)\det(A^{-1}), and det(AT)\det(A^T).

Solution — Step by Step

For an n×nn \times n matrix, det(kA)=kndet(A)\det(kA) = k^n \det(A). Here n=3,k=2n = 3, k = 2:

det(2A)=23×4=32\det(2A) = 2^3 \times 4 = 32

det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A):

det(A1)=1/4\det(A^{-1}) = 1/4

det(AT)=det(A)\det(A^T) = \det(A) (the determinant is invariant under transpose):

det(AT)=4\det(A^T) = 4

Final answers: det(2A)=32\det(2A) = 32, det(A1)=1/4\det(A^{-1}) = 1/4, det(AT)=4\det(A^T) = 4.

Why This Works

Each property has a clean algebraic reason:

  • det(kA)=kndet(A)\det(kA) = k^n \det(A) because multiplying a matrix by kk scales every row by kk, and pulling each row’s kk out of the determinant gives knk^n.
  • det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A) because AA1=IA A^{-1} = I implies det(A)det(A1)=det(I)=1\det(A) \det(A^{-1}) = \det(I) = 1.
  • det(AT)=det(A)\det(A^T) = \det(A) comes from the cofactor expansion working identically along rows or columns.

Alternative Method

Pick a specific 3×33 \times 3 matrix with det=4\det = 4, e.g., A=(400010001)A = \begin{pmatrix} 4 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}. Compute each quantity directly. det(2A)=8114=32\det(2A) = 8 \cdot 1 \cdot 1 \cdot 4 = 32. det(A1)=det(diag(1/4,1,1))=1/4\det(A^{-1}) = \det(\text{diag}(1/4, 1, 1)) = 1/4. det(AT)=4\det(A^T) = 4. Confirms our properties.

Memorise the determinant cheat sheet: det(kA)=kndetA\det(kA) = k^n \det A, det(AB)=detAdetB\det(AB) = \det A \cdot \det B, det(A1)=1/detA\det(A^{-1}) = 1/\det A, det(AT)=detA\det(A^T) = \det A. These four identities cover most JEE Main MCQs.

Common Mistake

Writing det(2A)=2det(A)\det(2A) = 2 \det(A) for a 3×33 \times 3 matrix. The factor is 2n2^n, not 2. For a 2×22 \times 2 matrix it would be 4detA4 \det A; for 3×33 \times 3, 8detA8 \det A.

Confusing det(A1)\det(A^{-1}) with (detA)1(\det A)^{-1}. They’re equal, but writing detA-\det A or det(A)\det(-A) instead is a common slip. Be careful with notation.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next