Answer:
To find the least expensive place to order 500 pens, 300 pencils, and 150 erasers, we need to compare the total cost of purchasing these items from each merchant.
Let's set up a matrix multiplication problem to calculate the total cost. We'll use the following matrices:
A = [40 40 10] represents the cost of pens, pencils, and erasers from SchoolStuff respectively.
B = [500 300 150] represents the quantity of pens, pencils, and erasers required respectively.
C = [0.06 0.06 0.06] represents the cost of erasers from Office World.
D = [0.03 0.03 0.03] represents the cost of erasers from Desks R Us.
The matrix multiplication problem is:
AB^T + CD^T
where AB^T represents the cost of pens and pencils from SchoolStuff, and CD^T represents the cost of erasers from Office World and Desks R Us.
Calculating the matrices:
AB^T = [40 40 10] * [500 300 150]^T
= [40*500 + 40*300 + 10*150]
= [20000 + 12000 + 1500]
= [33500]
CD^T = [0.06 0.06 0.06] * [150]
= [0.06*150]
= [9]
Adding the results:
AB^T + CD^T = [33500] + [9]
= [33509]
Therefore, the total cost of purchasing 500 pens, 300 pencils, and 150 erasers from SchoolStuff, Office World, and Desks R Us respectively is 33509 cents.
Since SchoolStuff has the lowest total cost, it is the least expensive place to order these items.
Thus, SchoolStuff is the least expensive place to order 500 pens, 300 pencils, and 150 erasers.
Explanation: