Question:- The scores given by three of the four professors are 45, 49, 52 for each of 2 students Alex and Dan.
What is the minimum possible final score of any student ?
My approach:-
Assuming the fourth score to be $x$.
Now $x$ has to be less than 52 otherwise , $Y$ (max deviation between the marks) as well as $A$ (Average would increase), but we need to minimize both as our final score is $A+(Y-X)$.
now if $x<45$, the Average would decrease but then $Y$ would increase, so for checking purpose I did put $x=0$ as a possibility, so final score turns out to be $\frac{0+45+49+52}{4} + 52-3 = 85.5$.
then I tried for $x=45$, for which I get $\frac{45+45+49+52}{4} + (7-0) = 54.75$.
now to check if I can minimize it further , I checked with $x=46$, $\frac{45+46+49+52}{4} + (7-1) = 48+6 =54$ (we achieve a more lower score)
then at $x=47$, $\frac{45+47+49+52}{4} + (7-2) = 53.25$.
now for $x=48$, $\frac{45+48+49+52}{4}+ (7-1) = 54.5$, so the score rises, can I say the minimum will be at $x=47$ and be equal to $53.25$.
Have I done it correctly? Any efficient way to handle this?
