Matrices Flashcards

1
Q

What is a diagonal matrix?

A

A square matrix where all elements not on the main diagonal are 0

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

What is a lower triangular matrix?

A

A square matrix that only has nonzero values on the main diagonal & below

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

What is an upper triangular matrix?

A

A square matrix that only has nonzero values on the main diagonal & above

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

What is a boolean or binary matrix?

A

A matrix that contains only 0s & 1s

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

What is a right or row stochastic matrix?

A

A square matrix where each value is between 0 & 1, inclusive, & the sum of each row is 1

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

What is a left or column stochastic matrix?

A

A square matrix where each value is between 0 & 1, inclusive, & the sum of each column is 1

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

How do you add matrices?

A

add elements in the same position of both matrices. The result will be a matrix of the same size.

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

What is the precondition of adding matrices?

A

They must be of the same order.

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

What is the order of a matrix?

A

The dimensions (rows x columns)

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

What is the precondition to find a dot product?

A

They must be vectors of the same length, but opposite orientation (one row vector & one column vector)

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

How do you find a dot product?

A

Multiply the elements of a row vector with elements with the same index of from a column vector, then add the results. The result is a scaler.

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

What is the precondition to find the product of 2 matrices?

A

The number of columns in the first matrix must equal the number of rows in the second. If you write the orders next to each other, the inner numbers must match. m x p, p x n

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

What is the order of the product of 2 matrices?

A

The resulting matrix has the same number of rows as the first matrix & the same number of columns as the second. If you write the orders next to each other, the outer numbers represent the order of the result. m x p * p x n = m x n

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

Practice finding the product of 2 matrices.

A

Did you do well? Do it on your calculator to confirm

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

What is a vector?

A

A matrix with only one row or column.

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

What is a scaler?

A

A regular number or 1x1 matrix (same thing)

17
Q

What is a matrix containing only 0s called?

A

A null matrix

18
Q

What is the main diagonal?

A

All the elements of a matrix whose row & column indices are the same, ie the diagonal starting from the top left corner. Only in the case of a square will it reach the bottom right corner.

19
Q

What is the identity matrix?

A

a square matrix with only 1 on the main diagonal, & only 0 elsewhere. Denoted I[4], where 4 is the order.

20
Q

Is a node adjacent to itself in a graph’s adjacency matrix?

A

Yes

21
Q

When are matrices equal?

A

When they are the same order & each element is the same

22
Q

What happens when the preconditions for matrix operations are not met?

A

The result is undefined.

23
Q

What is the precondition for squaring a matrix?

A

The order of the matrix must be square.

24
Q

What is the transpose of a matrix?

A

It’s when you swap the rows with the columns or mirror it across the main diagonal. Notated A^t or A^T (superscript). The order of the transpose will be the opposite of the original. The main diagonal will be unchanged.

25
Q

What is a symmetric matrix?

A

a matrix that is equal to its transposition or a matrix that is symmetrical along its main diagonal.

26
Q

What is the precondition of finding the determinant?

A

The matrix must be square.

27
Q

What does |A| mean?

A

The determinant of A

28
Q

Practice finding the determinant of a 4x4 matrix using Laplace Expansion & the 2x2 method.

A

Do it on your calculator to check.

29
Q

Practice finding the determinant of a 4x4 matrix using Laplace Expansion & Sarrus’s Rule for 3x3.

A

Check with your calculator

30
Q

What are the downward diagonals?

A

The diagonals parallel to the main diagonal which are the same length in a wide matrix

31
Q

What are the upward diagonals?

A

The diagonal starting in the bottom left corner & those parallel to it which are the same length in a wide matix, especially an augmented matrix

32
Q

How do you find the determinant of a 2 x 2 matrix?

A

The product of the main diagonal minus the product of the others

33
Q

How do you find the determinant using the Sarrus Method?

A

Write the first 2 columns again after the last column in the same order, then find the product of each of the downward & upward diagonals. Subtract the sum of the product of the the upward diagonals from the downward.

34
Q

What is the minor of an element of a matrix?

A

The determinant of the matrix created by removing the row & column on which that element resides

35
Q

What is the notation for the minor?

A

M[ij]

36
Q

What is the notation for the cofactor?

A

C[ij]

37
Q

What is the formula for the cofactor?

A

C[ij] = (-1)^(i+j)*M[ij]

38
Q

How do you find the determinant using laplace expansion?

A

the sum of an element times its cofactor for an entire row or column

39
Q

What is a non-singular matrix?

A

a matrix whose determinant is not 0.