Introduction To Matrices
Introduction To Matrices
What is a Matrix?
KEY TAKEAWAYS
Key Points
A matrix (whose plural is matrices) is a rectangular array of
numbers, symbols, or expressions, arranged in rows and columns.
A matrix with mm rows and nn columns is called
an m×nm×n matrix or mm-by-nn matrix, where mm and nn are
called the matrix dimensions.
Matrices can be used to compactly write and work with multiple
linear equations, that is, a system of linear equations. Matrices and
matrix multiplication reveal their essential features when related
to linear transformations, also known as linear maps.
Key Terms
element: An individual item in a matrix
row vector: A matrix with a single row
column vector: A matrix with a single column
square matrix: A matrix which has the same number of rows and
columns
matrix: A rectangular array of numbers, symbols, or expressions,
arranged in rows and columns
Types of Matrices
There are many types of matrices available, a few of them are
mentioned below.
Row Matrix
A matrix having only one row is called a row matrix.
Column Matrix
A matrix having only one column is known as a column matrix.
Zero or null Matrix
A matrix having all elements as 0 is known as a zero or null matrix.
Square Matrix
A matrix having the same no of columns and rows is known as a
square matrix.
Diagonal Matrix
A matrix in which all elements are zero except the diagonal elements
is known as a diagonal matrix.
Scalar Matrix
A special kind of diagonal matrix in which all diagonal elements are the
same is known as a scalar matrix.
Identity Matrix
Identity matrix is a scalar matrix in which all diagonal elements are 1.
.
Equality
Subtraction
Scalar Multiplication
Zero Matrix
Matrix Multiplication
Am×n × Bn×p = Cm×p
Identity Matrix
Square matrix
Ones on the main diagonal
Zeros everywhere else
Denoted by I. If a subscript is included, it is the order of the
identity matrix.
I is the multiplicative identity for matrices
Any matrix times the identity matrix is the original matrix.
Multiplication by the identity matrix is commutative, although the
order of the identity may change
1 0
I2 =
0 1
I3 = 1 0 0
0 1 0
0 0 1
Properties of Matrices
Property Example
Distributive c (A + B) = cA + cB
Distributive (c + d) A = cA + dA
Left Distributive A (B + C) = AB + AC
Right Distributive ( A + B ) C = AC + BC
Multiplicative Identity IA = AI = A
You can not change the order of a multiplication problem and expect to
get the same product. AB≠BA
You must be careful when factoring common factors to make sure they
are on the same side. AX+BX = (A+B)X and XA + XB = X(A+B) but AX
+ XB doesn't factor.
Just because a product of two matrices is the zero matrix does not
mean that one of them was the zero matrix.
If A=B, then AC = BC. This property is still true, but the converse is not
necessarily true. Just because AC = BC does not mean that A = B.
Because matrix multiplication is not commutative, you must be careful to
either pre-multiply or post-multiply on both sides of the equation. That is,
if A=B, then AC = BC or CA = CB, but AC≠CB.
A square matrix B of order n × n is considered to be an orthogonal matrix, only when BT × B
= B × BT = I, here I is an identity matrix.
A square matrix B of order n × n is considered to be a skew-symmetric matrix, only when its
transpose BT = -B i.e., it is equal to its negative.
The transpose of the difference (B - C)T is the difference of transposes of the matrices B and
C. BT - CT = (B - C)T
The transpose of an invertible matrix B is also invertible, and its inverse is actually the
transpose of the inverse of the original matrix B. This can be represented as: (BT)-1 = (B-1)T.
Transpose when applied to a matrix, has the higher precedence than
multiplication and addition operations i.e., CBT = C(BT) and C + DT = C + (DT)