1. Each of the digits 1,2,3,4,5,6 is used exactly once in forming the 3-digit integers X and Y. How many possible values of X+Y are there if |X-Y|=111?
----------
| I'm not as sure of this one but here's my guess: | |
| We can let Y < X without changing the number of possible values of X + Y |
|
| For every value of Y such that |X - Y| = 111 there is one unique corresponding value of X | |
| So if we just count the possible values of Y, that will be the number of possible values of X + Y |
|
| And since Y < X , the possible digits of Y are only: 1, 2, 3, 4, 5 | |
| (If 6 was a digit of Y then there is not a possible corresponding X which makes |X - Y| = 111) |
|
| the number of possibilities of Y = 5 * 4 * 3 = 60 | |
| So there are 60 different pairs each with a different sum. |
|
| And so there are 60 different possibilities of X + Y |
To help see this...here is the beginning of the list of pairs:
123, 234
124, 235
125, 236
132, 243
134, 245
135, 246
142, 253
143, 254
.
.
.