Home page for accesible maths 1 Matrices

Style control - access keys in brackets

Font (2 3) - + Letter spacing (4 5) - + Word spacing (6 7) - + Line spacing (8 9) - +

1.1. Motivation and definitions

The abstract definition of a matrix is historically much more recent than the techniques developed in these notes. The motivation for the definition of a matrix, given below, comes from two different places: (1) The algebraic question of solving a system of linear equations, see Section 5 for more on this question; (2) The geometric question of describing linear transformations of n-dimensional space, n, see Section 6 for more on this question.

Throughout this section, n,m are positive integers (1).

Definition 1.1.1.

A matrix is a rectangular array of numbers (usually real numbers in this module). The entries in the array are called the coefficients (or elements) of the matrix. If a matrix A has n rows and m columns then A is an n×m matrix. If m=n then A is a square matrix. We write aij for the element in the i-th row and j-th column, starting with the (1,1) coefficient in the top left corner of the array:

A=(aij)1in1jm=(a11a12a1ma21a22a2man1an2anm).

We commonly use A=(aij)1in1jm, or simply A=(aij) as a shorthand for saying that the (i,j) coefficient of A is aij, for all i,j.

Example 1.1.2.

  • Here A is a 2×3 matrix and B is a 2×2 matrix:

    A=(123456)andB=[1579].

    If A=(aij), then a13=3 and a22=5. Matrices may be written with either round brackets (aij) or square brackets [aij].

Remark 1.1.3.

All the matrices we will consider have coefficients in , although one could also take coefficients in or for instance.

Definition 1.1.4.

For any n and m, the set of n×m matrices is denoted Mn×m(). If m=n, then we simply write Mn(). We call the set of scalars. If m=1, then the n×1 matrices are column vectors and we write n instead of Mn×1(). Similarly, if n=1, then the 1×m matrices are row vectors.

We number the coefficients from top to bottom in each column

v=(v1v2vn)n,

and from left to right in each row

v=(v1v2vm)M1×m()where vi is the i-th coefficient of v .
Remark 1.1.5.

Some authors prefer to use the notation m for row vectors, that is M1×m(). In these notes, m will refer to column vectors.

Example 1.1.6.

  • Let us write the 3×3 matrix A=(aij) with coefficients aij=2i-j, for 1i,j3. We calculate each coefficient:

    a11=21-1=1,a12=21-2=0,a13=21-3=-1a21=22-1=3,a22=22-2=2,a23=22-3=1a31=23-1=5,a32=23-2=4,a33=23-3=3,

    and so

    A=(10-1321543).