Processing math: 93%

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.890.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.80.112914)

Theorem (4.1.1)

For any matrix AA we have AA=(AA)

proof obvious

Definition (4.1.2)

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 ij.

A matrix AA with (aii)=1 for all i and (aij)=0 for all ij 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)

Definition (4.1.3)

Let AA be a n×m matrix and BB be a m×k matrix, then product CC=ABAB is defined by

cij=ml=1ailblj

Corollary (4.1.4)

Let aa=(a1,..,an) and bb=(b1,..,bn) then aaaa=ni=1a2i and aabb=ni=1aibi

Example (4.1.5)

jjjj=ni=11=n

jjjj=JJ

Example (4.1.6)

(0.5120.890.114)(1252.57.60.8602.7)=(7.710.674.51.2528.96.28.858.02.0018.78.311.083.50.2538.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

Theorem (4.1.7)

In general ABABBABA.

proof

ABAB and BABA can only exist if both matrices are square. Now say

(51289)(0210)=(1210916)

but

(0210)(51289)=(1618512)

Definiton

Let xx be a vector, then the Euclidean distance or length of the vector is defined by

xxxx=ni=1x2i

Let AA be an n×m matrix and jj a vector of 1’s, then

AjAj=(ni=1a1ini=1a2i...ni=1ami)

Theorem (4.1.8)

(AB)(AB)=ABAB

proof

Let CC=ABAB. Now

(ABAB)ij=(CC)ij=cji=nk=1ajkbki=nk=1bkiajk=nk=1(BB)ki(AA)jk=nk=1(BB)ik(AA)kj=BBAA

Definition (4.1.9)

Partitioned Matrix

We can partition a matrix as follows

AA=(A11A11A12A12A21A21A22A22)

Example (4.1.10)

AA=(1310045121371153)=(A11A11A12A12A21A21A22A22)

where

A11A11=(1304)A12A12=(1051)A21A21=(2111)A22A22=(3753)

Definition (4.1.11)

If AA is symmetric matrix and xx,yy are vectors, then

  1. AyAy=ni=1aijy2j

is calles a linear form.

  1. yAyyAy=ni=1aiiy2i+ijaijyiyj

is called the quadratic form.

  1. xAyxAy=i,jaijxiyj

is called a bilinear form.

Definition (4.1.12)

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.

Theorem (4.1.13)

  1. rank(ABAB)min

  2. \text{rank}(\pmb{AA'})=\text{rank}(\pmb{A'A})=\text{rank}(\pmb{A})

proof omitted

Definition (4.1.14)

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}