A mobile number consists of ten digits. First four digits are 9, 9, 7and 9. Make the smallest mobile number by using only one digit twice 8, 3, 5, 6, 0.

The first four digits are fixed (9, 9, 7, 9).

The remaining six digits should be such that it forms the least number possible of six digits, using only one digit twice.


Let’s use the digits in this way: the smaller digits will be used in left side [As the left side digits contributes more towards the value of the number: Any number, say, ”anan - 1an - 2….a1a0 can be expanded as :


= an × 10n + an - 1 × 10n - 1 + an - 2 × 10n - 2 + an - 3 × 10n - 3 + … + a1 × 101 + a0], and, 0 (the unique repeatable digit in this case) should be used twice as it is the smallest digit003568


[note, here the six digit number, unexpectedly starts with 0. Observe properly, this 0 actually lies in the middle of the actual ten digit number, which we are considering. So, no issue here.]


the smallest number is: 9979003568.


166