You are the owner of three pets: A lion, a salamander, and a gerbil.
The following are the sum of pairs of weights of
Lion and Salamander: 108 pounds
Lion and gerbil: 104 pounds
Gerbil and salamander: 8 pounds
In pounds, what is the combined weight of all of them?
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 L , S , G be the respective weights of the Lion, Salamander and Gerbil. Then we are given that
L + S = 1 0 8 , L + G = 1 0 4 and G + S = 8 . Adding these equations together, we find that
( L + S ) + ( L + G ) + ( G + S ) = 1 0 8 + 1 0 4 + 8 ⟹ 2 L + 2 S + 2 G = 2 2 0 ⟹
2 ( L + S + G ) = 2 2 0 ⟹ L + S + G = 1 1 0 pounds.
Edit: As Calvin Lin notes in his comment, to be complete we should check that L , S , G are all positive in this scenario. First note that
( L + S ) − ( L + G ) = 1 0 8 − 1 0 4 ⟹ S − G = 4 ⟹
( S − G ) + ( G + S ) = 4 + 8 ⟹ 2 S = 1 2 ⟹ S = 6 , G = S − 4 = 2 , L = 1 0 8 − S = 1 0 2 .
So the unique solution is ( L , S , G ) = ( 1 0 2 , 6 , 2 ) , giving us L + S + G = 1 1 0 pounds as found above.