What is the remainder when 123456789101112131415161718192021222324252627282930313233343536373839404142434481 is divided by 45
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.
For a number to be divisible by 4 5 , it must be divisible by 5 , 9 .
Till 1 2 3 . . . . 3 5 , the number is divisible by 5 because last digit is 5 and sum of digits is also divisible by 9 ( To calculate the sum of digits use the formula 2 n ( n + 1 ) ).
Leftover 3 6 3 7 . . . 4 4 8 1 , you can easily divide by 4 5 and obtain 3 6 as the remainder.
Problem Loading...
Note Loading...
Set Loading...
The remainder that you get when you divide a number by n is called that number modulo n. For example, 23 modulo 4 is 3, since when you divide 4 into 23, you get a quotient of 5 and a remainder of 3.
Note that 45 is the product of 5 and 9, two relatively prime numbers. (Note: two numbers are relatively prime if they have no common factor other than 1.) If you know the number modulo 5 and the number modulo 9, then you can determine the number modulo 45.
The number ends with a 1, so modulo 5 it's 1.
Add all the digits together to get some number, then add all its digits together and continue this to get a digit. In this case its 9, so modulo 9 is 0.
Thus, modulo 5 it's 1, and modulo 9 it's 0. the number between 0 and 45 having this property is the answer.