Matricies Flashcards

1
Q

When can two matrices be added together?

A

They can only be added of they are of exactly the same size

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

What happens when multiplying a matrix by a single whole number?

A

Multiply each element by the whole number

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

When can two matrices be multiplied together?

A

When the number of columns in the first matches the number of rows in the second.

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

How do we multiply matricies?

A

Take all elements from top row of the first, multiply them by all the elements in first column of second and add together. This becomes the element in the top left of the matrix. Then take the same elements from the first, but the second column of the second. This becomes the second element on the top row of the new matrix. Repeat until all elements have been multiplied and added.

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

How can translation be done with matricies?

A

An addition of two

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

How can scaling be expressed with matricies?

A

Multiplication:

Sx 0 ) * (x) = (Sx x
(0 Sy) (y) (Sy y)

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

How can rotation be done with matricies?

A

Multiplication:

cos(alpha) -sin(alpha) ) * (x) = (work it out
( sin(alpha) cos(alpha) ) (y)

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

How can we make image manipulation more efficient?

A

If we want to rotate and scale at the same time, we should multiply the two matrices then the image matrix, rather than one after the other.

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