Bunuel
12 Days of Christmas 2024 - 2025 Competition with $40,000 of PrizesA group of students, with an average (arithmetic mean) weight of p pounds, is boarding a plane. The plane has space for only one more person: either Sally or Harry. If Sally, who weighs 105 pounds, joins the group, the average weight decreases by 6 pounds. If Harry, who weighs 195 pounds, joins instead, the average weight increases by 12 pounds. What is the value of p?
A. 129
B. 135
C. 141
D. 147
E. 153
Let
n be the number of students in the group. The total weight of the students is
np.
If Sally joins the group, the new average weight is p - 6. The total weight is now np + 105, and the number of people is n + 1. So, we have the equation:
(np + 105) / (n + 1) = p - 6
np + 105 = (p - 6)(n + 1) np + 105 = pn + p - 6n - 6 105 = p - 6n - 6 p - 6n = 111 --- (1)
If Harry joins the group, the new average weight is p + 12. The total weight is now np + 195, and the number of people is n + 1. So, we have the equation:
(np + 195) / (n + 1) = p + 12
np + 195 = (p + 12)(n + 1) np + 195 = pn + p + 12n + 12 195 = p + 12n + 12 p + 12n = 183 --- (2)
Now we have a system of two linear equations:
p - 6n = 111 --- (1) p + 12n = 183 --- (2)
Subtract equation (1) from equation (2):
(p + 12n) - (p - 6n) = 183 - 111 18n = 72 n = 4
Substitute n = 4 into equation (1):
p - 6(4) = 111 p - 24 = 111 p = 135
Therefore, the average weight of the students is 135 pounds.