Vectors
Basic vector
- collection of numbers, arranged in col or row
- can be thought of as the coordinates of a point in n-dimensional space
- usually written in column format: x=x1x2⋮xn
- xi: i-th component of vector x
- xn: n dimension of x
- Rn: set of n-vectors (vectors of dimension n)
Transpose
- transpose: an operation to transform column vector x in row format and vice versa, denoted by T (superscript T)
function note:
- x, y both unit-norm: (x−y)⊤(x+y)=x⊤x−y⊤y−y⊤x+x⊤y=x⊤x−y⊤y=0
Unit vectors
- the i−th unit vector is the n-vector ei with all entries = 0 except the i-th one
e2=0100