Find the smallest positive multiple of such that each of the digit of the multiple is either 0 or 8.
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.
For a number to be a multiple of 15, it has to be divisible by both 3 and 5. For 3, divisibility can be checked by adding the sum of digits which must be a multiple of 3. Since the number consists of only 8s and 0s, we need to find smallest multiple of 8 divisible by 3, i.e. 3*8. Thus the number needs to contain three 8s and one zero in the end to be a multiple of 5. Hence we obtain the number : 8880.