I want to solve the following system of congruences:
$ x \equiv 1 \mod 2 $
$ x \equiv 2 \mod 3 $
$ x \equiv 3 \mod 4 $
$ x \equiv 4 \mod 5 $
$ x \equiv 5 \mod 6 $
$ x \equiv 0 \mod 7 $
I know, but do not understand why, that the first two congruences are redundant. Why is this the case? I see that the modulo of the congruences are not pairwise relatively prime, but why does this cause a redundancy or contradiction? Further, why is it that in the solution to this system, we discard the first two congruences and not
$ x \equiv 3 \mod 4 $
$ x \equiv 5 \mod 6 $
being that $ gcd(3,6) = 3 $ and $gcd(2,4) = 2$ ?
EDIT:
How is the modulo of the unique solution effected if I instead consider the system of congruences without the redundancy i.e. does $M = 4 * 5 * 6 * 7$ or does it remain $M= 2*3*4*5*6*7$?
Note that:
$$x\equiv 3 \mod 4 \Rightarrow x= 4k+3\Rightarrow x\equiv 1 \mod 2\\ x\equiv 5\mod 6 \Rightarrow x = 6k'+5\Rightarrow x\equiv 2\mod 3 $$