background Flashcards

1
Q

matrix definition:

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

if m=n:

A

the matrix is square, if not, it’s rectangular

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

submatrix:

A

any matrix obtained by deleting rows and columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

block matrix:

A

a partitioning of a matrix into submatrices, whose dimensions must be consistent - each element is a matrix, basically

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

row vector:

A

a 1 x n matrix, e.g. [a b c d]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

column vector:

A

a n x 1 matrix, e.g. [1 / 2 / 3 / 4]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

zero matrix:

A

a matrix with all elements being 0, written O(mxn) or sometimes just O if m and n are clear from context

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

identity matrix:

A

a matrix with all values being 0 except the top left to bottom right diagonal, written I(mxn) or just I

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

j-th unit vector:

A

the j-th column of the identity matrix, so all 0 except the j-th row which is 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

common notation:

A

capital letters for matrices
lower case letters for elements and vectors
lower case greek letters for scalars

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

transposition:

A

switching the rows and columns
C=A^T <=> c(ij)=a(ji)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

conjugate transposition:

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

properties of transposition:

A

(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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

addition:

A

C=A+B <=> c(ij)=a(ij)+b(ij)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

scalar-matrix multiplication:

A

C=αA <=> c(ij)=αa(ij)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

properties of matrix addition:

A

it’s commutative (A+B=B+A), associative ((A+B)+C=A+(B+C)), and distributive with scalar multiplication (α(A+B)=αA+αB)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

matrix-matrix multiplication:

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

properties of matrix-matrix multiplication:

A

associative (A(BC)=(AB)C)
distributive (A(B+C)=AB+AC)
NOT commutative (AB!=BA generally)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

A^0 = I if:

A

A is a nonzero square matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

involutory:

A

a square matrix is involutory if A^2=I

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

idempotent:

A

a square matrix is idempotent if A^2=A

22
Q

nilpotent:

A

a square matrix is nilpotent if A^k=0 for some integer k>0

23
Q

if p(z) = c0 + c1z + … +ckz^k, p(A) =:

A

c0I + c1A + … + ckA^k (basically just here’s how to format polynomials of matrices)

24
Q

inner product:

A

the inner product of 2 vectors x,y in the complex numbers is x*y=(n)Σ(i=1)(x(i)–)y(i)
aka the dot product, the sum of the products of corresponding components, basically means transpose 1 so when you multiply you get just a number

25
Q

length of a vector:

A

root(x*x)

26
Q

orthogonal:

A

2 vectors are orthogonal if their inner product = 0

27
Q

orthonormal:

A

for 2 vectors that are orthogonal, they are also orthonormal if xx=yy=1

28
Q

outer product:

A

xy*=[
x1(y1–) . . . x1(yn–)
… …
xm(y1–) . . . xm(yn–)]
basically just transpose one so when you multiply them you get a matrix with multiple rows and columns

29
Q

diagonal matrix:

A

all elements that aren’t on the main diagonal are 0, also written D, diag(αi)

30
Q

upper triangular matrix:

A

U, has 0 elements Below the main diagonal, above is fine

31
Q

lower triangular matrix:

A

L, has 0 elements above the main diagonal

32
Q

block diagonal:

A

a block matrix with all values other than the main diagonal equal to 0

33
Q

block upper/lower triangular:

A

a block matrix with 0 elements below/above the main diagonal

34
Q

symmetric matrix:

A

A=A^T

35
Q

hermitian matrix:

A

A*=A

36
Q

orthogonal matrix:

A

an orthogonal matrix Q satisfies QQ^T=I and Q^(T)Q=I, so that if Q=[q1,…,qn] then qi^(T)qj=δij where δij=1 if i=j and 0 otherwise

37
Q

unitary matrix:

A

U, UU=UU=I

38
Q

permutation matrix:

A

Pij - the identity matrix, but switch the i and jth rows
PijA swaps the i and jth rows of A, APij swaps the i and jth columns of A
Pij is orthogonal and involutory

39
Q

rank:

A

the rank(A) of a matrix A is the maximum number of linearly independent rows or columns of A
(a set of vectors is linearly dependent if Σaivi=0 for some scalars ai not all 0, and linearly independent if not

40
Q

range of a matrix:

A

the range(A) of A, A in C^(mxn), = {y in C^m: y=Ax for some x in C^n}

41
Q

null space:

A

the null(A) of A, A in C^(mxn) = {x in C^n: Ax=0}

42
Q

range of a row:

A

if A=[a1, a2, …, an], then range(A)=span{a1, a2, …, an}
span(S) denotes the set of all linear combinations of vectors in the set S

43
Q

rank of a row:

A

rank(A)=dim(range(A))
dim(V) is the maximum number of linearly independent vectors in the vector space V

44
Q

how to find n in C^(mxn):

A

rank(A)+dim(null(A))=n

45
Q

determinant of nxn matrix:

A

det(A)=(n)Σ(j=1)aij(-1)^(i+j)det(Aij) for any i, for any j swap the j=1 for i=1
Aij here is a (n-1)x(n-1) matrix formed by deleting the ith row and jth column of a

46
Q

cofactor:

A

(-1)^(i+j)det(Aij) is a cofactor of A where Aij is formed by deleting the ith row and jth column of A, is a scalar

47
Q

properties of the determinant:

A

det(AB)=det(A)+det(B)
det(αA)=α^(n)det(A) (n is the number of columns)
if A is block diagonal or triangular with square diagonal blocks A11, A22, …, App, then det(A)=det(A11)det(A22)…det(App)

48
Q

inverse:

A

if A and B satisfy AB=I, then B is the inverse of A, B=A^-1

49
Q

singular:

A

a matrix A is nonsingular if A^-1 exists, singular if not

50
Q

properties of inverses:

A

(AB)^-1=B^(-1)A^-1
(A^-1)^T=A^-T=(A^T)^-1

51
Q

conditions that are equivalent to A being nonsingular:

A

null(A)={0} (there is no nonzero y such that Ay=0)
rank(A)=n (the rows or columns of A are linearly independent)
det(A)!=0
None of A’s eigenvalues are 0