A school tuck shop records the number of sandwiches (S), rolls (R) and wraps (W) sold on Monday and Tuesday. Monday sales: M = [[12, 8, 5]], Tuesday sales: T = [[15, 6, 9]] (1×3 row matrices). Selling prices: sandwich ₹30, roll ₹20, wrap ₹25, stored as column matrix P = [[30], [20], [25]].
A school tuck shop records the number of sandwiches (S), rolls (R) and wraps (W) sold on Monday and Tuesday in a matrix. The sales matrix for Monday is M = [[12, 8, 5]] and for Tuesday is T = [[15, 6, 9]] (each a 1×3 row matrix representing [S, R, W]).
The selling prices (in ₹) of a sandwich, a roll and a wrap are ₹30, ₹20 and ₹25 respectively, stored in a column matrix P = [[30], [20], [25]].
(i) Write down the combined sales matrix C = M + T and state its order. [1]
(ii) Using matrix multiplication, find the total revenue collected on Monday alone. [1]
(iii) Find the total revenue collected over both days combined, using the matrix C found in part (i). [2]
Show answerHide answer
Combined sales matrix:
C = M + T = [12 + 15, 8 + 6, 5 + 9] = [27, 14, 14]
∴ C = [27 14 14], which is a matrix of order 1×3.
(ii)
Total revenue on Monday = M × P
= [12 8 5] × [[30], [20], [25]]
= (12 × 30) + (8 × 20) + (5 × 25)
= 360 + 160 + 125
∴ Total revenue on Monday = ₹645
(iii)
Total revenue over both days = C × P
= [27 14 14] × [[30], [20], [25]]
= (27 × 30) + (14 × 20) + (14 × 25)
= 810 + 280 + 350
∴ Total revenue over both days = ₹1440