Find the largest possible multiple of 55 that can be formed by the digits 0,1,2,3,4,5,6 without repetition.
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.
The digits add up to 2 1 and the sums of the digits in the odd and even places have to differ by a multiple of 1 1 , so they are 5 and 1 6 (can't be 1 6 and 5 because the three odd digits can add up to at most 6 + 5 + 4 = 1 5 ). The odd digits have to therefore be 0 , 1 , 4 or 0 , 2 , 3 (these are the only combinations of three digits that sum to 5 ). Since the number ends in 0 or 5 , it has to end in 5 . Any number satisfying these conditions (digits are 0 , 1 , 2 , 3 , 4 , 5 , 6 , digits in odd places are 0 , 1 , 4 or 0 , 2 , 3 , ends in 5 ) is divisible by 5 5 .
To maximize the number, the odd and even digits should be in descending order given the conditions. So either 6 4 3 1 2 0 5 or 6 3 4 2 1 0 5 , depending on your choice of the odd digits. The first one, 6 4 3 1 2 0 5 , is larger.