FMAT pure1 matrices and transformations Flashcards

1
Q

What is a matrix?

A

A matrix is a rectangular array of numbers arranged in rows and columns. It is used to store information.

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

How are matrices classified?

A

Matrices are classified by their dimensions (order), written as m × n:
- m: Number of rows,
- n: Number of columns.

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

What is a square matrix?

A

A matrix with the same number of rows and columns (e.g., 3 × 3).

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

What are the conditions for adding or subtracting matrices?

A

Matrices must have the same dimensions (order) to be added or subtracted.

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

Example: Add and subtract matrices A and B where:
A = [[2, 3], [-1, 0]], B = [[3, 4], [-1, -2]].

A

Addition: A + B = [[2 + 3, 3 + 4], [-1 + (-1), 0 + (-2)]] = [[5, 7], [-2, -2]]
Subtraction: A - B = [[2 - 3, 3 - 4], [-1 - (-1), 0 - (-2)]] = [[-1, -1], [0, 2]]

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

How is scalar multiplication of a matrix performed?

A

Each element of the matrix is multiplied by the scalar.
Example: For A = [[1, 2], [3, 4]] and scalar 3:
3A = [[3 * 1, 3 * 2], [3 * 3, 3 * 4]] = [[3, 6], [9, 12]]

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

What is the condition for multiplying two matrices?

A

Matrix multiplication is possible when the number of columns in the first matrix equals the number of rows in the second matrix.

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

Example: Multiply matrices A and B where:
A = [[1, 2], [3, 4]], B = [[5, 6], [7, 8]]

A

The product AB is:
AB = [[15 + 27, 16 + 28], [35 + 47, 36 + 48]]
= [[19, 22], [43, 50]]

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

What are the key properties of matrix multiplication?

A
  1. Matrix multiplication is not commutative: AB ≠ BA.
  2. Matrix multiplication is associative: (AB)C = A(BC).
  3. Matrix multiplication is distributive over addition: A(B + C) = AB + AC.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the identity matrix, and how does it affect multiplication?

A

The identity matrix I is a square matrix with 1s on the diagonal and 0s elsewhere:
I = [[1, 0], [0, 1]].
For any matrix A, IA = AI = A.

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

Example: Find the product of A and the identity matrix where:
A = [[2, 3], [4, 5]], I = [[1, 0], [0, 1]].

A

AI = [[21 + 30, 20 + 31], [41 + 50, 40 + 51]]
= [[2, 3], [4, 5]]
AI = A

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

What is a linear transformation in two dimensions?

A

A linear transformation maps a point (x, y) to (x’, y’) using:
x’ = ax + by
y’ = cx + dy
This can be written as a matrix equation:
[[x’], [y’]] = [[a, b], [c, d]] × [[x], [y]]

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

How can you find the image of a shape under a transformation matrix?

A

Write the points of the shape as a matrix, multiply by the transformation matrix, and solve for the resulting points.

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

Example: Find the image of A(3, 1), B(-2, 4), C(5, -1) under the transformation matrix [[2, 3], [-1, 0]].

A
  1. Points matrix: [[3, -2, 5], [1, 4, -1]]
  2. Multiply by the transformation matrix:
    [[2, 3], [-1, 0]] × [[3, -2, 5], [1, 4, -1]]
  3. Result:
    [[9, 8, 7], [-3, 2, -5]]
  4. Image:
    A → (9, -3), B → (8, 2), C → (7, -5)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the transformation matrix for a stretch parallel to the x-axis?

A

[[k, 0], [0, 1]]
scale factor k

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

What is the transformation matrix for a stretch parallel to the y-axis?

A

[[1, 0], [0, k]]
scale factor k

17
Q

What is the transformation matrix for an enlargement centred at the origin?

A

[[k, 0], [0, k]]
scale factor k

18
Q

What is the matrix for a 90° anticlockwise rotation about the origin?

A

[[0, -1], [1, 0]]

19
Q

What is the matrix for a 90° clockwise rotation about the origin?

A

[[0, 1], [-1, 0]]

20
Q

What is the general matrix for an anticlockwise rotation through an angle θ?

A

[[cos(θ), -sin(θ)], [sin(θ), cos(θ)]]

21
Q

Example: Find the matrix for an anticlockwise rotation through 140° about the origin.

A
  1. Use the general rotation matrix:
    [[cos(140°), -sin(140°)], [sin(140°), cos(140°)]]
  2. Approximate values:
    [[-0.766, -0.642], [0.642, -0.766]]
22
Q

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

A

[[1, 0], [0, -1]]

23
Q

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

A

[[-1, 0], [0, 1]]

24
Q

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

A

[[0, 1], [1, 0]]

25
Q

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

A

[[0, -1], [-1, 0]]

26
Q

What is the matrix for a shear parallel to the x-axis with factor k?

A

[[1, k], [0, 1]]

27
Q

What is the matrix for a shear parallel to the y-axis with factor k?

A

[[1, 0], [k, 1]]

28
Q

How are combined transformations represented using matrices?

A

The combined transformation is represented by multiplying the matrices of the individual transformations. Order matters: Apply the rightmost transformation first.

29
Q

Example: Find the matrix for a reflection in the x-axis followed by a 90° anticlockwise rotation.

A
  1. Reflection in x-axis: [[1, 0], [0, -1]].
  2. 90° rotation: [[0, -1], [1, 0]].
  3. Combined: [[0, -1], [1, 0]] × [[1, 0], [0, -1]] = [[0, 1], [1, 0]].
    This represents a reflection in the line y = x.
30
Q

What is an invariant point in a transformation?

A

An invariant point is a point that is mapped to itself by the transformation.

31
Q

What is the condition for finding invariant points in a 2x2 transformation matrix?

A

Solve the matrix equation:
[[a, c], [b, d]] * [[x], [y]] = [[x], [y]].
This results in two equations:
1. ax + cy = x,
2. bx + dy = y.

32
Q

What is the significance of invariant points in transformations?

A

For linear transformations:
- The origin is either the only invariant point.
- Or all invariant points lie on a straight line through the origin.
Finding invariant points can also help determine properties like the mirror line in a reflection.

33
Q

Example: Find the line of invariant points for the matrix [[2, 1], [2, 3]].

A
  1. Solve:
    [[2, 1], [2, 3]] * [[x], [y]] = [[x], [y]].
    This expands to:
    2x + y = x and 2x + 3y = y.
  2. Simplify:
    x + y = 0 (both equations are equivalent).
  3. Solution:
    The line of invariant points is y = -x.
34
Q

What is an invariant line in a transformation?

A

An invariant line is a line that maps to itself under the transformation, but the points on the line are not necessarily invariant points.

35
Q

How do you find invariant lines for a 2x2 transformation matrix?

A
  1. Assume the invariant line is y = mx + c.
  2. Substitute a general point (x, mx + c) into the transformation matrix.
  3. Solve for m and c by ensuring the image satisfies y = mx + c.
36
Q

What is the relationship between invariant points and invariant lines?

A
  • A line of invariant points is also an invariant line.
  • An invariant line is not necessarily a line of invariant points.
37
Q

Example: Find the invariant lines for the matrix [[2, 1], [2, 3]].

A
  1. Assume y = mx + c.
  2. Apply the transformation:
    [[2, 1], [2, 3]] * [[x], [mx + c]].
    This expands to:
    [[2x + mx + c], [2x + 3mx + 3c]].
  3. Ensure the image satisfies y = mx + c:
    2m = m or m = -1.
    If m = 2, c can be any value, giving lines y = 2x + c.
    If m = -1, c must be 0, giving the line y = -x.
38
Q

Example: Find the line of invariant points and invariant lines for the matrix [[2, 1], [2, 3]].

A
  1. Line of invariant points: y = -x.
  2. Invariant lines: y = 2x + c (any c) and y = -x.
39
Q

Why is identifying invariant points and lines useful in transformations?

A

They provide insights into the geometric effects of transformations, such as rotations, reflections, or stretches.