Question

Difficulty: HardMatrices and Matrix Operations

A retail electronics store sells two models of wireless headphones: Solo, which sells for 80,andStudio,whichsellsfor80, and Studio, which sells for 150. During a holiday sale, the number of headphones sold at the Downtown and Uptown store locations is represented by the matrix NN below, where the first row represents the Downtown store, the second row represents the Uptown store, the first column represents Solo headphones, and the second column represents Studio headphones:

N=[40253035]N = \begin{bmatrix} 40 & 25 \\ 30 & 35 \end{bmatrix}

The prices of the headphones are represented by the matrix PP below:

P=[80150]P = \begin{bmatrix} 80 \\ 150 \end{bmatrix}

Which of the following matrices represents the total revenue, in dollars, generated from headphone sales at each of the two stores, where the first row represents the Downtown store and the second row represents the Uptown store?

  1. A
    [8,0007,300]\begin{bmatrix} 8,000 \\ 7,300 \end{bmatrix}
  2. B
    [5,6009,000]\begin{bmatrix} 5,600 \\ 9,000 \end{bmatrix}
  3. [6,9507,650]\begin{bmatrix} 6,950 \\ 7,650 \end{bmatrix}Answer
  4. D
    [6,8507,650]\begin{bmatrix} 6,850 \\ 7,650 \end{bmatrix}
  5. E
    [3,2003,7502,4005,250]\begin{bmatrix} 3,200 & 3,750 \\ 2,400 & 5,250 \end{bmatrix}

Answer

The column matrix with first row 6,950 and second row 7,650
The total revenue for each store is found by calculating the product of the sales matrix NN and the price matrix PP. This multiplication is performed by taking the dot product of each row in NN with the column in PP. For the first row (Downtown store), the calculation is 40×80+25×150=3,200+3,750=6,95040 \times 80 + 25 \times 150 = 3,200 + 3,750 = 6,950. For the second row (Uptown store), the calculation is 30×80+35×150=2,400+5,250=7,65030 \times 80 + 35 \times 150 = 2,400 + 5,250 = 7,650. Combining these results yields the column matrix containing 6,950 and 7,650.

Step-by-Step Solution

1
Set up the matrix multiplication to calculate the revenue, multiplying the sales matrix NN by the price matrix PP.
NP=[40253035][80150]NP = \begin{bmatrix} 40 & 25 \\ 30 & 35 \end{bmatrix} \begin{bmatrix} 80 \\ 150 \end{bmatrix}
To find the total revenue for each store, the number of units sold (organized by store in rows and product type in columns) must be multiplied by the unit prices (organized by product type in rows).
2
Calculate the revenue for the Downtown store by taking the dot product of the first row of NN and the column of PP.
40×80+25×150=3,200+3,750=6,95040 \times 80 + 25 \times 150 = 3,200 + 3,750 = 6,950
This combines the units sold of each headphone model at the Downtown store with their respective prices to find the store's total revenue.
3
Calculate the revenue for the Uptown store by taking the dot product of the second row of NN and the column of PP.
30×80+35×150=2,400+5,250=7,65030 \times 80 + 35 \times 150 = 2,400 + 5,250 = 7,650
This combines the units sold of each headphone model at the Uptown store with their respective prices to find the store's total revenue.
4
Combine the results into the final product matrix.
[6,9507,650]\begin{bmatrix} 6,950 \\ 7,650 \end{bmatrix}
The resulting matrix contains the total revenues for the Downtown store in the first row and the Uptown store in the second row.

Key Concept

Matrix Multiplication and Modeling

Alternative Method

Instead of setting up the entire matrix multiplication, calculate the total revenue for the first store (Downtown) individually: 40×80+25×150=6,95040 \times 80 + 25 \times 150 = 6,950. This single calculation is enough to eliminate the options that do not have 6,950 in the first row.
Estimated Time:2m 0s
Rate this question