Calculating determinant by cofactors

  • Thread starter Thread starter Bob
  • Start date Start date
  • Tags Tags
    Determinant
Bob
Messages
28
Reaction score
0
Show that evaluating the determinant of an n*n matrix by cofactors involves (n!-1) additions and \sum^{n-1}_{k=1}n!/k!multiplications.

What does it mean? how to do it? Help!
 
Last edited:
Physics news on Phys.org
Induction. You're trying to count the number of basic operations in expanding this (a necessary technique if one wants to estimate how long it will take on a computer). You can do this inductively since expanding by cofactors writes an nxn determinant in terms of n lots of (n-1)x(n-1) determinants.
 
As and example, to find the determinant
\left|\begin{array}{cc}a && b \\ c && d\end{array}\right|= ad- bc
You must do (2!)- 1= 1 addition (ad+ (-bc)) and
\sum^{2-1}_{k=1}2!/k= \frac{2!}{1}= 2
multiplications, ad and bc.
 
thank you!
 
Last edited:
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