Find the number of 5 digit numbers having the sum of their digits 41 and being divisible by 11.
Note: Repetition of digits is allowed.
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.
This problem has a systematic approach as follows :
let the 5 digits be a, b ,c ,d & e.
Substituting 1 in 2, we have 41 - 2b - 2d = 11 -------->3.
(b,d) can be (9,6) , (6,9) , (8,7) & (7,8) which is 4 ways.
(a,c,e) can be (9,9,8) , (9,8,9) , (8,9,9) which is 3 ways.
So, total combinations is 4 * 3 = 1 2 ways.