answersLogoWhite

0


Best Answer

There exist no numbers which are less than the sum of their digits.

This is obvious for single digit numbers, since each number would be exactly equal to the sum of its digits.

For multi-digit numbers, this still holds true. Let's take a two digit number in the form: ab. Where a and b represent the digits of this number.

The sum of the digits of ab = a + b.

The number ab = a*10 + b.

It should now be obvious that ab will always be greater than a + b.

For larger numbers, the difference between the sum of digits and the number only grows, as a number abc = a*100 + b*10 + c, abcd = a*1000 + b*100 + c*10 + d, etc.

Proof by exhaustion (via Java code, since this is listed in the programming category):

for (int n = 10; n <= 99; ++n) {

int _n = n;

int sumDigits = 0;

while (_n != 0) {

sumDigits += _n % 10;

_n /= 10;

}

if (n < sumDigits) {

// This code is never reached, since n >= sumDigits for all 10 <= n <= 99

System.out.println(n + " < " + sumDigits);

}

}

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the sum of a two digit number less the sum of its digits?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can the statement be rewritten as a conditional statement in if-then form The sum of the digits of a two-digit number is less than the value of the original two-digit number.?

A) If a number has two digits, then the sum of its digits is less than the value of the original two-digit number.


The number whose ones digit is 8 less than its tens digit . The sum of the digits is a 2 digit number?

91 since the ones digit is 8 less than 9 and the two digits, 9+1 = 10, a two-digit number.


You are a 2 digit number The sum of your digits is 11 The tens digit is odd The ones digit is 3 less than the tens digit What number are you?

74


In a two-digit number the first digit is 5 less than the second digit. The number itself is three times the sum of its digits. What is the number?

27


What two-digit number has the 10's digit 2 less than the ones and the sum of the digits is 10?

46


What number am I I have 2 digits which have a sum of 7 both of my digits are less than 5 my tens digit is greater than my ones digit?

12


What number is equal to the sum of the cube of its own digits and 3 digit number less than 500 and is the sum of consecutive factorials and is a triangle number?

153....


You are a 2 digit number the sum of your digits is 15 your ones is three less than your tens?

96


What is a 3 digit number divisible by 7 but not 2 the sum of your digits is 4?

I am a 3 digit number divisible by 7 but not 2 the sum of my digits is 4 what number am I


What is a 2 digit number whose tens digit is 3 less than the ones digit and the original number is 6 more than 4 times the sum of the digits?

It is 58.


You are less than 200 the sum of the digits is 6 the product of its digits is 0 3 digit number and each factor of 75 is its factor too what number are you?

150


A number is less than 1000. The sum of its digits is 26. The ones digit is eight. The other two digits are identical. What is the number?

The number is 782. The sum of its digits is 7 + 8 + 2 = 17, not 26. Therefore, no such number exists that meets all the given conditions.