A matrix is a set of numbers arranged in rows and columns forming a rectangular array. Matrices is the plural form of matrix.
Take a look at an example of matrix M:
M=⎣⎢⎡13−3542⎦⎥⎤
Here [15]
, [34]
and [−32]
are three rows
and ⎣⎢⎡13−3⎦⎥⎤
and ⎣⎢⎡542⎦⎥⎤
are two columns.
Usually a capital letter donates a matrix. For example matrix M above.
A small letter with a double subscript denotes an element of the matrix. For example, mij
, is the element in the ith
row and jth
column of the matrix M.
Please note that the row subscript will always come first then the column subscript.
Following our matix M from above,
m11m12m21m22m31m32=1first row, first column=5first row, second column=3second row, first column=4second row, second column=−3third row, first column=2third row, second column