1 9 8 + 1 8 7 + 1 7 6 + 1 6 5 + 1 5 4 + 1 4 3 + 1 3 2 + 1 2 1 + 1 1 0
Find the remainder when the number above is divided by 11.
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.
The last one 11^0 is tricky, and I forgot it is 1 and thought it is 0 at first to give me the answer of 8 instead of 9.
Log in to reply
Oh yes, I missed that too. I was getting 8.
Can you explain me the first two lines of his solution?
Log in to reply
Actually it should be 19^8=-3(mod11). But since you have even exponent it has been simplified to a positive 3.
Log in to reply
@Satyajit Ghosh – Thanks. But what about the next two conversions?
Log in to reply
@Vishal Yadav – 1 8 7 ≡ ( 7 ) 7 ( m o d 1 1 )
This is a property of modulo, when you divide 18 by 11, you have 7 as remainder, so it is again simplified to ( 7 ) 7
similarly, 1 7 6 ≡ ( 6 ) 6 ( m o d 1 1 )
You can check out this wiki for more information
I have done the same silly mistake.
me too . kept thinking that 8 is correct but had to see solution at last when it showed me wrong
Can you explain me the first two lines of your solution ?
Log in to reply
So taken from Gamal Sultan 's solution:
1 9 8 ≡ ( − 3 ) 8 because ignoring the exponents 2 2 ≡ 0 ( m o d 1 1 ) , 2 2 − 3 = 1 9 , Therefore 1 9 8 ≡ ( − 3 ) 8 ( m o d 1 1 ) , and ( − 3 ) 8 becomes 3 8 because of positive exponent. Then 3 8 ≡ 9 4 ≡ ( − 2 ) 4 ( m o d 1 1 ) because 1 1 − 2 = 9 , ( − 2 ) 4 ≡ 1 6 ≡ 5 ( m o d 1 1 )
1 8 7 ≡ ( − 4 ) 7 ≡ ( − 4 ) ( − 4 ) 6 ≡ ( − 4 ) ( 6 4 ) 2 ≡ ( − 4 ) ( − 2 ) 2 ≡ − 1 6 ≡ 6 ( m o d 1 1 )
W L O G this applies to the rest of the numbers and you should get 9 ( m o d 1 1 )
Yay.. Got it for the first try itself.... 👍
Hey you are in Safe hands how did you cleared RMO
what does this "mod" mean ? i solved it using bionomial? plz tell
19^8 = (22 - 3)^8 = (-3)^8 = 9^4 = (-2)^4 = 16 = 5 (mod 11)
18^7 = (22 - 4)^7 = (-4)^7 = (-4)(4)^6 = (-4)(64)^2 = (-4)(-2)^2 = -16 = 6 (mod 11)
17^6 = (11 + 6)^6 = 6^6 = 36^3 = (33 + 3)^3 = 27 = 5 (mod 11)
16^5 = 5^5 = (5)(25)^2 = (5)(3)^2 = 45 = 1 (mod 11)
15^4 = 4^4 = 16^2 = 5^2 = 25 = 3 (mod 11)
14^3 = 3^3 = 27 = 5 (mod 11)
13^2 = 2^2 = 4 (mod 11)
12^1 = 1 (mod 11)
11^0 = 1 (mod 11)
Then
5 + 6 + 5 + 3 + 5 + 1 + 4 + 1 + 1 = 9 (mod 11)
The answer is 9
Looks pretty clean even without LaTeX :)
> mod(19^8+18^7+17^6+16^5+15^4+14^3+13^2+12^1+11^0,11)
ans =
9
Problem Loading...
Note Loading...
Set Loading...
1 9 8 ≡ 3 8 ( m o d 1 1 ) , 3 5 ≡ 1 ( m o d 1 1 ) so 1 9 8 ≡ 3 3 ≡ 5 ( m o d 1 1 )
1 8 7 ≡ 7 7 ≡ 5 3 × 7 ≡ 2 8 ≡ 6 ( m o d 1 1 )
1 7 6 ≡ 6 6 ≡ ( 6 2 ) 3 ≡ 3 3 ≡ 5 ( m o d 1 1 )
1 6 5 ≡ 5 5 ≡ 2 5 × 2 5 × 5 ≡ 4 5 ≡ 1 ( m o d 1 1 )
1 5 4 ≡ 4 4 ≡ 2 8 ≡ − 2 3 ≡ − 8 ≡ 3 ( m o d 1 1 )
1 4 3 ≡ 3 3 ≡ 5 ( m o d 1 1 )
1 3 2 ≡ 2 2 ≡ 4 ( m o d 1 1 )
1 2 1 ≡ 1 ( m o d 1 1 )
1 1 0 ≡ 1 ( m o d 1 1 )
Hence answer is 5 + 6 + 5 + 1 + 3 + 5 + 4 + 1 + 1 ≡ 9 ( m o d 1 1 )