FInd the sum of all n such that n 2 − 1 0 n − 1 3 5 is the digital sum of n
Note- Digital sum denotes sum of digits. Like for 279 it is equal to 2+7+9. Here n ranges over all integers.
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.
I think my solution is very short, so I will explain some steps here, for those who don´t understand the solution:
In the second praragraph n 2 − 1 0 n − 1 3 5 ≤ 1 8 because in this case I consider n as a two digit number, and the TWO digit number with the maximum sum is 9 9 with its sum equals 1 8 .
In the third paragraph, n is a three digit number, so as 9 9 9 is the number with the greatest sum 2 7 then n 2 − 1 0 n − 1 3 5 ≤ 2 7 .
Continue posting great problems @Krishna Ar
Log in to reply
You too post equally great solutions to my problems @Isaac Jiménez . Really awesome! In fact, I too had the same solution! :D
The digital sum of a non-negative number n is at least 0 and at most n . Then solving 0 ≤ n 2 − 1 0 n − 1 3 5 ≤ n ⟺ n = 1 8
Then checking ( 1 8 ) 2 − 1 0 ( 1 8 ) − 1 3 5 = 9 = 1 + 8 shows the only solution is 1 8 .
Problem Loading...
Note Loading...
Set Loading...
First, let say n is a one-digit number. So n 2 − 1 0 n − 1 3 5 = n → n ( n − 1 1 ) = 1 3 5 which is not possible.
Now, let say n is a two digit number. So, n 2 − 1 0 n − 1 3 5 ≤ 1 8 , which is n ( n − 1 0 ) ≤ 1 5 3 so 1 0 ≤ n ≤ 1 8 . n only works with 1 8 .
If n is a three digit number, then n 2 − 1 0 n − 1 3 5 ≤ 2 7 → n ( n − 1 0 ) ≤ 1 6 2 , so n can`t be a three digit number, neither greater.
So, n = 1 8 .