CP-3 Matrices — coverage pack

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

CP-3.1 · Add, subtract and multiply conformable matrices. Multiply a matrix by a scalar.

  • Matrices can be added or subtracted only when they have the same order; combine corresponding entries.
  • The product ABAB exists when the number of columns of AA equals the number of rows of BB; each entry is a row-column scalar product.
  • For example, a 2×32\times3 matrix multiplied by a 3×23\times2 matrix gives a 2×22\times2 matrix, while reversing the order gives a 3×33\times3 matrix.
  • A common error is to multiply corresponding entries or assume AB=BAAB=BA; matrix multiplication is generally not commutative.

Tier 1 · Easy

  1. 1. Given A=(2130)A=\begin{pmatrix}2&-1\\3&0\end{pmatrix} and B=(1425)B=\begin{pmatrix}-1&4\\2&5\end{pmatrix}, calculate 2AB2A-B.[2 marks]

    Answer

    • (5645)\begin{pmatrix}5&-6\\4&-5\end{pmatrix}

    Method: 2A=(4260)2A=\begin{pmatrix}4&-2\\6&0\end{pmatrix}. Subtract corresponding entries of BB: 2AB=(4(1)246205)=(5645)2A-B=\begin{pmatrix}4-(-1)&-2-4\\6-2&0-5\end{pmatrix}=\begin{pmatrix}5&-6\\4&-5\end{pmatrix}.

Tier 2 · Standard

  1. 1. Let C=(121032)C=\begin{pmatrix}1&2&-1\\0&3&2\end{pmatrix} and D=(211430)D=\begin{pmatrix}2&1\\-1&4\\3&0\end{pmatrix}. Calculate CDCD and state its order.[4 marks]

    Answer

    • CD=(39312)CD=\begin{pmatrix}-3&9\\3&12\end{pmatrix}, of order 2×22\times2

    Method: CC is 2×32\times3 and DD is 3×23\times2, so CDCD exists and is 2×22\times2. Taking row-column products gives CD=(1(2)+2(1)+(1)31(1)+2(4)+(1)00(2)+3(1)+2(3)0(1)+3(4)+2(0))=(39312)CD=\begin{pmatrix}1(2)+2(-1)+(-1)3&1(1)+2(4)+(-1)0\\0(2)+3(-1)+2(3)&0(1)+3(4)+2(0)\end{pmatrix}=\begin{pmatrix}-3&9\\3&12\end{pmatrix}.

Tier 3 · Hard

  1. 1. Given A=(1230)A=\begin{pmatrix}1&-2\\3&0\end{pmatrix} and B=(p11q)B=\begin{pmatrix}p&1\\-1&q\end{pmatrix}, the matrix AB+2AAB+2A is (89183)\begin{pmatrix}8&-9\\18&3\end{pmatrix}. Determine pp and qq.[4 marks]

    Answer

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

    Method: AB=(p+212q3p3)AB=\begin{pmatrix}p+2&1-2q\\3p&3\end{pmatrix}, so AB+2A=(p+432q3p+63)AB+2A=\begin{pmatrix}p+4&-3-2q\\3p+6&3\end{pmatrix}. Equating entries gives p+4=8p+4=8, so p=4p=4, and 32q=9-3-2q=-9, so q=3q=3. The lower-left entry checks this because 3(4)+6=183(4)+6=18.

CP-3.2 · Understand and use zero and identity matrices.

  • The zero matrix OO has every entry equal to zero and is the additive identity: A+O=AA+O=A for matrices of the same order.
  • The identity matrix II is square, has ones on its leading diagonal and zeros elsewhere, and satisfies AI=IA=AAI=IA=A.
  • Matrix polynomial identities are simplified just like algebraic ones, but each scalar constant is represented by a scalar multiple of II.
  • A common error is to replace II by the scalar 11 or to use an identity matrix of the wrong order.

Tier 1 · Easy

  1. 1. For A=(2103)A=\begin{pmatrix}2&-1\\0&3\end{pmatrix}, write down A+OA+O and IAIA, where OO and II have the appropriate order.[2 marks]

    Answer

    • A+O=IA=(2103)A+O=IA=\begin{pmatrix}2&-1\\0&3\end{pmatrix}

    Method: The 2×22\times2 zero matrix leaves AA unchanged under addition, and the 2×22\times2 identity leaves AA unchanged under multiplication. Hence both results equal AA.

Tier 2 · Standard

  1. 1. Let A=(1102)A=\begin{pmatrix}1&1\\0&2\end{pmatrix}. Verify that (AI)(A2I)=O(A-I)(A-2I)=O and hence state a quadratic matrix equation satisfied by AA.[3 marks]

    Answer

    • A23A+2I=OA^2-3A+2I=O

    Method: AI=(0101)A-I=\begin{pmatrix}0&1\\0&1\end{pmatrix} and A2I=(1100)A-2I=\begin{pmatrix}-1&1\\0&0\end{pmatrix}. Their product is OO. Expanding (AI)(A2I)(A-I)(A-2I) gives A23A+2IA^2-3A+2I, so A23A+2I=OA^2-3A+2I=O.

Tier 3 · Hard

  1. 1. A square matrix MM satisfies M2=3M+2IM^2=3M+2I. Without finding the entries of MM, simplify M34M2+MM^3-4M^2+M.[4 marks]

    Answer

    • 2I-2I

    Method: Multiply the given identity by MM: M3=3M2+2M=3(3M+2I)+2M=11M+6IM^3=3M^2+2M=3(3M+2I)+2M=11M+6I. Therefore M34M2+M=(11M+6I)4(3M+2I)+M=2IM^3-4M^2+M=(11M+6I)-4(3M+2I)+M=-2I.

CP-3.3 · Use matrices to represent linear transformations in 2-D. Successive transformations. Single transformations in 3-D.

  • For a linear transformation, the columns of its matrix are the images of the standard basis vectors.
  • If transformation AA is followed by transformation BB, the combined matrix is BABA, because xAxBAx\mathbf{x}\mapsto A\mathbf{x}\mapsto BA\mathbf{x}.
  • In three dimensions, use a 3×33\times3 matrix acting on (xyz)\begin{pmatrix}x\\y\\z\end{pmatrix}; the specification confines 3-D transformations to reflection in one of the planes x=0x=0, y=0y=0, z=0z=0 or rotation about one of the coordinate axes — for example, negating zz reflects points in the plane z=0z=0.
  • A common error is to reverse the order of multiplication for successive transformations.

Tier 1 · Easy

  1. 1. The matrix R=(0110)R=\begin{pmatrix}0&-1\\1&0\end{pmatrix} acts on the point P(3,2)P(3,-2). Find the image of PP and describe the transformation.[2 marks]

    Answer

    • P=(2,3)P'=(2,3)
    • Rotation through 9090^\circ anticlockwise about the origin

    Method: R(32)=(23)R\begin{pmatrix}3\\-2\end{pmatrix}=\begin{pmatrix}2\\3\end{pmatrix}. The basis vector (10)\begin{pmatrix}1\\0\end{pmatrix} maps to (01)\begin{pmatrix}0\\1\end{pmatrix}, identifying a 9090^\circ anticlockwise rotation about the origin.

Tier 2 · Standard

  1. 1. A reflection in the line y=xy=x is followed by a stretch parallel to the xx-axis with scale factor 22. Find the matrix of the combined transformation and the image of (2,1)(2,-1).[4 marks]

    Answer

    • (0210)\begin{pmatrix}0&2\\1&0\end{pmatrix}
    • Image (2,2)(-2,2)

    Method: The reflection matrix is R=(0110)R=\begin{pmatrix}0&1\\1&0\end{pmatrix} and the stretch matrix is S=(2001)S=\begin{pmatrix}2&0\\0&1\end{pmatrix}. Since the reflection occurs first, the combined matrix is SR=(0210)SR=\begin{pmatrix}0&2\\1&0\end{pmatrix}. Multiplying by (21)\begin{pmatrix}2\\-1\end{pmatrix} gives (22)\begin{pmatrix}-2\\2\end{pmatrix}.

Tier 3 · Hard

  1. 1. A transformation in three dimensions maps (x,y,z)(x,y,z) to (x,z,y)(x,-z,y). Write down its matrix, find the image of (2,1,4)(2,-1,4), and explain geometrically what the transformation does.[4 marks]

    Answer

    • (100001010)\begin{pmatrix}1&0&0\\0&0&-1\\0&1&0\end{pmatrix}
    • Image (2,4,1)(2,-4,-1)
    • Rotation through 9090^\circ about the xx-axis (taking the positive yy-axis to the positive zz-axis)

    Method: The images of the basis vectors form the columns: (100)(100)\begin{pmatrix}1\\0\\0\end{pmatrix}\mapsto\begin{pmatrix}1\\0\\0\end{pmatrix}, (010)(001)\begin{pmatrix}0\\1\\0\end{pmatrix}\mapsto\begin{pmatrix}0\\0\\1\end{pmatrix}, (001)(010)\begin{pmatrix}0\\0\\1\end{pmatrix}\mapsto\begin{pmatrix}0\\-1\\0\end{pmatrix}, giving T=(100001010)T=\begin{pmatrix}1&0&0\\0&0&-1\\0&1&0\end{pmatrix}. Thus T(214)=(241)T\begin{pmatrix}2\\-1\\4\end{pmatrix}=\begin{pmatrix}2\\-4\\-1\end{pmatrix}. Every point on the xx-axis is fixed and the yy-axis maps onto the zz-axis, so this is a rotation through 9090^\circ about the xx-axis.

CP-3.4 · Find invariant points and lines for a linear transformation.

  • An invariant point with position vector x\mathbf{x} satisfies Ax=xA\mathbf{x}=\mathbf{x}, so solve (AI)x=0(A-I)\mathbf{x}=\mathbf{0}.
  • An invariant line is mapped onto itself as a set; its individual points need not all remain fixed.
  • For a line y=mx+cy=mx+c, transform a general point (x,mx+c)(x,mx+c) and require the image (X,Y)(X,Y) to satisfy Y=mX+cY=mX+c for every xx.
  • A common error is to test only one point on a proposed invariant line or to confuse an invariant line with a line of invariant points.

Tier 1 · Easy

  1. 1. Find all invariant points of the transformation with matrix A=(1003)A=\begin{pmatrix}1&0\\0&3\end{pmatrix}.[3 marks]

    Answer

    • All points (x,0)(x,0) on the xx-axis

    Method: Set A(xy)=(xy)A\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}x\\y\end{pmatrix}. This gives x=xx=x and 3y=y3y=y, so 2y=02y=0 and y=0y=0. Hence every point (x,0)(x,0) is invariant.

Tier 2 · Standard

  1. 1. Find the invariant lines through the origin for the transformation with matrix B=(2101)B=\begin{pmatrix}2&1\\0&1\end{pmatrix}.[4 marks]

    Answer

    • y=0y=0 and y=xy=-x

    Method: A point (x,mx)(x,mx) maps to ((2+m)x,mx)((2+m)x,mx). For the image to remain on y=mxy=m x, require mx=m(2+m)xmx=m(2+m)x. Thus m=0m=0 or 1=2+m1=2+m, giving m=1m=-1. The line x=0x=0 is not invariant because (0,y)(0,y) maps to (y,y)(y,y). Therefore the invariant lines are y=0y=0 and y=xy=-x.

Tier 3 · Hard

  1. 1. The transformation TT maps (x,y)(x,y) to (x+y,2y)(x+y,2y). Find all invariant straight lines and identify any line consisting entirely of invariant points.[6 marks]

    Answer

    • y=0y=0 and the family y=x+cy=x+c, where cc is any real constant
    • y=0y=0 consists entirely of invariant points

    Method: Take y=mx+cy=mx+c. Then X=(1+m)x+cX=(1+m)x+c and Y=2mx+2cY=2mx+2c. Requiring Y=mX+cY=mX+c for every xx gives 2m=m(1+m)2m=m(1+m) and 2c=mc+c2c=mc+c. Hence either m=0,c=0m=0,c=0, giving y=0y=0, or m=1m=1 with any cc, giving y=x+cy=x+c. No vertical line is invariant because X=x+yX=x+y varies with yy. On y=0y=0, (x,0)(x,0) maps to itself, so this is a line of invariant points; points on y=x+cy=x+c are generally moved along the line.

CP-3.5 · Calculate determinants of 2x2 and 3x3 matrices and interpret as scale factors, including the effect on orientation.

  • For A=(abcd)A=\begin{pmatrix}a&b\\c&d\end{pmatrix}, detA=adbc\det A=ad-bc; a 3×33\times3 determinant can be found by cofactor expansion or row reduction.
  • In two dimensions, areas are multiplied by detA|\det A|; in three dimensions, volumes are multiplied by detA|\det A|.
  • The sign is geometric: a negative determinant reverses orientation, while a positive determinant preserves it.
  • A common error is to use the signed determinant as a negative area or volume instead of taking its absolute value for size.

Tier 1 · Easy

  1. 1. A planar transformation has matrix A=(1423)A=\begin{pmatrix}1&4\\2&3\end{pmatrix}. A region has area 1212 before transformation. Find its image area and state what happens to orientation.[3 marks]

    Answer

    • Image area =60=60
    • Orientation is reversed

    Method: detA=1(3)4(2)=5\det A=1(3)-4(2)=-5. The area scale factor is 5=5|-5|=5, so the image area is 12×5=6012\times5=60. The negative determinant means orientation is reversed.

Tier 2 · Standard

  1. 1. Calculate the determinant of M=(120131201)M=\begin{pmatrix}1&2&0\\-1&3&1\\2&0&1\end{pmatrix}. Hence state the volume scale factor and the effect on orientation.[4 marks]

    Answer

    • detM=9\det M=9
    • Volume scale factor 99
    • Orientation is preserved

    Method: Expanding along the first row, detM=1310121121=32(3)=9\det M=1\begin{vmatrix}3&1\\0&1\end{vmatrix}-2\begin{vmatrix}-1&1\\2&1\end{vmatrix}=3-2(-3)=9. Therefore volumes are multiplied by 9=9|9|=9, and the positive sign preserves orientation.

Tier 3 · Hard

  1. 1. A transformation has matrix P=(k23k1)P=\begin{pmatrix}k&2\\3&k-1\end{pmatrix}. A triangle of area 77 is mapped to a triangle of area 4242. Determine all possible values of kk and state which values reverse orientation.[5 marks]

    Answer

    • k=3,0,1,4k=-3,0,1,4
    • Orientation is reversed for k=0k=0 and k=1k=1

    Method: The area scale factor is 42/7=642/7=6, so detP=6|\det P|=6. Now detP=k(k1)6=k2k6\det P=k(k-1)-6=k^2-k-6. Solving k2k6=6k^2-k-6=6 gives k2k12=0k^2-k-12=0, so k=4k=4 or 3-3. Solving k2k6=6k^2-k-6=-6 gives k(k1)=0k(k-1)=0, so k=0k=0 or 11. The determinant is negative in the second case, so k=0,1k=0,1 reverse orientation.

CP-3.6 · Understand and use singular and non-singular matrices. Properties of inverse matrices. Calculate and use the inverse of non-singular 2x2 and 3x3 matrices.

  • A square matrix is singular when its determinant is zero; otherwise it is non-singular and has a unique inverse.
  • For a non-singular 2×22\times2 matrix, use the determinant formula; for a 3×33\times3 matrix, row-reduce (AI)(A\mid I) to (IA1)(I\mid A^{-1}) or use A1=1detAadjAA^{-1}=\frac1{\det A}\operatorname{adj}A.
  • Inverse products reverse order: (AB)1=B1A1(AB)^{-1}=B^{-1}A^{-1}, and AA1=A1A=IAA^{-1}=A^{-1}A=I.
  • A common error is to divide every entry by the determinant without interchanging the diagonal entries and changing the signs of the off-diagonal entries.

Tier 1 · Easy

  1. 1. Show that A=(3121)A=\begin{pmatrix}3&1\\2&1\end{pmatrix} is non-singular and find A1A^{-1}.[3 marks]

    Answer

    • A1=(1123)A^{-1}=\begin{pmatrix}1&-1\\-2&3\end{pmatrix}

    Method: detA=3(1)1(2)=10\det A=3(1)-1(2)=1\ne0, so AA is non-singular. Hence A1=11(1123)A^{-1}=\frac1{1}\begin{pmatrix}1&-1\\-2&3\end{pmatrix}.

Tier 2 · Standard

  1. 1. Find the inverse of C=(110011101)C=\begin{pmatrix}1&1&0\\0&1&1\\1&0&1\end{pmatrix}.[5 marks]

    Answer

    • C1=12(111111111)C^{-1}=\frac12\begin{pmatrix}1&-1&1\\1&1&-1\\-1&1&1\end{pmatrix}

    Method: detC=2\det C=2. The signed minors give the cofactor matrix (111111111)\begin{pmatrix}1&1&-1\\-1&1&1\\1&-1&1\end{pmatrix}, so adjC=(111111111)\operatorname{adj}C=\begin{pmatrix}1&-1&1\\1&1&-1\\-1&1&1\end{pmatrix}. Hence C1=1detCadjC=12(111111111)C^{-1}=\frac1{\det C}\operatorname{adj}C=\frac12\begin{pmatrix}1&-1&1\\1&1&-1\\-1&1&1\end{pmatrix}. Multiplying by CC gives II.

Tier 3 · Hard

  1. 1. The matrix D=(2132)D=\begin{pmatrix}2&1\\3&2\end{pmatrix} satisfies D24D+I=OD^2-4D+I=O. Use this identity, rather than the 2×22\times2 inverse formula, to find D1D^{-1}.[4 marks]

    Answer

    • D1=(2132)D^{-1}=\begin{pmatrix}2&-1\\-3&2\end{pmatrix}

    Method: From D24D+I=OD^2-4D+I=O, rearrange to D(4ID)=ID(4I-D)=I. Since the same expression is a polynomial in DD, (4ID)D=I(4I-D)D=I as well. Therefore D1=4ID=(2132)D^{-1}=4I-D=\begin{pmatrix}2&-1\\-3&2\end{pmatrix}.

CP-3.7 · Solve three linear simultaneous equations in three variables by use of the inverse matrix.

  • Write three simultaneous equations as Ax=bA\mathbf{x}=\mathbf{b}, keeping coefficients, variables and constants in a consistent order.
  • When AA is non-singular, left-multiply by A1A^{-1} to obtain x=A1b\mathbf{x}=A^{-1}\mathbf{b}.
  • For example, the rows of AA contain the coefficients of x,y,zx,y,z, while b\mathbf{b} contains the three right-hand sides.
  • A common error is to write x=bA1\mathbf{x}=\mathbf{b}A^{-1}; column vectors require multiplication by A1A^{-1} on the left.

Tier 1 · Easy

  1. 1. A system is written as A(xyz)=(426)A\begin{pmatrix}x\\y\\z\end{pmatrix}=\begin{pmatrix}4\\2\\6\end{pmatrix}, where A1=12(111111111)A^{-1}=\frac12\begin{pmatrix}1&-1&1\\1&1&-1\\-1&1&1\end{pmatrix}. Find x,y,zx,y,z.[3 marks]

    Answer

    • x=4x=4, y=0y=0, z=2z=2

    Method: (xyz)=A1(426)=12(42+64+264+2+6)=(402)\begin{pmatrix}x\\y\\z\end{pmatrix}=A^{-1}\begin{pmatrix}4\\2\\6\end{pmatrix}=\frac12\begin{pmatrix}4-2+6\\4+2-6\\-4+2+6\end{pmatrix}=\begin{pmatrix}4\\0\\2\end{pmatrix}.

Tier 2 · Standard

  1. 1. Use an inverse matrix to solve x+2y=5x+2y=5, y+z=4y+z=4 and z=3z=3.[5 marks]

    Answer

    • x=3x=3, y=1y=1, z=3z=3

    Method: The system is Ax=bA\mathbf{x}=\mathbf{b} with A=(120011001)A=\begin{pmatrix}1&2&0\\0&1&1\\0&0&1\end{pmatrix} and b=(543)\mathbf{b}=\begin{pmatrix}5\\4\\3\end{pmatrix}. Row reduction gives A1=(122011001)A^{-1}=\begin{pmatrix}1&-2&2\\0&1&-1\\0&0&1\end{pmatrix}. Thus x=A1b=(58+6433)=(313)\mathbf{x}=A^{-1}\mathbf{b}=\begin{pmatrix}5-8+6\\4-3\\3\end{pmatrix}=\begin{pmatrix}3\\1\\3\end{pmatrix}.

Tier 3 · Hard

  1. 1. The equations x+y=px+y=p, y+z=5y+z=5 and 2z=82z=8 have a solution satisfying x+y=zx+y=z. Use an inverse matrix to determine pp and the solution.[6 marks]

    Answer

    • p=4p=4
    • (x,y,z)=(3,1,4)(x,y,z)=(3,1,4)

    Method: Write Tx=(p58)T\mathbf{x}=\begin{pmatrix}p\\5\\8\end{pmatrix} with T=(110011002)T=\begin{pmatrix}1&1&0\\0&1&1\\0&0&2\end{pmatrix}. Its inverse is T1=(111/2011/2001/2)T^{-1}=\begin{pmatrix}1&-1&1/2\\0&1&-1/2\\0&0&1/2\end{pmatrix}. Therefore (x,y,z)=(p1,1,4)(x,y,z)=(p-1,1,4). The condition x+y=zx+y=z gives (p1)+1=4(p-1)+1=4, so p=4p=4 and the solution is (3,1,4)(3,1,4).

CP-3.8 · Interpret geometrically the solution and failure of solution of three simultaneous linear equations.

  • Each linear equation in x,y,zx,y,z represents a plane in three-dimensional space.
  • A unique solution is one point common to all three planes; infinitely many solutions arise when the planes share a common line (a sheaf) or are coincident.
  • No solution means there is no point common to all three planes — the planes form a prism or are otherwise inconsistent, often because one equation contradicts a linear combination of the others.
  • A common error is to say that a singular coefficient matrix always means no solution; it may instead give infinitely many solutions.

Tier 1 · Easy

  1. 1. Interpret geometrically the solution of the three equations x=1x=1, y=2y=2 and z=3z=-3.[2 marks]

    Answer

    • The three planes meet at the single point (1,2,3)(1,2,-3)

    Method: Each equation fixes one coordinate and represents a plane parallel to a coordinate plane. All three conditions hold only at (1,2,3)(1,2,-3), so the planes have one common point and the solution is unique.

Tier 2 · Standard

  1. 1. Consider x+y+z=1x+y+z=1, 2x+2y+2z=k2x+2y+2z=k and xy+z=3x-y+z=3. Describe the solution set geometrically when k=2k=2 and when k2k\ne2.[4 marks]

    Answer

    • For k=2k=2, there are infinitely many solutions on a common line
    • For k2k\ne2, there is no common point

    Method: The left side of the second equation is twice the left side of the first. If k=2k=2, the first two planes coincide, and this plane meets the third plane in a line, giving infinitely many solutions. If k2k\ne2, the first two planes are distinct and parallel, so no point can satisfy both and the system has no solution.

Tier 3 · Hard

  1. 1. The planes x+y+z=2x+y+z=2, 2xy+z=12x-y+z=1 and 3x+2z=k3x+2z=k are given. Determine the value of kk for which the three planes contain a common line. State what happens for every other value of kk.[5 marks]

    Answer

    • k=3k=3 gives a common line and infinitely many solutions
    • For k3k\ne3 there is no common point

    Method: Adding the first two equations gives 3x+2z=33x+2z=3. Therefore, when k=3k=3, the third equation is the sum of the first two and contains their line of intersection, so all three planes share that line. When k3k\ne3, any point on the first two planes must satisfy 3x+2z=33x+2z=3 and so cannot lie on the third plane; there is no common point.