Find all solutions using the Chinese Remainder Theorem.
x = 2 (mod 4)
x = 3 (mod 5)
x = 9 (mod 13)
My step is here:
a = 2 (mod 4) , a = 0 (mod 5) , a = 0 (mod 13)
b = 0 (mod 4) , b = 3 (mod 5) , b = 0 (mod 13)
c = 0 (mod 4) , c = 0 (mod 5) , c = 9 (mod 13)
The general solution for x is given by x = a + b + c + k*lcm(4,5,13) = a+b+c+260k
since a = 0 (mod 5) and a = 0 (mod 13)
, so a = 65m
for some integer m
then 65m = 2 (mod 4)
What should i do next?
I think the step i write 65m - 2 = 4
is wrong