How do you find the determinant of #((1, 7, -4, -5), (1, 5, 7, -4), (3, 21, -12, -15), (5, 25, -8, 0))#?

1 Answer
Feb 16, 2016

This is a long recursive method. Details are given below.

Explanation:

To find the determinant of a 4x4 Matrix, one has to go through a
recursive process working way down from the 4x4 determinant to 3x3 determinants and then to 2x2 determinants.

The determinant #((1,7,-4,-5),(1,5,7,-4),(3,21,-12,-15),(5,25,-8,0))# can be written as

#1((5,7,-4),(21,-12,-15),(25,-8,0))-7((1,7,-4),(3,-12,-15),(5,-8,0))+(-4)((1,5,-4),(3,21,-15),(5,-8,0))-(-5)((1,5,7),(3,21,-12),(5,25,-8))# (A)

Here we have chosen first row as multipliers to each #3X3# matrix and latter is formed by eliminating rows and columns of that multiplier. Also note that starting from each multiplier as positive, alternate multipliers are of opposite sign.

To find the value of each #3X3# matrix, say #((5,7,-4),(21,-12,-15),(25,-8,0))#, let us say one chooses again first row of this #3X3# determinant and it is equal to

#5((-12,-15),(-8,0))-7((21,-15),(25,0))+(-4)((21,-12),(25,-8))#

This way expand each #3X3# determinant into #2X2# determinants.

Value of a #2X2# determinant #((a,b),(c,d))# is given by #(ad-bc)#