Practice Maths

Matrices — Topic Review — Solutions

15 questions covering all Matrices sub-topics: notation, operations, multiplication, determinants, inverses and solving systems. Click Show Solution to reveal full working.

  1. Fluency

    Matrix M =

    1 5 −3
    4 0 2
    . (a) State the order of M. (b) Identify element m12. (c) Identify element m23.

    (a) M has 2 rows and 3 columns: order 2 × 3

    (b) m12 = element in row 1, column 2 = 5

    (c) m23 = element in row 2, column 3 = 2

  2. Fluency

    Calculate 2A − B where A =

    3−1
    02
    and B =
    14
    −21

    2A =

    6−2
    04

    2A − B =

    6−1−2−4
    0−(−2)4−1
    =
    5−6
    23

  3. Fluency

    Find AB where A =

    21
    03
    and B =
    12
    4−1

    Row 1 of A times columns of B:
    c11 = 2(1)+1(4) = 6   c12 = 2(2)+1(−1) = 3
    c21 = 0(1)+3(4) = 12   c22 = 0(2)+3(−1) = −3

    AB =

    63
    12−3

  4. Fluency

    Find det(A) for A =

    52
    31

    det(A) = 5×1 − 2×3 = 5 − 6 = −1

  5. Fluency

    Find A−1 for A =

    31
    52

    det(A) = 3×2 − 1×5 = 6 − 5 = 1

    A−1 = (1/1)

    2−1
    −53

  6. Understanding

    Explain why the matrix

    24
    12
    has no inverse. What does this mean when using the matrix method to solve a system?

    det = 2×2 − 4×1 = 4 − 4 = 0. A matrix with determinant 0 is singular and has no inverse. When this is the coefficient matrix for a system of equations, the matrix method cannot be used — the system either has no solution (inconsistent parallel lines) or infinitely many solutions (coincident lines).

  7. Understanding

    Find the value of k such that

    k3
    2k
    is singular.

    For a singular matrix, det = 0: k×k − 3×2 = 0 → k2 − 6 = 0 → k2 = 6 → k = ±√6 ≈ ±2.449

  8. Understanding

    Solve using the matrix inverse method:
    3x + y = 7
    x + y = 3

    A =

    31
    11
    ,  B =
    7
    3

    det(A) = 3 − 1 = 2.   A−1 = ½

    1−1
    −13

    X = ½

    7−3
    −7+9
    = ½
    4
    2
    =
    2
    1

    x = 2, y = 1

  9. Understanding

    A 2×2 matrix P has det(P) = 4. What is det(2P)?

    For a 2×2 matrix, det(kP) = k2 × det(P).

    det(2P) = 22 × 4 = 4 × 4 = 16

    Reason: Each element of P is multiplied by 2. The determinant formula ad − bc contains each element exactly once, but since there are 2 elements being scaled in each product, the overall determinant is multiplied by k2 = 4.

  10. Understanding

    A store tracks stock of 2 products across 2 branches. Opening stock matrix S =

    3020
    1525
    . Sales matrix =
    128
    510
    . Find closing stock. Rows = Products A, B. Columns = Branches 1, 2.

    Closing stock = S − Sales =

    30−1220−8
    15−525−10
    =
    1812
    1015

    Product A: Branch 1 has 18, Branch 2 has 12. Product B: Branch 1 has 10, Branch 2 has 15.

  11. Understanding

    Find AB and BA for A =

    10
    21
    and B =
    21
    03
    . Is AB = BA?

    AB: c11=2, c12=1, c21=4+0=4, c22=2+3=5 →

    21
    45

    BA: c11=2+2=4, c12=0+1=1, c21=0+6=6, c22=0+3=3 →

    41
    63

    AB ≠ BA — matrix multiplication is not commutative in general.

  12. Problem Solving

    Solve using the matrix method, then verify by substitution:
    2x − y = 3
    x + 2y = 9

    A =

    2−1
    12
    ,  B =
    3
    9

    det(A) = 4 − (−1) = 5

    A−1 = ⅕

    21
    −12

    X = ⅕

    6+9
    −3+18
    = ⅕
    15
    15
    =
    3
    3

    x = 3, y = 3. Verify: 2(3)−3=3 ✓ and 3+2(3)=9 ✓

  13. Problem Solving

    An event sells adult tickets ($12) and child tickets ($7). 80 tickets were sold for $760. Set up a matrix equation and solve to find how many of each ticket type were sold.

    Let a = adult tickets, c = child tickets.

    System: a + c = 80 and 12a + 7c = 760

    A =

    11
    127

    det(A) = 7 − 12 = −5

    A−1 = −⅕

    7−1
    −121

    X = −⅕

    560 − 760
    −960 + 760
    = −⅕
    −200
    −200
    =
    40
    40

    40 adult and 40 child tickets. Check: 40+40=80 ✓ and 12(40)+7(40)=480+280=760 ✓

  14. Problem Solving

    Given A =

    a2
    13
    and det(A) = 4, find a. Then write down A−1.

    det(A) = 3a − 2(1) = 3a − 2 = 4 → 3a = 6 → a = 2

    A =

    22
    13

    A−1 = ¼

    3−2
    −12

  15. Problem Solving

    A coding matrix E =

    11
    01
    encodes message M =
    5
    3
    . (a) Find the encoded message EM. (b) The inverse of E is E−1 =
    1−1
    01
    . Decode the message
    9
    4
    .

    (a) EM =

    11
    01
    5
    3
    =
    5+3
    0+3
    =
    8
    3

    (b) Apply E−1 to the encoded message:

    1−1
    01
    9
    4
    =
    9−4
    0+4
    =
    5
    4

    Decoded message is [5, 4].