ReadDiscussionHistory

Matrix

Matrices

3.1 Overview

A matrix is an ordered rectangular array of numbers or functions. For example, the matrix AA is: A=\begin{bmatrix}x&4&3\\ 4&3&x\\ 3&x&4\end{bmatrix} [cite_start]The numbers or functions within the matrix are called the elements or entries. The horizontal lines of elements form the rows, and the vertical lines form the columns.


3.1.2 Order of a Matrix

A matrix with mm rows and nn columns is called a matrix of order m×nm\times n or simply an m×nm\times n matrix. The matrix AA above is a 3×33\times3 matrix. In general, an m×nm\times n matrix has the following rectangular array:

A=[a_{ij}]_{m \times n}=\begin{bmatrix}a_{11}&a_{12}&\dots&a_{1n}\\ a_{21}&a_{22}&\dots&a_{2n}\\ \vdots&\vdots&\ddots&\vdots\\ a_{m1}&a_{m2}&\dots&a_{mn}\end{bmatrix}

The element aija_{ij} is the element in the ithi^{th} row and jthj^{th} column. An m×nm\times n matrix contains mnmn elements.


3.1.3 Types of Matrices

The document defines several types of matrices:

Two matrices, A=[aij]A=[a_{ij}] and B=[bij]B=[b_{ij}], are equal if they have the same order and each element of A is equal to the corresponding element of B, i.e., aij=bija_{ij}=b_{ij} for all ii and jj.


3.1.4 Addition of Matrices

Two matrices can be added only if they have the same order.

3.1.5 Multiplication of Matrix by a Scalar

If A=[aij]m×nA=[a_{ij}]_{m\times n} is a matrix and kk is a scalar, then the matrix kAkA is obtained by multiplying each element of A by the scalar kk, i.e., kA=[kaij]m×nkA=[ka_{ij}]_{m\times n}.

3.1.6 Negative of a Matrix

The negative of a matrix A is denoted by A-A and is defined as (1)A(-1)A.

3.1.7 Multiplication of Matrices

The multiplication of two matrices, A and B, is defined only if the number of columns in A is equal to the number of rows in B. If AA is an m×nm\times n matrix and BB is an n×pn\times p matrix, their product is a matrix C of order m×pm\times p. The element cikc_{ik} of matrix C is obtained by multiplying the elements of the ithi^{th} row of A with the corresponding elements of the kthk^{th} column of B and summing the products.

Important notes on matrix multiplication:


3.1.8 Transpose of a Matrix

The transpose of an m×nm\times n matrix A, denoted by AA^{\prime} or (AT)(A^{T}), is the matrix obtained by interchanging the rows and columns of A. If A=[aij]m×nA=[a_{ij}]_{m\times n}, then its transpose is AT=[aji]n×mA^{T}=[a_{ji}]_{n\times m}.

Properties of a matrix transpose for matrices A and B of suitable orders:


3.1.9 Symmetric Matrix and Skew Symmetric Matrix

Theorems:


3.1.10 Invertible Matrices

A square matrix A of order m×mm\times m is invertible if there exists another square matrix B of the same order such that AB=BA=ImAB=BA=I_{m}. Matrix B is called the inverse of A and is denoted by A1A^{-1}.

Important notes on invertible matrices:


3.1.11 Inverse of a Matrix using Elementary Row or Column Operations

To find A1A^{-1} using elementary row operations, you write A=IAA=IA and apply a sequence of row operations until you get the form I=BAI=BA. The matrix B is then the inverse of A. Similarly, for column operations, you start with A=AIA=AI and apply a sequence of column operations until you get I=ABI=AB. If, at any point, all elements in one or more rows (or columns) of the matrix on the left-hand side become zero, the inverse does not exist. [^1]

References

[^1] : "Matrices" from Maths.scot