I'm really struggling with how to find the solution to a system of congruences where the m_i's are not relatively prime. For example:
$x ≡ 3 (mod4)$
$x ≡ 1 (mod6)$.
I know this has a unique solution mod 12 but I'm stuck here. I read through some similar questions but I'm still confused. Since I can't use the Chinese Remainder Theorem, how do I find the solution?
Write $$4k+3 =x=6l+1$$ so we have $$2k+1=3l \Longrightarrow 2\mid 3l-1 \Longrightarrow 2\mid l-1 \Longrightarrow l-1=2n$$ Thus $l=2n+1$ and $k=3n+1$ and finally $x= 12n+7$. Or if you want $x\equiv 7 \pmod {12}$.