Let 2n be an even number where n is a positive integer. Add the digits of this number. Then add the digits of the resulting number. Continue this process until you get a single digit number of the form 2p+1 where p is a non-negative integer. Now add the digits of n. Add the digits of the resulting number, and continue the process until you get a single digit number of the form ap+b where a and b are constant single digit positive integers (b can be more than p). Find the value of
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.
Repeatedly adding the digits of a number is the same as finding the digital root of a number, which is the same as the remainder after dividing that number by 9 . Let n = 9 m + k for some integers m and k such that 0 ≤ k < 9 . Then the digital sum of n is k , and for 0 ≤ k ≤ 4 the digital sum of 2 n will be even and not in the form of 2 p + 1 (and therefore not applicable), but for 5 ≤ k < 9 the digital sum of 2 n will be 2 k − 9 . Setting 2 k − 9 = 2 p + 1 solves to p = k − 5 , therefore a ( k − 5 ) + b = k for 5 ≤ k < 9 . Then when k = 5 , b = 5 , and when k = 6 and b = 5 , a = 1 . Therefore b − a b + a = 5 − 1 5 + 1 = 2 3 = 1 . 5 .