There are processes that work on a square matrix and "squeez out" a single number. Since matrices in these discussions contain only integers, the process produces a single integer. The evaluation the determinant of a matrix produces a single number. If the matrix is a matrix of coefficients of N linear equations with N unknows, the number is zero if the equations cannot be solved to give the familiar single solution. If the determinant is not zero, then there is that single solution. So the determinant is well-named for this purpose. After further discussion the reader may want to get the program for evaluating determinants. Then click on the link at the beginning of this chapter entitled "program to evaluate a determinant."
But a discussion about the evaluation is needed. Below is a 4x4 matrix (in black letters with subscripts):
1
2
3
4
Products will be formed using a b c d in that order, and attaching subscripts. In row a pick any element, say a3. In the b row pick another element not below a3, say b1. In the c pick an element not under either a3 nor b1, say c4. Finally select d2. The result is the product
a
a1
a2
a3
a4
b
b1
b2
b3
b4
c
c1
c2
c3
c4
d
d1
d2
d3
d4
a3b1c4d2.
This is one of the 24 products that can be formed from this matrix in the manner that no element picked is under any other picked element.