2

How many invertible $ 3 \times 3 $ matrices exist over $2$-element field?


Obviously if some field has only $2$ elements, those elements must be $0$ and $1$. A matrix is invertible if and only if its determinant is non zero. I think it will be easier to find matrices which determinants are $0$ and subtract that number from $2^9$ (total number of matrices we can build over that field).

Is there any "clever" way of solving this problem?

Widawensen
  • 8,517
luka5z
  • 6,571

2 Answers2

4

$2^3-2^0=7$ choices for the first row as nozero vector. Then $2^3-2^1=6$ choices for the second row vector not in the span of the first. Then $2^3-2^2=4$ choices for the third row not in the span of the first two.

2

Here we are finding invertible matrices:

None of columns can be entirely zero and the columns must linearly independent. We can construct the first in $2^3$ ways but $(0,0,0)$ is included so we are left with $8-1=7$ ways for the first column. Now again we can construct the second column in $2^3$ ways but $(0,0,0)$ and the arrangement of type of first column should be excluded for linear independence; thus for second column we are left with $8-2=6$ ways; similarly for third column we have $8-1{(0,0,0)}-1$(first column)$-1$ (second column)$-1$ (span of first two columns)$= 4$.

Thus, the total no. of ways = total number of invertible matrices = 7×6×4 = 168.

Glorfindel
  • 4,000
  • 1
    Why the 1, for the span of first two columns? Some more detail there would be appreciated, possibly explaining in a way without using 'span' – stoic-santiago Apr 18 '19 at 18:05
  • 1
    For third column excluded columns are 1) 0C1+0C2= 0. 2) 1C1+0C2= C1. 3) 0C1+1C2=Ç2. 4) 1C1+1C2= C1+ C2 – Ashok Singh Bhandari Aug 04 '19 at 18:58
  • @AshokSinghBhandari It can be proven that from 8 possible choices for a row, one and only one of them is in the set {(C1+C2), (C1−C2), (C2−C1)}. So the fourth linear composition you mentioned should be one the above compositions not just what you wrote. – therealak12 Nov 14 '19 at 15:08