Grade 11 → Vectors and Matrices → Matrices ↓
Types of Matrices
Matrices are a fundamental concept in mathematics, especially in the field of linear algebra. They are used to represent and solve problems involving systems of linear equations, to perform transformations in space, to process image data, and in many other applications. A matrix is a rectangular array of numbers or other mathematical objects, arranged in rows and columns.
In this lengthy explanation, we'll go over the different types of matrices you're likely to encounter in mathematics. We'll also present several examples—some using code and some using text—to help you understand these matrix types more deeply.
1. Row matrix
A row matrix is a matrix that has only one row and multiple columns. It is represented as follows:
A = [a 1 a 2 a 3 ... a n ]
Here is an example of a row matrix:
A = [5 7 9]
visual representation:
2. Column matrix
A column matrix is a matrix that has only one column and multiple rows. It is represented as follows:
B = [ b 1 b 2 b 3 ... b n ]
Here's an example of a column matrix:
B = [ 6 8 10 ]
visual representation:
3. Square matrix
A square matrix has equal number of rows and columns. This means that its dimension is n x n. It can be written as:
C = [ c 11 c 12 ... c 1n c 21 c 22 ... c 2n ... c n1 c n2 ... c nn ]
Example:
C = [ 1 2 3 4 5 6 7 8 9 ]
visual representation:
4. Diagonal matrix
A diagonal matrix is a special type of square matrix where all diagonal elements are zero. This means that the only non-zero elements are on the main diagonal, from top left to bottom right. It is of the form:
D = [ d 11 0 0 0 d 22 0 0 0 d 33 ... ]
Example:
D = [ 2 0 0 0 3 0 0 0 5 ]
visual representation:
5. Scalar matrix
A scalar matrix is a diagonal matrix where all the elements on the main diagonal are equal.
E = [ k 0 0 0 k 0 0 0 k ... ]
Example with a scalar value of 7:
E = [ 7 0 0 0 7 0 0 0 7 ]
visual representation:
6. Identity matrix
The identity matrix is a special type of square matrix where all diagonal elements are 1, and the other elements are 0. This matrix is also often written as I
:
I = [ 1 0 0 0 1 0 0 0 1 ... ]
Example:
I = [ 1 0 0 0 1 0 0 0 1 ]
visual representation:
7. Zero or non-zero matrix
A zero or null matrix is a matrix whose all elements are zero. It can be of any dimension.
O = [ 0 0 0 0 0 0 0 0 0 ]
Example:
O = [ 0 0 0 0 0 0 0 0 0 ]
visual representation:
8. Upper triangular matrix
The upper triangular matrix is a type of square matrix where all the elements below the main diagonal are zero. It has the form:
U = [ u 11 u 12 u 13 0 u 22 u 23 0 0 u 33 ... ]
Example:
U = [ 1 2 3 0 5 6 0 0 9 ]
visual representation:
9. Lower triangular matrix
The lower triangular matrix is a square matrix where all the elements above the main diagonal are zero. It looks like this:
L = [ l 11 0 0 l 21 l 22 0 l 31 l 32 l 33 ... ]
Example:
L = [ 4 0 0 2 5 0 3 6 9 ]
visual representation:
10. Singular and non-singular matrices
A square matrix is said to be singular if its determinant is zero, meaning it has no inverse. In contrast, a non-singular matrix is one where the determinant is not zero, allowing the matrix to have an inverse. Determinants may seem complicated at first, but you will often calculate them when working regularly with matrices.
Singular matrix example (determinant = 0):
S = [ 2 3 4 6 ] -> determinant = (2*6) - (3*4) = 0
Non-singular matrix examples:
N = [ 1 2 3 4 ] -> determinant = (1*4) - (2*3) = -2
Conclusion
In conclusion, matrices come in many different forms, each with its own properties and applications. Understanding these different types of matrices is essential for a variety of mathematical and applied contexts. As you continue your study, you will encounter more complex applications of these matrices, especially when dealing with systems of equations and transformations in multiple dimensions.