M Matrix Transformations (all calculations restricted to 2x2 or 2x1 matrices) — coverage pack

4 specification leaves · notes, questions, answers and worked methods

M1 · Multiplication of matrices (2x2 by 2x2 or by 2x1), and multiplication by a scalar

  • A scalar multiplies every entry of a matrix.
  • For matrix multiplication, combine each row of the first matrix with each column of the second using multiply-then-add.
  • The product ABAB is defined when the number of columns of AA equals the number of rows of BB; here calculations use only 2×22\times2 and 2×12\times1 matrices.
  • Matrix multiplication is order-sensitive: in general ABBAAB\ne BA.

Tier 1 · Easy

  1. 1. Work out 3(2104)3\begin{pmatrix}2&-1\\0&4\end{pmatrix}.[1 mark]

    Answer

    • (63012)\begin{pmatrix}6&-3\\0&12\end{pmatrix}

    Method: Multiply every entry by 33: 3(2)=63(2)=6, 3(1)=33(-1)=-3, 3(0)=03(0)=0 and 3(4)=123(4)=12.

Tier 2 · Standard

  1. 1. Work out (2134)(52)\begin{pmatrix}2&-1\\3&4\end{pmatrix}\begin{pmatrix}5\\-2\end{pmatrix}.[2 marks]

    Answer

    • (127)\begin{pmatrix}12\\7\end{pmatrix}

    Method: The top entry is 2(5)+(1)(2)=122(5)+(-1)(-2)=12. The bottom entry is 3(5)+4(2)=73(5)+4(-2)=7. Therefore the product is (127)\begin{pmatrix}12\\7\end{pmatrix}.

Tier 3 · Hard

  1. 1. Given (p21q)(3124)=(135911)\begin{pmatrix}p&2\\1&q\end{pmatrix}\begin{pmatrix}3&-1\\2&4\end{pmatrix}=\begin{pmatrix}13&5\\9&11\end{pmatrix}, work out pp and qq.[4 marks]

    Answer

    • p=3p=3, q=3q=3

    Method: Multiplication gives (3p+4p+83+2q1+4q)\begin{pmatrix}3p+4&-p+8\\3+2q&-1+4q\end{pmatrix}. From 3p+4=133p+4=13, p=3p=3; this also gives p+8=5-p+8=5. From 3+2q=93+2q=9, q=3q=3; this also gives 1+4q=11-1+4q=11.

M2 · The identity matrix I (2x2 only)

  • The 2×22\times2 identity matrix is I=(1001)I=\begin{pmatrix}1&0\\0&1\end{pmatrix}.
  • It leaves a compatible matrix unchanged: AI=IA=AAI=IA=A.
  • For a column vector, multiplying by II leaves the represented point unchanged.
  • Do not confuse the identity matrix with the zero matrix; its diagonal entries are 11.

Tier 1 · Easy

  1. 1. Write down the 2×22\times2 identity matrix II.[1 mark]

    Answer

    • I=(1001)I=\begin{pmatrix}1&0\\0&1\end{pmatrix}

    Method: Place 11s on the main diagonal and 00s elsewhere: I=(1001)I=\begin{pmatrix}1&0\\0&1\end{pmatrix}.

Tier 2 · Standard

  1. 1. Let A=(2351)A=\begin{pmatrix}2&-3\\5&1\end{pmatrix}. Work out both AIAI and IAIA.[2 marks]

    Answer

    • AI=IA=(2351)AI=IA=\begin{pmatrix}2&-3\\5&1\end{pmatrix}

    Method: Multiplying on the right by II preserves the columns of AA, so AI=AAI=A. Multiplying on the left preserves its rows, so IA=AIA=A. Direct row-by-column multiplication gives (2351)\begin{pmatrix}2&-3\\5&1\end{pmatrix} both times.

Tier 3 · Hard

  1. 1. Let P=(0110)P=\begin{pmatrix}0&1\\1&0\end{pmatrix}. Show that P2=IP^2=I and hence work out P17P^{17}.[3 marks]

    Answer

    • P2=IP^2=I
    • P17=(0110)P^{17}=\begin{pmatrix}0&1\\1&0\end{pmatrix}

    Method: P2=(0110)(0110)=(1001)=IP^2=\begin{pmatrix}0&1\\1&0\end{pmatrix}\begin{pmatrix}0&1\\1&0\end{pmatrix}=\begin{pmatrix}1&0\\0&1\end{pmatrix}=I. Therefore P17=(P2)8P=I8P=PP^{17}=(P^2)^8P=I^8P=P.

M3 · Transformations of the unit square in the x-y plane, represented by a 2x2 matrix (rotations of 90/180/270 about the origin, reflections in x=0, y=0, y=x, y=-x, enlargements centred on the origin)

  • The columns of a transformation matrix are the images of (10)\begin{pmatrix}1\\0\end{pmatrix} and (01)\begin{pmatrix}0\\1\end{pmatrix} respectively.
  • Standard matrices should be linked to rotations about the origin, reflections in x=0x=0, y=0y=0, y=xy=x or y=xy=-x, and enlargements centred at the origin.
  • To transform a point (x,y)(x,y), multiply the matrix by the column vector (xy)\begin{pmatrix}x\\y\end{pmatrix}.
  • When describing a transformation, give its type and all defining details: angle and direction, mirror line, or scale factor and centre.

Tier 1 · Easy

  1. 1. Write down the matrix for a rotation of 9090^\circ anticlockwise about the origin.[2 marks]

    Answer

    • (0110)\begin{pmatrix}0&-1\\1&0\end{pmatrix}

    Method: The vector (10)\begin{pmatrix}1\\0\end{pmatrix} maps to (01)\begin{pmatrix}0\\1\end{pmatrix} and (01)\begin{pmatrix}0\\1\end{pmatrix} maps to (10)\begin{pmatrix}-1\\0\end{pmatrix}. These images form the columns of (0110)\begin{pmatrix}0&-1\\1&0\end{pmatrix}.

Tier 2 · Standard

  1. 1. Describe fully the transformation represented by (1001)\begin{pmatrix}-1&0\\0&1\end{pmatrix} and work out the image of (4,3)(4,-3).[3 marks]

    Answer

    • Reflection in the line x=0x=0
    • Image: (4,3)(-4,-3)

    Method: The matrix changes xx to x-x and leaves yy unchanged, so it is reflection in the yy-axis, whose equation is x=0x=0. Multiplying by (43)\begin{pmatrix}4\\-3\end{pmatrix} gives (43)\begin{pmatrix}-4\\-3\end{pmatrix}.

Tier 3 · Hard

  1. 1. A transformation maps (10)\begin{pmatrix}1\\0\end{pmatrix} to (01)\begin{pmatrix}0\\-1\end{pmatrix} and (01)\begin{pmatrix}0\\1\end{pmatrix} to (10)\begin{pmatrix}-1\\0\end{pmatrix}. Write its matrix, describe the transformation fully, and find the image of (3,2)(3,-2).[4 marks]

    Answer

    • (0110)\begin{pmatrix}0&-1\\-1&0\end{pmatrix}
    • Reflection in the line y=xy=-x
    • Image: (2,3)(2,-3)

    Method: The two given image vectors are the columns, so the matrix is (0110)\begin{pmatrix}0&-1\\-1&0\end{pmatrix}. It sends (x,y)(x,y) to (y,x)(-y,-x), which is reflection in y=xy=-x. Multiplying it by (32)\begin{pmatrix}3\\-2\end{pmatrix} gives (23)\begin{pmatrix}2\\-3\end{pmatrix}.

M4 · Combination of transformations using matrix multiplication

  • If matrix AA acts first and matrix BB acts second, the combined matrix is BABA.
  • Multiply transformation matrices using the usual row-by-column rule; order matters because generally ABBAAB\ne BA.
  • A combined matrix may simplify to a familiar single transformation, which should be described fully when requested.
  • A common error is to write matrices in the order transformations are stated rather than in reverse action order.

Tier 1 · Easy

  1. 1. A reflection in the xx-axis is followed by a reflection in the yy-axis. Work out the combined matrix.[2 marks]

    Answer

    • (1001)\begin{pmatrix}-1&0\\0&-1\end{pmatrix}

    Method: The matrices are Rx=(1001)R_x=\begin{pmatrix}1&0\\0&-1\end{pmatrix} and Ry=(1001)R_y=\begin{pmatrix}-1&0\\0&1\end{pmatrix}. Since RxR_x acts first, calculate RyRx=(1001)R_yR_x=\begin{pmatrix}-1&0\\0&-1\end{pmatrix}.

Tier 2 · Standard

  1. 1. Matrix AA rotates points 9090^\circ anticlockwise about the origin. Matrix BB reflects points in the xx-axis. Transformation AA acts before transformation BB. Work out the combined matrix and describe its effect.[3 marks]

    Answer

    • (0110)\begin{pmatrix}0&-1\\-1&0\end{pmatrix}
    • Reflection in the line y=xy=-x

    Method: Let A=(0110)A=\begin{pmatrix}0&-1\\1&0\end{pmatrix} be the rotation and B=(1001)B=\begin{pmatrix}1&0\\0&-1\end{pmatrix} the reflection. The combined matrix is BA=(0110)BA=\begin{pmatrix}0&-1\\-1&0\end{pmatrix}. This sends (x,y)(x,y) to (y,x)(-y,-x), so it is reflection in y=xy=-x.

Tier 3 · Hard

  1. 1. A point is reflected in y=xy=x, enlarged by scale factor 33 about the origin, then rotated 9090^\circ clockwise about the origin. Work out the combined matrix, describe its geometric effect, and find the image of (2,1)(-2,1).[4 marks]

    Answer

    • (3003)\begin{pmatrix}3&0\\0&-3\end{pmatrix}
    • Enlargement by scale factor 33 about the origin combined with reflection in the xx-axis
    • Image: (6,3)(-6,-3)

    Method: Use S=(0110)S=\begin{pmatrix}0&1\\1&0\end{pmatrix}, E=(3003)E=\begin{pmatrix}3&0\\0&3\end{pmatrix} and R=(0110)R=\begin{pmatrix}0&1\\-1&0\end{pmatrix}. The action order gives RES=(3003)RES=\begin{pmatrix}3&0\\0&-3\end{pmatrix}. It sends (x,y)(x,y) to (3x,3y)(3x,-3y), an enlargement by factor 33 with reflection in the xx-axis. Applied to (2,1)(-2,1) it gives (6,3)(-6,-3).