Find integers $a,b,c$ that holds the following properties $$a\mod{2}=1$$ $$b=a+1$$ $$b\mod{3}=0$$ $$c=b+1$$ $$c\mod{4}=3$$
One such solution satisfying all these constraints is $(a,b,c)=(5,6,7)$. It is known that there exist infinitely many such integer solutions.
As per my current knowledge, I know that $a$ should take the form $2l+1$, $b$ has the form $3m$ and c has the form $4n+3$ where $l,m,n \in \mathbb{Z}$. But I cannot determine the combined form that all variables have to take.
You constraints are equivalent to $$ \begin{cases} a \equiv 1 &\pmod 2\\ a \equiv -1 \equiv 2 &\pmod 3\\ a \equiv 1 &\pmod 4. \end{cases} $$ This is obtained by substituting $a+1$ for $b$ and $a+2$ for $c$ and simplifying. We see that the first congruence is redundant because $a \equiv 1 \pmod 4$ implies $a \equiv 1 \pmod 2$. So the system becomes \begin{cases} a \equiv 2 &\pmod 3 \\ a \equiv 1 &\pmod 4. \end{cases} Such systems can be solved using the Chinese Remainder Theorem. In your case the general solution is $a\in \{5+12k\mid k \in \mathbb{Z}\}$. So the solution set for $(a,b,c)$ is $\{(5+12k,6+12k,7+12k)\mid k \in \mathbb{Z}\}$.
The Chinese Remainder Theorem holds more generally for any number of congruences when the moduli are relatively prime. If they are not relatively prime (as ours were not originally, since $\gcd(2,4)>1$) you can often do some tricks to re-write the system (as we did by noting that the first congruence was implied by the third).