Calculating the Determinant of a 4x4 Matrix

andrey21
Messages
475
Reaction score
0
Find the determinant of the following 4x4 matrix

-1 0 0 0
-15 7 -15 5
-5 1 -6 1
6 -7 6 -5



Here is my attempt

Ive seen that I should do the following:

-1.(determinant of 3x3 matrix)-0.(determinant of 3x3 matrix) + 0.(determinant of 3x3 matrix)-0.(determinant of 3x3 matrix)

which would simplify to

-1.(determinat of 3x3 matrix)

IS THIS CORRECT??
 
Physics news on Phys.org
andrey21 said:
Find the determinant of the following 4x4 matrix

-1 0 0 0
-15 7 -15 5
-5 1 -6 1
6 -7 6 -5



Here is my attempt

Ive seen that I should do the following:

-1.(determinant of 3x3 matrix)-0.(determinant of 3x3 matrix) + 0.(determinant of 3x3 matrix)-0.(determinant of 3x3 matrix)

which would simplify to

-1.(determinat of 3x3 matrix)

IS THIS CORRECT??
Yes. To be more specific, it is -1 times the determinant of this submatrix:

7 -15 5
1 -6 1
-7 6 -5

I.e., the cofactor of the -1 entry in row 1, column 1.
 
Great thanks mark 44 I ended up with the correct answer of -18:)
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top