mcnotes21
mcnotes21
3.1 Vectors
An n-dimensional real vector x = (x1 , ..., xn ) ∈ Rn is an ordered n-tuple of
real numbers. As a matter of notational convention, whenever we talk of an
n-dimensional vector we mean a column vector; that is, a single column of n
rows: ⎡ ⎤
x1
⎢ x2 ⎥
x = [xi ]i=1,...,n = ⎢ ⎥
⎣ ... ⎦
xn
Letting a prime (0 ) denote the transpose, a row vector is simply the transpose
of a column vector:
x0 = [x1 x2 ... xn ]
For the set of all real vectors we may define summation and scalar multi-
plication, as well as inner product, in the ordinary way. Then, the set of all
real vectors x ∈ Rn is a linear vector space, and endowed with the Euclid-
ean distance/norm forms our well known n-dimensional Euclidean vector
space.3
3.2 Matrices
A real matrix is defined as a rectangular array of real numbers.4 In particular,
the matrix ⎡ ⎤
a11 a12 ... a1n
⎢ a21 a22 ... a2n ⎥
j=1,...,n ⎢
A = [aij ]i=1,...,m = ⎣ ⎥
... ... ... ⎦
am1 am2 ... amn
for aij ∈ R ∀i ∈ {1, 2, ..., m}, j ∈ {1, 2, ..., n} and m, n ∈ N∗ = {1, 2, ...}, is a
matrix of dimensions m × n. More compactly we write this matrix as A = [aij ].
Notice that, just as an n-dimensional (real) vector x = (x1 , ..., xn ) ∈ Rn is
an ordered set or ordered n-tuple of real numbers, an m×n matrix is an ordered
set or ordered n-tuple of m-dimensional vectors. Thus, we may write a matrix
as an array of column vectors
Simon and Blume (1994), chs. 10 & 27; or the MathCamp notes by Peter and Leeat. ♠
ed.note: It is so convinient to transfer responsibility to somebody else! :-)
4 In most of our discussion we restrict focus to matrices over the set of real numbers, R.
All notions, however, can be extended to the complex plane, C, or any arbitrary field. It’s a
good exercise for the reader to check what (if any) would have to change should, throughout
this text, we had set C wherever R appears.
19
3.3 Matrix Transpose
The transpose A0 of an m × n matrix A = [aij ] is an n × m matrix defined
simply as ⎡ 0 ⎤ ⎡ ⎤
a1 a11 a21 ... am1
⎢ a02 ⎥ ⎢ a12 a22 ... am2 ⎥
0 ⎢
A = [aji ] = ⎣ ⎥=⎢ ⎥
... ⎦ ⎣ ... ... ... ⎦
a0n a1n a2n ... amn
20
and AB is an m × p matrix.
21
Note that AB defined ⇒ (AB)0 = B 0 A0 defined.
22