Originally posted by Ray87:
2)find the smallest three digit number n such that if the three digits are a, b, and c, then n= a + b + c + ab +bc + ac +abc
Recast it as follows: (where each a,b,c is a positive single digit integer)
n = [a,b,c] = 100a+10b+c = a + b + c + ab + ac+ bc +abc eqn (1)
Since it is asking for the smallest digit possible, let's take a = 1 and the above eqn. reduces to:
99 = 2bc + c - 8b eqn (2)
Since b, c needs to be positive, c >= 4 and for them to be single digit, c has to be:
c = 9
For this allows Eqn (2) to be reduced to the following:
99 = 18b + 9 - 8b
90 = 10b
thus: b = 9
Therefore: n = [a,b,c] = 199
I think this ans. is correct. Anyone has another solution technique ??