02. Introduction to Matrices
Dated: 10-03-2025
Matrix
A matrix
is a collection or an array
of numbers
1 or functions
2 (both are called members
, entry
or elements
of the matrix
) arranged in rows and columns.
Denotation
The matrix is denoted by capital letters such as \(A, B\) etc meanwhile its members
are represented by small letters such as \(a, b\) etc.
Order
The order is the size or dimension of a matrix, written as \(r \times c\) where \(r\) represents the number of rows and \(c\) represents the number of columns.
In general terms, the element
in \(i^{\text{th}}\) row and \(j^\text{th}\) column of a \(m \times n\) matrix can be written as \(a_{\text{ij}}\).
Example
The following matrix has an order
of \(2 \times 3\) with \(2\) rows and \(3\) columns.
Square Matrix
A matrix is called a square matrix
if the number of rows is equal to the number of columns.
Equal Matrices
Two matrices are called equal matrices
if
- They have same dimensions.
- The corresponding
entries
are equal.
Both are equal matrices
.
Column Matrix
A matrix is called a column matrix
if it has only one column and \(n\) rows.
A column matrix
is also called a column vector
or simply a vector
.3
Multiple of a Matrix
If \(A\) is a matrix and \(k\) is a non-zero constant then
Commutative property of scalar multiplication
Addition of Matrices
If \(A = [a_{\text{ij}}]\) and \(B = [b_{\text{ij}}]\) are matrices of order \(m \times n\) then \(A + B = [a_{\text{ij}} + b_{\text{ij}}]_{m \times n}\).
Difference of Matrices
Similar to addition, \(A - B\) can be written as \(A + (-B)\) where \(-B = -1 \times B\).
Product of Matrices
\(AB \neq BA\)
For two matrices to be eligible for multiplication, the number of columns of the first one has to be equal to number of rows of second one.
Multiplicative Identity
Zero or Null Matrix
A matrix with all entries
being \(0\) is called a null matrix
.
Associative Law
If \(A, B\) and \(C\) are three matrices then
Distributive Law
If \(A, B\) and \(C\) are three matrices then
Remarks
There are some rules from \(\mathbb R\) which do not carry over to matrix addition.
For example, \(\forall a, b, c\in \mathbb R\),
- \(ab = ac \land a \neq 0 \implies b = c\) (Law of Cancellation)
- \(ab = 0 \implies a = 0 \lor b = 0\).
Law of Cancellation only works when the cancelled matrix is invertible
.4
Meaning, \(AB = AC \implies A^{-1}AB = A^{-1}AC \implies B = C \iff A^{-1} \text{ exists}\).
Cancellation law only partially works.
Determinant of a Matrix
The determinant
is a special number associated with every square matrix and is denoted by \(\det(A)\) or \(|A|\).
Transpose of a Matrix
If \(A_{m \times n}\) is a matrix with \(m\) rows and \(n\) columns then its transpose
\(A_{m \times n}^T = A_{n \times m}\) can be obtained by interchanging its rows with columns.
Properties
- \((kA)^T= k A^T\)
- \((A + B)^T = A^T + B^T\)
- \((ABC)^T = C^TB^TA^T\)
Multiplicative Inverse
If \(A_{n \times n}\) and \(B_{n \times n}\) are matrices then \(B_{n \times n}\) is called the multiplicative inverse
of \(A_{n \times n}\) if
And it is denoted as \(B = A^{-1}\)
Singular and Non Singular Matrix
A matrix \(A\) is called singular
if \(\det(A) = 0\) otherwise if \(\det(A) \neq 0\) is called non singular matrix
.
Minor of an Element of a Matrix
Let \(A_{n \times n}\) be a matrix then minor
\(M_{ij}\) of the element
\(a_{ij} \in A\) is the determinant of the matrix \(B_{(n - 1) \times (n - 1)}\) obtained by deleting the \(i^{\text{th}}\) row and \(j^{\text{th}}\) column from \(A\).
Co-factor of an Element of a Matrix
If \(C_{ij}\) is the cofactor
of \(a_{ij}\) element
then
Theorem
Theorem
Adjoint of \(A\)
\(\text{Adj}(A) = [C_{ij}]^T\)
Derivative of a Matrix of Functions
2
If \(A(t)\) is a matrix with elements
which are functions
which are differentiable
5 on a common interval
6
then
It can be denoted as \(A^\prime(t)\).
Integral of a Matrix of Functions
2
If \(A(s)\) is a matrix with elements
which are functions
which are continuous
7 on a common interval
6 containing \(t\)
References
Read more about notations and symbols.