How many solutions are there for digits if is a five-digit number divisible by 99?
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.
N = 7 A B 7 3
If N is divisible by 99 then it is divisible by 9 and 11
For divisible by 11 it should satisfy :
( 7 + B + 3 ) − ( A + 7 ) = 1 1 k
k can be 0 , 1
For divisibility by 9 it should satisfy:
9 ∣ 7 + A + B + 7 + 3 = 1 7 + A + B = 1 8 + A + B − 1
it implies that 9 ∣ A + B − 1
If k = 0
B − A + 3 = 0
A = B + 3
Usong this in second part 9 ∣ B + 3 + b − 1
9 ∣ 2 ( B + 1 ) It has no solution
Now for k = 1
B − A + 3 = 1 1
B = A + 8
Putting this in secon part
9 ∣ 2 A + 7
it has only one solution A = 1 and B = 9