This my first concrete attempt to solve a linear mod equation with one answer. I have no idea what I am doing unless I get this right.
$$7x \equiv 6 \pmod{15}$$
$$\gcd(7,15)=1$$
So I know that there is exactly one solution
$7$ times what leaves a remainder of $6$ remainder $1$ when divided by $15$?
In this instance that number is $3$
$21x\equiv18\pmod{15}$
I can rewrite this as $x \equiv 15+6\pmod{15}$
which means $x \equiv 6\pmod{15}$
I figured I could remove the $15$ because we are in $\bmod 15$ which is our "zero"
Solve
$7x\equiv6\pmod{15}$
for unique $x \in \{0,1,2,\dots,14\}$.
You can keep adding $7$ to itself (subtracting $15$ when necessary as you go along) until you get, $\text{modulo } 15$, either
$\quad \;\;\,6\quad$ (Great - I got the answer!)
$\quad \;\;\,1\quad$ (OK, I can work with the inverse of $7$)
$\quad \,14\quad$ (Alright, $-1$ is so 'close' to $1$ I'll find the trick)
$x = 1: 7$
$x = 2: 7 + 7 = 14 = -1$
Now
$\quad 7 \times 2 \equiv -1\pmod{15} \text{ implies } 7 \times 6 \times 2 \equiv -6 \pmod{15} \text{ implies }$ $\quad \quad 7 \times (-6 \times 2) \equiv 6 \pmod{15} \text{ implies } x \equiv -12 \pmod{15} $
So the answer is $x \equiv 3 \pmod{15}$.