$x\equiv 2\pmod3$
$x\equiv 3\pmod 5$
$x\equiv 7 \pmod{11}$
How can I solve this system for $x$? I've tried all kinds of things using divisibility but no success. Any hints of solutions are greatly appreciated. What value of $x$ satisfies these three equations?
Use the Chinese Remainder Theorem which tells us that the simultaneous solution to a system of linear congruences $$\left\{ \begin{array}{l} x \equiv b_1 \mod m_1\\[2ex] x \equiv b_2 \mod m_2 \\[2ex] ... \\[2ex] x \equiv b_i \mod m_i \end{array} \right. $$ will be in the form $$x_0=c_1 n_1 \tilde n_1+c_2 n_2 \tilde n_2+...+n_i c_i \tilde {n_i}$$ where $M=m_1 m_2 ...m_i$ for coprime $m_i$ $, n_i={M \over m_i},$ $\tilde {n_i}$ is the modular multiplicative inverse of $n_i\mod m_i$, and $c_i$ are integers that satisfy $c_i \equiv b_i \mod m_i$. So in your case a solution would be
$$x_0=2*55*1+3*33*2+7*15*3=623$$
The theorem also tells us that all solutions will be congruent modulo $M=3*5*11$, so any integer $y$ that satisfies $$623 \equiv y\mod 165$$ is also a solution (The smallest $y$ is 128).