Matrices Flashcards

1
Q

How are matrices added/subtracted?

A

Add/subtract the elements in the same positions (the matrices must be the same size)

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

How are matrices multiplied?

A

Scalar multiplication:
Multiply each element of the matrix by the scalar.

Matrix multiplication:
Multiply the first element in the first row of the first martix by the first element in the first column of the second matrix. Do so for all the elements in the first row of the first matrix and the first column of the second matrix, and add the products together. Repeat for each row of the first matrix and each column of the scond matrix.

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

How can you divide by a matrix?

A

Find the inverse of the matrix and multiply by the inverse.

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

How do you find the inverse of a matrix?

A

͟ ͟ ͟1͟ ͟ _ ( d -b )

ad-bc ( -c a )

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

What is the determinant?

A

ad-bc

If the determinant is 0, the matrix must be singular (because you can’t divide by 0).

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

What is a singular matrix?

A

A matrix that does not have an inverse - this is when the determinant = 0 (can’t divide by 0)

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

What is the identity matrix?

A
( 1   0 )
( 0   1 )
Denoted as I
All elements of the matrix are 0, apart from those in the lead diagonal which are 1
For matrix A :    AI = A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the zero matrix?

A
( 0   0 )
( 0   0 )
Denoted as 0
All elements are 0
For matrix A :    A0 = 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the rotation matrix?

A

For a rotation of θ° anticlockwise from the origin:

cosθ -sinθ
( sinθ cosθ )

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

What is the reflection matrix?

A

For a reflection in the line y = tanθ x :

cos2θ sin2θ
( sin2θ -cos2θ )

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

What is the matrix for a reflection in the y axis?

A

( -1 0 )

0 1

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

What is the matrix for a reflection in the x axis?

A

( 1 0 )

0 -1

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

What is the matrix for a reflection in the line y = x?

A

( 0 1 )

1 0

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

What is the matrix for a reflection in the line y = -x?

A

( 0 -1 )

-1 0

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

What is the matrix for a stretch in the x axis?

A

For scale factor k :
( k 0 )
( 0 1 )

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

What is the matrix for a stretch in the y axis?

A

For scale factor k :
( 1 0 )
( 0 k )

17
Q

What is the matrix for an enlargement from the origin?

A

For scale factor k :
( k 0 )
( 0 k )

18
Q

How do you find the transformation matrix?

A

Use vectors with a 1 and the rest 0 (so that if merged, would make the identity matrix) and see where they transform to
Merge the new vectors to form a matrix

19
Q

How do you find invariant points?

A

Invariant points are points that don’t move after a transformation.
Transform x and y under the transformation matrix.
Equate these to x and y respectively and form equations.
Solve the equations simultaneously.

20
Q

How do you find invariant lines?

A

Invariant lines are lines whose points map onto the line after a transformation.
Transform x and y under the transformation matrix.
Equate these to x and y respectively and form equations.
Substitute mx for y and solve for m.
The answer is y = mx