Loading...

Find the Determinant [[2,2,1],[-3,1,0],[1,-1,2]]

Problem

det(2)

Solution

  1. Identify the matrix and choose a row or column for expansion. We will use the first row to calculate the determinant.

  2. Apply the cofactor expansion formula along the first row. The determinant is calculated as the sum of the elements in the row multiplied by their corresponding minors and signs.

det(A)=2*det(1)−2*det(−3)+1*det(−3)

  1. Calculate the 2×2 determinants for each minor using the formula a*d−b*c

det(1)=(1)*(2)−(0)*(−1)=2

det(−3)=(−3)*(2)−(0)*(1)=−6

det(−3)=(−3)*(−1)−(1)*(1)=2

  1. Substitute these values back into the expansion expression.

det(A)=2*(2)−2*(−6)+1*(2)

  1. Simplify the arithmetic to find the final value.

det(A)=4+12+2

det(A)=18

Final Answer

det(2)=18


Want more problems? Check here!