A matrix is a rectangular table with rows and columns of numbers, symbols, or expressions. It constitutes a mathematical object or a property of such an object. The horizontal arrays and vertical collections are called rows and columns, respectively. The numbers in the rows and columns are known as elements or entities.
An example of a matrix is
3 4 | 5 4 | 9 -4 |
This is a matrix with two rows and three columns, also referred to as a 2X2 matrix.
To calculate determinants, one has to expand along with matrices. The method of evaluating a determinant by expanding along a row or a column (matrices) is called Laplace Expansion or Cofactor Expansion.
Based on order and elements, matrices are classified as:
It is also called a null matrix, as all the entries in this matrix are zero.
Example:
0 0 | 0 0 | 0 0 |
It is also called a column vector, as it comprises a single column with m elements.
Example:
2 1 4 |
It is also called row vector, as it comprises a single row with m elements.
Example:
2 | 4 | 6 |
This matrix has an equal number of rows and columns.
Example: square matrix of the order 2.
4 3 | 5 8 |
Square matrix of the order 3.
6 2 4 | 3 8 7 | 2 4 6 |
It is a square matrix that has the principal diagonal elements as 1 and others as 0.
Example:
Identity matrix of the order 2
1 0 | 0 1 |
Identity matrix of order 3
1 0 0 | 0 1 0 | 0 0 1 |
It is a square matrix that has all its diagonal elements equal and all the off-diagonal elements zero.
8 0 0 | 0 8 0 | 0 0 8 |
Example:
A square matrix with a diagonal part with non-zero elements running from the upper left to the lower right.
8 0 0 | 0 6 0 | 0 0 3 |
Example:
For a square matrix, a determinant can be defined in different ways.
For example:
Find out the determinant of the following
5 7 | 3 1 |
Solution:
5 x 1 = 5
7 x 3= 21
5- 21
-16
The value of the determinant is – 16.
A 2×2 matrix comprises two rows and two columns.
This is an example of a 2×2 matrix determinant.
a c | b d |
Expand along matrices to determine the determinant of the above matrix.
a x d= ad
b x c= bc
Ad – bc
A 3 X 3 matrix has three rows and three columns.
This is an example of a 3 X 3 matrix determinant.
a b c | d e f | g h i |
Expand along the matrices to determine the determinant of the above matrix.
a b c | d e f | g h i |
The three basic operations on matrices are addition, scalar multiplication, and transposition. That means there are three ways to do it on the rows of a matrix.
Sum A+B of two m-by-n matrices A and B is calculated as
(A + B)i,j = Ai,j + Bi,j, where 1 ≤ i ≤ m and 1 ≤ j ≤ n.
The product of a number represented as cA, c (also called scalar) and a matrix A is obtained by multiplying every entry of A with c:
(cA)i,j = c · Ai,j.
An m-by-n matrix A transpose is n-by-m matrix AT (also denoted Atr or tA) formed by turning rows into columns.
(AT)i,j = Aj,i.
The term “matrix” was used by Bertrand Russell and Alfred Whitehead in their Principia Mathematica of the axiom of reducibility, which proposed this principle to reduce any function to one of a lower type.
Numbers to expand along matrices can represent data and can be used to represent mathematical equations. They are found to be beneficial in engineering as well. Solving issues by multiplying matrices give quick and good approximations of complicated calculations.