I have a secret set of 3 integers. If I add every possible pairing of them, I get the numbers 0 , 4 , 1 0 . What is the absolute difference between the largest two of my secret numbers?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let the numbers be a , b , c respectively with c ≥ b ≥ a . Then
a + b = 0 ( I )
a + c = 4 ( I I )
b + c = 1 0 ( I I I ) ( I I ) − ( I ) : c + a − ( b + a ) = c − b = 4
Nice identification of the variables for the equation!
Wait,I have a question,if a is smaller than b and c,why c-b could be the biggest difference?
Log in to reply
Note that the question asks for the "absolute difference between the largest two of my secret numbers".
It does not ask for the "largest absolute difference between two of my secret numbers".
Solve the following simultaneous equations:
x+y=0;
x+z=4;
y+z=10.
Soln: x=-3, y=3, z=7
Largest pair in (x,y,z): 7, 3
Difference betwn elements in largest pair: 7-3=4
Nice and way
Problem Loading...
Note Loading...
Set Loading...
Two of the numbers must be a and − a to add up to 0.
It must be true that
− a + b = 4
a + b = 1 0
Adding these obtains 2 b = 1 4 so that b = 7 . Using the original equations, a = 3 and − a = − 3 . So the absolute difference between the larger numbers is 7 − 3 = 4 .