Find the determinant of matrix A:

$$A=[[2, 6, -3],[4, 11, 3], [-2, 5, 0]] $$

1 Answer

James Dowd

Updated on December 23rd, 2020

To find the determinant of a 3x3 matrix, the formula below is used:

A = abcdefghi A = a·efhi-b·dfgi+c·degh

Essentially what we are doing is taking a term in the first row, and multiplying it by the determinant of the 2x2 matrix that is formed when you eliminate all of the terms in the same row and in the same column. The determinant of a 2x2 matrix is solved as follows:

A= abcd, A=ad-bc

We can write the determinant of our matrix A in the problem as

A=2·11350-6·43-20-3411-25 A=2·(0-15)-6·(0+6)-3(20+22) A=2·(-15)-6·(6)-3(42) A=-30-36-126 |A|=-192

 

Copyright © 2024 Savvy Engineer