Definition

A is a rectangle of numbers having rows by columns, enclosed by brackets. For example:

is a 2x3 matrix and

is a 3x2 matrix.

Notes

Please note these matrices are not the “same size” - they do have the same amount of values inside, but they must have the same amount of rows and the same amount of columns to be considered the same size.

A matrix that only has one row is (sometimes) called a row vector, and a matrix with only one column is called a column vector.

Matrices are normally labelled using capital letters like etc.

If a matrix has the same number of rows as colums (e.g a 3x3 matrix), it is called a square matrix.

Values are denoted like so:

The number appearing in the th row and the th column is called the (,) entry of .

As an example: If we take to be a matrix like so:

Then = 4, as 4 is in the 2nd column and the 1st row.

And as a final note: Two matrices are equal only if they have the same size and the values inside are all equal.