A matrix is a rectangular array of numbers, symbols or expressions arranged in rows and columns. Each item in a matrix is called an entry or an element. The size (or order) of a matrix is given as P × Q, where P is the number of rows and Q is the number of columns. For example, a matrix of order 2 × 3 has two rows and three columns.


The transpose of a matrix A is obtained by interchanging its rows and columns. The transpose of A is denoted by AT. If A = [aij], then the transpose AT = [aji], i.e., the element at row i, column j in A becomes the element at row j, column i in AT.

Two matrices can be added (or subtracted) only if they have the same order (same number of rows and same number of columns). If A = [aij] and B = [bij] are both m × n matrices, then their sum A + B is an m × n matrix whose entries are given by (A + B)ij = aij + bij.

Subtraction follows the same rule as addition: two matrices must have the same order. If A and B are both m × n, then A - B is the m × n matrix with entries (A - B)ij = aij - bij.

There are two commonly used types of multiplication involving matrices: scalar multiplication and matrix multiplication.
Example (dimension rule): if the first matrix is 3 × 2 and the second is 2 × 3, then the product exists and the resulting matrix has order 3 × 3, because the inner dimensions (2 and 2) match and the outer dimensions (3 and 3) give the result size.




The determinant is a scalar value that can be computed for a square matrix and provides important information about the matrix, such as whether it is invertible. Only square matrices have determinants.
For a 2 × 2 matrix A = [ [a b], [c d] ], the determinant is det(A) = ad - bc.
For a 3 × 3 matrix, there are several methods to compute the determinant, including expansion by minors/cofactors and Sarrus' rule (a mnemonic useful for 3 × 3 matrices). See the illustrations below for the formulae and worked pattern.




The inverse of a square matrix A is a matrix A-1 such that AA-1 = A-1A = I, where I is the identity matrix of the same order. A matrix has an inverse only if it is square and its determinant is non-zero (i.e., det(A) ≠ 0).
For a 2 × 2 matrix A = [ [a b], [c d] ] with det(A) = ad - bc ≠ 0, the inverse is
A-1 = (1 / det(A)) · [ [d -b], [-c a] ]
In general, the inverse of an n × n matrix can be computed using the adjoint (adjugate) and determinant:
A-1 = (1 / det(A)) · adj(A)
See the images below for worked examples and formulae for finding inverses.



| 1. What is a figure matrix? | ![]() |
| 2. How can I improve my performance in figure matrix questions? | ![]() |
| 3. Are there any strategies I can use to solve figure matrix questions more efficiently? | ![]() |
| 4. What are some common types of patterns found in figure matrix questions? | ![]() |
| 5. Can figure matrix questions have multiple correct answers? | ![]() |