Bunuel
At a certain upscale restaurant, there just two kinds of food items: entrees and appetizers. Each entrée item costs $30, and each appetizer item costs $12. Last year, it had a total of 15 food items on the menu, and the average price of a food item on its menu was $18. This year, it added more appetizer items, and the average price of a food item on its menu dropped to $15. How many appetizer items did it add this year?
A. 3
B. 6
C. 9
D. 12
E. 15
Kudos for a correct solution. MAGOOSH OFFICIAL SOLUTION:Method I: using sumsFirst, last year. Let x be the number of entrees. Then (15 – x) is the number of appetizers. The sums are:
entrees = 30x
appetizers = (15 – x)*12 = 12*15 – 12x = 6*30 – 12x = 180 – 12x
total = 15*18 = 30*9 = 270
Notice the use of the
Doubling and Halving trick in the second and third lines. The two individual sums should add up to the total sum.
30x + 180 – 12x = 270
18x = 90
x = 5
They start out with 5 entrees and 10 appetizers.
Let N be the number of appetizers added, so now there are 5 entrees and (10 + N) appetizers. We need to solve for N. Again, the sums:
entrees = 5*30 = 150
appetizers = (10 + N)*12 = 120 + 12N
total = (15 + N)*15 = 225 + 15N
Again, the two individual sums should add up to the total sum.
150 + 120 + 12N = 225 + 15N
270 = 225 + 3N
45 = 3N
15 = N
They added 15 more appetizers. Answer = (E)
Method I was do-able, but we had to solve for many values.
Method II: proportional placement of the total averageOriginally, the entrée price was 30 – 18 = 12 from the total average, and the appetizer price was 18 – 12 = 6. This means there must have been twice as many appetizers as entrees. Therefore , with 15 items, there must have been 10 appetizers and 5 entrees.
The number of entrees doesn’t change. The average drops to $15, so the distance from the entrée price is now 30 – 15 = 15, and the distance from the appetizer price is now 15 – 12 = 3. That’s a 5-to-1 ratio, which means there must be 5x as many appetizers as entrees. Since there still are 5 entrees, there must now be 25 appetizers, so 15 have been added.
Answer = (E)
If you know how to employ this method, it is much more elegant.