Matrices can be used to solve linear simultaneous equations by:
Putting the coefficients of each unknown into one square matrix and the unknowns in a columnvector
Putting the solutions of each equation in a columnvector and setting it equal to the coefficientmatrix multiplied by the unknowncolumnvector
Multiplying the inverse of the coefficientmatrix by the solution columnvector to get the solutions to each unknown
If the determinant of a matrix in a simultaneous equation is 0, then there are no unique solutions to the equations
A 2D rotation can be represented in the matrix:
cos(θ)sin(θ)−sin(θ)cos(θ)
A rotation is always anticlockwise, unless specified otherwise
A 2D enlargement with scale factor k is represented in the matrix form:
k00k
A 2D reflection is represented in the following matrix:
x-axis - 100−1
y-axis - −1001
y = x - 1001
y = -x - 0−1−10
The determinant of a transformation matrix tells you the transformation:
Rotation: 1
Reflection: -1
Enlargement: k2
If the determinant is negative then the orientation of the shape is reversed. The determinant also gives us the area scale factor of the transformation
The combined matrix transformation (M) of transformation A then transformation B is given by:
M = BA
(BA)−1 = A−1B−1
A 2D stretch with scale factor k can be represented with the following matrix:
Parallel to x-axis: k001
Parallel to y-axis: 100k
A 2D shear with scale factor k can be represented with the following matrix:
x-axis invariant ((0,1) -> (k,1)): 10k1
y-axis invariant ((0,1) -> (1,k)): 1k01
To find a line of invariant points:
Multiply the transformation matrix by xy
Check that the equations formed make sense
Solve the equations simultaneously
Write the equation of the line of invariant points