FMAT pure1 matrices and transformations Flashcards
What is a matrix?
A matrix is a rectangular array of numbers arranged in rows and columns. It is used to store information.
How are matrices classified?
Matrices are classified by their dimensions (order), written as m × n:
- m: Number of rows,
- n: Number of columns.
What is a square matrix?
A matrix with the same number of rows and columns (e.g., 3 × 3).
What are the conditions for adding or subtracting matrices?
Matrices must have the same dimensions (order) to be added or subtracted.
Example: Add and subtract matrices A and B where:
A = [[2, 3], [-1, 0]], B = [[3, 4], [-1, -2]].
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 is scalar multiplication of a matrix performed?
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]]
What is the condition for multiplying two matrices?
Matrix multiplication is possible when the number of columns in the first matrix equals the number of rows in the second matrix.
Example: Multiply matrices A and B where:
A = [[1, 2], [3, 4]], B = [[5, 6], [7, 8]]
The product AB is:
AB = [[15 + 27, 16 + 28], [35 + 47, 36 + 48]]
= [[19, 22], [43, 50]]
What are the key properties of matrix multiplication?
- Matrix multiplication is not commutative: AB ≠ BA.
- Matrix multiplication is associative: (AB)C = A(BC).
- Matrix multiplication is distributive over addition: A(B + C) = AB + AC.
What is the identity matrix, and how does it affect multiplication?
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.
Example: Find the product of A and the identity matrix where:
A = [[2, 3], [4, 5]], I = [[1, 0], [0, 1]].
AI = [[21 + 30, 20 + 31], [41 + 50, 40 + 51]]
= [[2, 3], [4, 5]]
AI = A
What is a linear transformation in two dimensions?
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 can you find the image of a shape under a transformation matrix?
Write the points of the shape as a matrix, multiply by the transformation matrix, and solve for the resulting points.
Example: Find the image of A(3, 1), B(-2, 4), C(5, -1) under the transformation matrix [[2, 3], [-1, 0]].
- Points matrix: [[3, -2, 5], [1, 4, -1]]
- Multiply by the transformation matrix:
[[2, 3], [-1, 0]] × [[3, -2, 5], [1, 4, -1]] - Result:
[[9, 8, 7], [-3, 2, -5]] - Image:
A → (9, -3), B → (8, 2), C → (7, -5)
What is the transformation matrix for a stretch parallel to the x-axis?
[[k, 0], [0, 1]]
scale factor k