Find the sum of all the -digit integers which are not multiples of and whose digits are , with each of these digits appearing exactly once.
(Adapted from a past year Singapore Mathematical Olympiad question.)
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.
first of all, there would be only 12 numbers which are divisible by 11 and can be formed from the digits 1,3,4,7,9 they are
73491,79431,73194,79134 43791,49731,43197,49137 13794,19734,13497,19437
their sum= 557568 next find sum of all the numbers which can be formed from these digits (this is quite simple..)
unit's digit of this sum would be units digit of (1+3+4+7+9)*24 = 6
ten's digit would be the units digit of (1+3+4+7+9)*24 + 57(carry of previous ) and so on ...
[i've multiplied by 24 as each digit would come 4! times] so we get the total sum = 6399936
thus, the required answer = 6399936 - 557568 = 5842368