Matrix determinants in general

 The determinant of a general n×n matrix is quite complicated. We give a mechanical, recursive definition first and then think about its meaning later.



Definition (Determinant)

Let A=(aij)Mn. The determinant |A| of A is defined recursively in the following manner.

  • If n=1, then |A|=a11.
  • If n>1, then let Aij denote the (n1)×(n1) matrix obtained by removing the i-th row and the j-th column from A, and |A|=j=1n(1)i+jaij|Aij| where i is any arbitrary index from 1 to n. (Instead of a row, you may use an arbitrary column to obtain the same result.)
According to this definition, if we want to compute |A| of an n×n matrix, we need to compute the determinants |Aij| of (many) (n1)×(n1) matrices, which requires computing determinants of (n2)×(n2) matrices, and so on, until we reach the determinants of 1×1 matrices which are trivial to compute (actually we already know how to compute the determinant of a 2×2 matrix so we may stop at n=2).

Example. First, let's see the previous definition of the determinant of a 2×2 matrix is consistent with the above definition.
Let A=(abcd). Then,
|A|=(1)1+1a|(d)|+(1)1+2b|(c)|=adbc. Thus, the two definitions are indeed consistent. □

Example
Let
A=(102111010)=(aij).
To compute its determinants, let's pick the first row as ``i''. So
|A|=(1)1+1a1,1|a2,2a2,3a3,2a3,3|+(1)1+2a1,2|a2,1a2,3a3,1a3,3|+(1)1+3a1,3|a2,1a2,2a3,1a3,2|=(1)1+11|1110|+(1)1+20|1100|+(1)1+32|1101|=1+0+(2)=3.
Since we may pick any arbitrary row (i), we may equally use the second row to compute
|A|=(1)2+1(1)|0210|+(1)2+2(1)|1200|+(1)2+3(1)|1001|=2+01=3
to obtain the same result. □

Example
Let X=(xij)M3. Prove the following.
|X|=x11x22x33x11x23x32+x12x23x31x12x21x33+x13x21x32x13x22x31.
Do you see any pattern? There are 3!=6 terms. Each term is a product of three elements. Each of 1, 2, 3 appears only once in the first index of each factor; the same for the second index. Half (3) of the terms are multiplied by -1. What are these patterns? They are permutations! As fascinating as it is, we don't delve into the details here. See a textbook on linear algebra. □





Comments

Popular posts from this blog

Birth process

Branching processes: Mean and variance

Informal introduction to formal logic