Find the maximum possible -digit number that makes the minimum possible, where and are distinct non-zero digits.
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.
We have the following addition:
+ + a b e c f h d g i
Before we worry about maximising a b c d let us minimise the result of the addition. As there are 9 distinct non-zero digits we know that they are the numbers 1 through 9 . To minimise the result of this addition, we need to put the smallest digits in the places that are most significant (i.e. the places to the left that represent the greatest powers of 1 0 ). Therefore, we first place a = 1 , followed by b , e = 2 , 3 and c , f , h = 4 , 5 , 6 and d , g , i = 7 , 8 , 9 . These numbers can be interchanged within these tuples and it won't make any change to the resulting minimum sum.
Now to maximise a b c d we need to select the greatest possible digit available for each of a , b , c , d . Doing so, we get that a b c d = 1 3 6 9 . (Also, the minimum possible value of the sum is 1 6 7 4 )