Y1, C7 - Linear Transformations Flashcards

1
Q

What does the determinant of a 2d transformation represent

A

The scale factor of the area

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

What does the determinant of a 3d transformation represent

A

The scale factor of the volume

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

Can you use a matrix to represent a translation

A

No

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

What happens to the origin in any linear transformation

A

It stays the same (0,0)

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

What types of transformations can matrices be used to represent

A

Reflections, rotations, enlargements

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

How can you multiply four different 2d coordinates by a 2x2 transformation (M) at the same time

A

Write it as M * (2x4) matrix
With coordinate one being the left column etc.

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

What 2x2 matrix represents a reflection in y axis

A

(-1, 0, 0, 1)

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

Are rotations clockwise or anti-clockwise by default

A

Anti-clockwise

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

What is the 2x2 matrix for a rotation x about the origin

A

(cosx, -sinx, sinx, cosx)

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

What is the 2x2 matrix for a reflection in y=x

A

(0, 1, 1, 0)

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

What are invariant points

A

Points which are unaffected by transformations

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

What are invariant lines

A

When each point on the line transformed to give another point on the same line

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

What point is always an invariant point

A

The origin (0,0)

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

Describe fully the transformation described by (1/root(2), -1/root(2), 1/root(2), 1/root(2))

A

arccos(1/root(2)) = 45
arcsin(-1/root(2)) = -45
Rotation 45 degrees about origin

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

Do transformations always have invariant lines

A

NO

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

Matrix P = (3, 3, 4, 7), describe (a) invariant points, and (b) invariant lines

A

a) (3, 3, 4, 7) * (x, y) = (x, y)
–> 3x + 3y = x, therefore y = -2/3 * x
and 4x + 7y = y, therefore y = -2/3 * x
Therefore all lines on point y = -2/3 * x are invariant
b) y = mx + c
(3, 3, 4, 7) * (x, mx + c) = (z, mz + c)
–> 3x + 3(mx + c) = z
and 4x + 7(mx + c) = mz + c
–> 4x + 7(mx+c) = m(3x+3(mx+c)) + c
0 = 3m^2 - 4xm + 3mc - 6c - 4x
0 = x(3m+2)(m-2) + 3c(m-2)
when m = 0, c can take any value
when m = -2/3, c = 0
Therefore invariant lines are y=-2/3 * x and y = 2x+c

17
Q

What does the matrix (a, 0, 0, b) represent

A

Stretch of scale factor a parallel to x-axis, stretch of scale factor b parallel to y-axis. If a = b it is an enlargement

18
Q

If we transform a vector x by matrix A, then matrix B, what is the matrix of the combined matrix

A

BA

19
Q

Matrix for a rotation about x-axis in 3d

A

(1, 0, 0, 0, cosx, -sinx, 0, sinx, cosx)

20
Q

Matrix for a rotation about y-axis in 3d

A

(cosx, 0, sinx, 0, 1, 0, -sinx, 0, cosx)

21
Q

Matrix for a rotation about z-axis in 3d

A

(cosx, -sinx, 0, sinx, cosx, 0, 0, 0, 1)

22
Q

What is important to remember about the matrix transformation for a rotation about the y axis in 3d compared to rotations about x and z axis

A

The rotation is anticlockwise relative to the positive y-axis therefore the y matrix has its -sinx and sinx swapped

23
Q

Suppose x and y are column vectors, if Ax = y, what does x equal

A

x = A^-1 * y

24
Q

Suppose x and y are column vectors, if BAx = y, what does x equal

A

x = A^-1 * B^-1 * y