Your setup is correct, but there's a subtle
trap here.
What you did right:- R = L + M + G
- M = L + x and M = G - y
- G - L = x + y
Where it breaks down:You found that G - L = x + y and then picked options where the difference equals x + y. Your choice was:
- Greatest:
(R+2x+y)/3- Least:
(R-x-2y)/3The difference is indeed x + y.
But having the correct difference is
necessary but not sufficient!
The missing check: Do these three numbers actually sum to R?
Let's test your pair:
- L =
(R-x-2y)/3- M = L + x =
(R+2x-2y)/3- G =
(R+2x+y)/3Sum =
(R-x-2y)/3 + (R+2x-2y)/3 + (R+2x+y)/3 =
(3R + 3x - 3y)/3 =
R + x - yThis does
NOT equal R!
The correct approach:Set up equations and solve for each variable directly:From R = L + M + G, substitute M = L + x and G = M + y = L + x + y:
R = L + (L + x) + (L + x + y) =
3L + 2x + yTherefore: L =
(R - 2x - y)/3Similarly, G = L + x + y =
(R - 2x - y)/3 + x + y = (R + x + 2y)/3Verification:- L =
(R-2x-y)/3- M = L + x =
(R+x-y)/3- G =
(R+x+2y)/3- Sum =
(R-2x-y + R+x-y + R+x+2y)/3 = 3R/3 = RAnswer: Least = (R-2x-y)/3, Greatest = (R+x+2y)/3Key Takeaway: When you have multiple constraints (difference AND sum), you must verify
ALL constraints are satisfied, not just one.
Kavicogsci
KarishmaB why is my way wrong
R = L + M + G
Where
L is least number
G is greatest number
M is median
M = x+L
M =G-y
x+L = G -y
G-L = x+y
Difference of the two numbers is X + Y
So the options that worked are
Greatest :
(R+2x+y)/3 Lowest :
(R-x-2y)/3 Difference = X+Y