SLIDE 1
Maths Knowledge Overview - for Part 1, COMP24111
Tingting Mu
tingtingmu@manchester.ac.uk School of Computer Science University of Manchester Manchester M13 9PL, UK Editor: NA
- 1. Linear Algebra Basics
1.1 Basic Concepts and Notations A matrix is a rectangular array of numbers arranged in rows and columns. By X ∈ Rm×n, we denote a matrix X with m rows and n columns of real-valued numbers. The notation X = [xij] (or X = [xi,j]) indicates that the element of X at its i-th row and j-th column is denoted by xij (or xi,j): X = ⎡ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎣ x11 x12 x13 ⋯ x1n x21 x22 x23 ⋯ x2n x31 x32 x33 ⋯ x3n ⋮ ⋮ ⋮ ⋱ ⋮ xm1 xm2 xm3 ⋯ xmn ⎤ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎦ . (1) For instance, A = [ 1.2 4 −0.4 3 1 ] (2) is a 2 × 3 matrix containing two rows and three columns. Given a matrix X, the notation X∶,i is usually used to denote its i-th column. Its i-th row can be denoted by Xi,∶. Its element at the i-th row and j-th column, which is referred to as the ij-th element, can be denoted by Xij. A row vector is a matrix with one row. By x = [x1,x2,...,xn], we denote a row vector
- f dimension n. For instance, the 2nd row of the matrix A in Eq. (2) is
A2,∶ = [3, 0, 1]. A column vector is a matrix with one column. By x = ⎡ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎣ x1 x2 ⋮ xn ⎤ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎦ , we denote a column vector
- f dimension n. For instance, the 3rd column of the matrix A in Eq. (2) is