{x≡2(mod3)x≡1(mod4)x≡3(mod5)
n1=3n2=4n3=5N=n1∗n2∗n3=60m1=60/3=20m2=60/4=15m3=60/5=12gcd(20,3)=1=−20∗1+3∗7gcd(15,4)=1=−15∗1+4∗4gcd(12,5)=1=12∗3−5∗7x=−20∗2−15∗1+12∗3≡−19≡41(mod60)
The above is what I've tried so far. Can someone tell me where I'm going wrong? It's my first time doing this and looking at the explanation and examples for the Chinese Remainder Theorem makes my head want to explode.
Answer
I think you're a bit confused about the recipe used to solve the system of congruences using the Chinese Remainder Theorem. Using your notation, the actual solution is given by
x=2⋅m1⋅(m1−1 mod 3)+1⋅m2⋅(m2−1 mod 4)+3⋅m3⋅(m3−1 mod 5).
Let's see why this answer works. Since m1 is divisible by both 4 and 5, the first term is "invisible" when we consider x mod 4 and mod 5: it is congruent to 0 mod 4 and mod 5, so it doesn't contribute to the answer of the last two congruences. Thus, we can focus on making this first term satisfy the first congruence. Okay, so far we know the first term should have as factors 2 (the congruence we want) and m1 (to get rid of the effect mod 4 and 5). But now we don't satisfy the first congruence; the m1 throws things off. To fix this, we multiply by the m1−1 mod 3. Then mod 3 we have
x=2⋅m1⋅(m1−1 mod 3)+1⋅m2⋅(m2−1 mod 4)+3⋅m3⋅(m3−1 mod 5)≡2⋅m1⋅(m1−1 mod 3)≡2(mod3)
as desired. Similar reasoning shows that x satisfies the given congruences mod 4 and 5.
You have the right idea with your solution, but you're missing some factors. Since you've shown 1=20⋅(−1)+3⋅7≡20⋅(−1)(mod3), then
m1−1 mod 3=20−1 mod 3=−1≡2(mod3).
So the first term should be 2⋅20⋅2. Can you figure out the other two terms now?
No comments:
Post a Comment