1- Matrix algebra Flashcards

1
Q

How are matrices denoted?

A

Bold capital letters

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

How are vectors denoted?

A

Bold lowercase letters, we assume they are column vectors

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

When are 2 matrices conformable in addition?

A

When they have the same number of rows and columns

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

What are the 2 main properties of matrix addition?

A

Commutative & Associative

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

What does Commutative in addition mean?

A

It doesn’t matter which matrix is first

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

What does Associative in addition mean?

A

With several matrices it doesn’t matter which terms are added first

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

What does transposing do?

A

Transposing swaps rows and columns i.e. first row becomes first column etc

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

What is the reversal rule for transposing? C=AB

A

C’ = B’A’ = (AB)’

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

What happens when any matrix is multiplied by the identity matrix I?

A

It stays the same AI = IA = A

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

What is the result of an inverse square matrix multiplied by itself?

A

Identity matrix

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

What are the 3 steps to invert a square matrix?

A
  1. Swap principal diagonal elements
  2. Make the other diagonal negative
  3. Multiply by the determinant
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the determinant of a square matrix?

A

1 over product of principal diagonal minus product of secondary diagonal

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

What is the inverse of an inverse matrix?

A

The original

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

What is the transpose of an inverse?

A

The inverse of the transpose, they are interchangeable

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

What is the reversal rule for inverting matrices?

A

(AB)⁻¹ = B⁻¹A⁻¹

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

When are two vectors orthogonal?

A

x’y = 0

17
Q

How could you expand the variance expression var(Ax)?

A

Avar(x)A’

18
Q

How could you expand the variance expression var(X-U)?

A

var(X) + var(U) - 2cov(X,U)

19
Q

When are matrices conformable in multiplication?

A

When the number of columns of the first one equals the number of rows of the second (n x r)x(r x m)

20
Q

What are the dimensions of the product of two matrices?

A

Rows of the first by columns of the second e.g.
(n x r)x(r x m) = (n x m)

21
Q

How do you multiply matrices?

A

Apply columns of the second to rows of the first i.e. first element will be the sum of products of first row and first column

22
Q

How do you show a matrix is symmetric?

A

Transpose equals itself A’=A

23
Q

How do you show a matrix is idempotent?

A

Original equals the square AA=A

24
Q

What is the trace of a square matrix?

A

Sum of the elements on the principle diagonal

25
Q

How can you show a matrix is idempotent using its trace?

A

trace(A) = rank(A)

26
Q

What are the 4 trace operating properties for square matrices?

A

1.tr(A+B) = tr(A) + tr(B)
2.tr(A) = tr(A’)
3.tr(kA) = ktr(A)
4.tr(AB) = tr(BA)

27
Q

How do you find the rank of a matrix?

A

1.Check if any row or column can be linearly expressed in terms of another
2.Take out the dependent vector
3.If the remaining vectors are independent, the number of them is the rank

28
Q

What is a full rank matrix?

A

All vectors are linearly independent

29
Q

What are the dimensions of X?

A

n x k

30
Q

What is the formula to prove linear dependence?

A

Σγᵢxᵢ = 0

31
Q

What is the transpose of a diagonal matrix?

A

Itself Ω’ = Ω
Diagonal matrices are symmetrical