Find the largest number whose sum of digits is equal to the number itself.
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.
It is straightforward that the solution cannot be a three digit or larger number, as the maximum sum of digits for an n-digit number is 9n, which is less than 10^(n-1) for n>2.
A two digit number xy is represented as 10x+y which must be equal to x+y. Solving for x yields a result of zero, meaning that the answer can only have one digit, and 9 is the largest.