Question 168568
let a = hundreds digit
let b = tens digit
let c = ones digit
-----
number is divisible by ten so c must = 0.
-----
hundreds digit is one less than tens digit so a = b-1
-----
let x = number
-----
number is 52 times the sum of its digits so x = 52 * (a + b + c)
-----
since x = the number, then
x = 100*a + 10*b + 1*c
since c = 0, and a = b-1, this becomes:
x = 100*(b-1) + 10*b
which becomes:
x = 100*b - 100 + 10*b
which becomes:
x = 110*b - 100
-----
since x = 52 * (a + b + c)
and c = 0, and a = b-1, this becomes:
x = 52 * ((b-1) + b)
which becomes:
x = 52 * (2b-1)
which becomes:
x = 104*b - 52
-----
since x = 110*b - 100, and
x = 104*b - 52, then
110*b - 100 = 104*b - 52
subtract 104*b from both sides of equation:
110*b - 104*b -100 = -52
add 100 to both sides of equation:
110*b - 104*b = 100 - 52
simplify:
6*b = 48
b = 8
-----
if b = 8, then a = b-1 = 7
since c = 0, number you are looking for is:
780
-----
to prove the number is correct:
780 / 10 = 78 which means number is divisible by 10.
780 = 52 * (a + b + c) = 52 * (7 + 8 + 0) = 52 * 15 = 780 which is a true statement.
-----
780 is the number you are looking for.