A matrix is a rectangular or square array of numbers or variables. We use uppercase boldface letters to represent matrices. All elements of matrices will be real numbers or variables representing real numbers. Here is an example of a 3×2 matrix
AA=(aij)=(0.5120.89−0.114)
A vector is an n×1 matrix:
xx=(x1x2x3)
A matrix of dimension 1×1 is called a scalar.
Two matrices A and B are equal if they have the same dimension and if aij=bij for all i and j.
The transpose A’ of a matrix is the matrix with rows and columns exchanged.
AA′=(aji)=(0.50.8−0.112914)
An n×m matrix AA is called square if n=m.
A matrix AA is called symmetric if AA=AA′.
The diagonal of a matrix AA are the elements (aii). A matrix is called diagonal if (aij)=0 for all i≠j.
A matrix AA with (aii)=1 for all i and (aij)=0 for all i≠j is called an identity matrix.
A matrix is called upper triangular if (aij)=0 for all i<j and lower triangular if (aij)=0 for all i>j.
A vector of 1’s is denoted by jj:
jj=(111)
A square matrix of 1’s is denoted by JJ:
JJ=(111111111)
A vector and a matrix of 0’s are denoted by
00=(000)
and OO=(000000000)
Let AA be a n×m matrix and BB be a m×k matrix, then product CC=ABAB is defined by
cij=m∑l=1ailblj
Let aa=(a1,..,an)′ and bb=(b1,..,bn)′ then aa′aa=∑ni=1a2i and aa′bb=∑ni=1aibi
(0.5120.89−0.114)(125−2.57.60.860−2.7)=(7.710.674.5−1.25−28.96.28.858.0−2.00−18.78.311.083.50.25−38.5)
Matrix multiplication in R is done like this:
A=matrix(c(0.5, 0.8,-0.1, 12,9,14), 3,2)
B=matrix(c(1, 0.6, 2, 0.8, 5, 6, -2.5, 0, 7, -2.7), 2,5)
A%*%B
## [,1] [,2] [,3] [,4] [,5]
## [1,] 7.7 10.6 74.5 -1.25 -28.9
## [2,] 6.2 8.8 58.0 -2.00 -18.7
## [3,] 8.3 11.0 83.5 0.25 -38.5
In general ABAB≠BABA.
proof
ABAB and BABA can only exist if both matrices are square. Now say
(51289)(0210)=(1210916)
but
(0210)(51289)=(1618512)
Let xx be a vector, then the Euclidean distance or length of the vector is defined by
√x′xx′x=√n∑i=1x2i
Let AA be an n×m matrix and jj a vector of 1’s, then
AjAj=(n∑i=1a1in∑i=1a2i...n∑i=1ami)
(AB)′(AB)′=A′B′A′B′
proof
Let CC=ABAB. Now
(ABAB)′ij=(CC′)ij=cji=n∑k=1ajkbki=n∑k=1bkiajk=n∑k=1(BB)ki(AA)jk=n∑k=1(B′B′)ik(A′A′)kj=BB′AA′
Partitioned Matrix
We can partition a matrix as follows
AA=(A11A11A12A12A21A21A22A22)
AA=(1310045121371153)=(A11A11A12A12A21A21A22A22)
where
A11A11=(1304)A12A12=(1051)A21A21=(2111)A22A22=(3753)
If AA is symmetric matrix and xx,yy are vectors, then
is calles a linear form.
is called the quadratic form.
is called a bilinear form.
A set of vectors aa1,..,aan is called linearly dependent if there exist salars c1,..,cn (not all 0) such that
c1aa1+..+cnaan=0
If no such coefficients c1,..,cn can be found the vectors are alled linearly independent.
The rank of a square matrix AA is the number of linearly independent columns of AA.
An n×p matrix AA with n<p is said to be full rank if rank( AA )=n. A full-rank square matrix is called nonsingular.
rank(ABAB)≤min
\text{rank}(\pmb{AA'})=\text{rank}(\pmb{A'A})=\text{rank}(\pmb{A})
proof omitted
A nonsingular matrix \pmb{A} has a unique inverse \pmb{A}^{-1} such that
\pmb{A}\pmb{A}^{-1} = \pmb{A}^{-1}\pmb{A} = \pmb{I}