background Flashcards
matrix definition:
an ordered array of mn elements a(ij) - i=(1,…,m), j=(1,…,n) in the form of yknow. a matrix. with m as the row and n as the column
these elements can be taken from any field/set, but we will always be using the set of all real or all complex numbers
if m=n:
the matrix is square, if not, it’s rectangular
submatrix:
any matrix obtained by deleting rows and columns
block matrix:
a partitioning of a matrix into submatrices, whose dimensions must be consistent - each element is a matrix, basically
row vector:
a 1 x n matrix, e.g. [a b c d]
column vector:
a n x 1 matrix, e.g. [1 / 2 / 3 / 4]
zero matrix:
a matrix with all elements being 0, written O(mxn) or sometimes just O if m and n are clear from context
identity matrix:
a matrix with all values being 0 except the top left to bottom right diagonal, written I(mxn) or just I
j-th unit vector:
the j-th column of the identity matrix, so all 0 except the j-th row which is 1
common notation:
capital letters for matrices
lower case letters for elements and vectors
lower case greek letters for scalars
transposition:
switching the rows and columns
C=A^T <=> c(ij)=a(ji)
conjugate transposition:
C=A* <=> c(ij)=(a(ji)—–) (the line is over the bit in brackets with it and denotes complex conjugate)
transposes and switches the elements for their conjugates
properties of transposition:
(A^T)^T = A
(A) = A
(αA)^T = αA^T
(αA)* = (α-)A*
(A+B)^T = A^T + B^T
(A+B)* = A+B
(AB)^T = A^(T)B^(T)
(AB)* + AB
addition:
C=A+B <=> c(ij)=a(ij)+b(ij)
scalar-matrix multiplication:
C=αA <=> c(ij)=αa(ij)
properties of matrix addition:
it’s commutative (A+B=B+A), associative ((A+B)+C=A+(B+C)), and distributive with scalar multiplication (α(A+B)=αA+αB)
matrix-matrix multiplication:
C=AB <=> c(ij)=(r)Σ(k=1)a(ik)b(kj)
e.g. the first element of C is a(11)b(11) + … + a(1n)b(n1)
properties of matrix-matrix multiplication:
associative (A(BC)=(AB)C)
distributive (A(B+C)=AB+AC)
NOT commutative (AB!=BA generally)
A^0 = I if:
A is a nonzero square matrix
involutory:
a square matrix is involutory if A^2=I