Chapter 6: Matrices Flashcards

1
Q

What is a square matrix?

A

A matrix with the same amount of rows and columns

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

What is a zero matrix?

A

A matrix in which all elements are 0

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

What is an identity matrix?

A

A square matrix in which elements on the leading diagonal (top left to bottom right) are all 1 and the rest are 0.
e.g. |1 0|
|0 1|

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

How do you add/subtract matrices?

A

Add/subtract the corresponding elements in each matrix. You can only do this to matrices of the same size.

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

What does ‘nxm’ mean?

A

No of rows multiplied by no of columns

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

How do you multiply a matrix by a scalar?

A

Multiply each element of the matrix by the scalar

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

What is the rule for 2 matrices being multiplied together?

A

The first matrix has the same amount of columns as rows in the second

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

What is the determinant of 2x2 matrix M?
|a b|
|c d|

A

ad-bc

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

How do you know if a matrix is singular or not?

A

If detM=0, it is singular and it doesn’t have an inverse.
If detM≠0, it is non-singular and it has an inverse.

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

What is the determinant of 3x3 matrix M?
|a b c|
|d e f|
|g h i|

A

a|e f| - b |d f| + c |d e|
|h i| |g i| |g h|

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

What is a minor in a 3x3 matrix?

A

The 2x2 matrix that remains after the row and column that element have been crossed out.

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

What is the inverse of matrix M?
|a b|
|c d|

A

M⁻¹= 1/detM|d -b|
|-c a|

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

What is the transpose of a matrix?

A

Found by interchanging the rows and columns

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

What are the steps to inverting a 3x3 matrix M?

A

1) Find detM
2) Find the matrix of minors.
3) Form a matrix of cofactors by changing signs as shown below.
|+ - +|
| - + -|
|+ - +|
4) Transpose the matrix of cofactors by interchanging rows and columns. (Mᵀ)
The inverse of matrix M is given by the formula: M⁻¹=(1/detM) Mᵀ

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

What does A|x| = v also equal?
|y|
|z|

A

|x| = A⁻¹v
|y|
|z|

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

When is a system of linear equations consistent?

A

If there is at least one set of values that satisfies all equations simultaneously.