Problem
This is a simple exercise but I am missing a key insight which prevents me from solving it.
Given $$a\equiv r \mod b$$ $$a \equiv s \mod b$$ for integers, $a, b, r, s$ and $b>0$, show uniqueness $$r=s$$
My attempt
The relevant constraint I think is that, by definition, $$0 \le r < b$$ $$0 \le s < b$$
This gives me $$b\cdot m \le a < b\cdot(m+1)$$ $$b\cdot n \le a < b\cdot(n+1)$$ for some integers $m,n$.
However I can't seem to proceed, so I guess I'm missing another key insight.
I'm unsure about the next step:
$$ m \le \frac{a}{b} < (m+1)$$ $$n \le \frac{a}{b} < (n+1)$$
Is this sufficient to say $m=n$, and continue from there?