Find the remainder when 2 1 9 9 0 is divided by 1990.
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.
Deepansh How did you do it?
Very nice solution, one small typo. The fourth, third and second from last last line should all be (mod 199), not (mod 5).
I don't get the last step.Like, why is the last step directly implying the conclusion? I didn't have to face it because I used CRT, which does get messy, but is handy if progress is made in a systematic manner.
Log in to reply
We need to find a number n such that n ≡ 0 (mod 2) ≡ 4 (mod 5) ≡ 1 0 2 4 (mod 199) . Now, let n = 1 0 2 4 and it satisfies.
Log in to reply
Will solution be accepted at an olympiad? I mean, this is number checking, isn't it?
Log in to reply
@Mehul Arora – I see this as similar to CRT. It just happens that 1024 satisfies the three conditions, else we have to use CRT. In fact 1024 is just an obvious solution. I just used n to explain I didn't really need to do number checking. 0 ( m o d 2 ) means that the number is even which 1024 is. 4 ( m o d 5 ) means the number ends with 4, which 1024 is. 1 0 2 4 ( m o d 1 9 9 0 ) is 1024.
Problem Loading...
Note Loading...
Set Loading...
Relevant wiki: Euler's Theorem
Since 2 and 1990 ( = 2 × 5 × 1 9 9 ) are not coprime integers, we have to consider 2 1 9 9 0 mod 2 , 2 1 9 9 0 mod 5 , and 2 1 9 9 0 mod 1 9 9 separately.
2 1 9 9 0 ≡ 0 (mod 2)
2 1 9 9 0 ≡ 2 1 9 9 0 mod ϕ ( 5 ) (mod 5) ≡ 2 1 9 9 0 mod 4 (mod 5) ≡ 2 2 (mod 5) ≡ 4 (mod 5) As g cd ( 2 , 5 ) = 1 , Euler’s theorem applies ϕ ( 5 ) = 4
2 1 9 9 0 ≡ 2 1 9 9 0 mod ϕ ( 1 9 9 ) (mod 199) ≡ 2 1 9 9 0 mod 1 9 8 (mod 199) ≡ 2 1 0 (mod 199) ≡ 1 0 2 4 (mod 199) As g cd ( 2 , 1 9 9 ) = 1 , Euler’s theorem applies ϕ ( 1 9 9 ) = 1 9 8
Since 1 0 2 4 ≡ 0 (mod 2) ≡ 4 (mod 5) ≡ 1 0 2 4 (mod 199) ⟹ 2 1 9 9 0 ≡ 1 0 2 4 (mod 1990) .