This post is to clear some of the doubts related to modulo arithmetic.
Addition on both sides
$a \equiv b \pmod p \iff$ $(a+k) \equiv (b+k) \pmod p$
Subtraction on both sides
$a \equiv b \pmod p \iff$ $(a-k) \equiv (b-k) \pmod p$
Multiplication on both sides
$a \equiv b \pmod p \iff$ $ak \equiv bk \pmod p$
But for division,
$a \equiv b \pmod p \iff$ $a/k \equiv b/k \pmod {p/k}$
(if $a/k, b/k$ and $p/k$ are integers)
Is my understanding right on this? Is there an alternate form exists for division or why the general form is different for division? Please help me to understand this.