Matrix Definitions Flashcards

1
Q

What makes two matrices equal? (Definition: Equality)

A

Two matrices A and B are equal if they have the same order and their entries are all equal.

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

What is a null matrix?

A

A matrix where all the entries are zero. Denoted by O

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

What is a square matrix?

A

A matrix with 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 is a diagonal matrix?

A

An n x n matrix if, when i != j, A[i, j] = 0. NOTE: must also have at least one diagonal entry not equal 0.

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

What is an identity matrix?

A

A diagonal matrix where all the diagonal entries are equal to 1. Denoted I subscript n for an n x n identity matrix.

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

How do you transpose a matrix?

A

For every A[i, j] in a matrix, the entries of A ^ T will be [j, i] (so they flip). If A is a m x n matrix, then the transpose of A will be n x m.

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

What is a symmetric matrix?

A

A matrix A that is equal to the transpose of A. A^T = A

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

What is a skew symmetric matrix?

A

An n x n square matrix is skew if its transpose is equal to itself but negative. A^T = -A

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

What is a scalar matrix?

A

A diagonal matrix with all the diagonal entries being equal

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