According to Modulo of a negative number
"In arithmetic modulo , we seek to express any $$ as $+$, where $$ must be a non-negative integer."
This makes sense to me as we are trying to group numbers into classes from $0$ to $n$.
E.g. If $n = 4$, then one of the following holds: $$a \equiv b \pmod 4 \iff \begin{cases} a, b \in [0] = \{4k + 0\mid k\in \mathbb Z\} = \{\cdots, -8, -4, 0, 4, 8, 12,\cdots\} \\ \\ a, b \in [1] = \{4k + 1\mid k \in \mathbb Z\} = \{\cdots, -7, -3, 1, 5, 9, 13,\cdots\} \\ \\ a ,b \in [2] = \{4k + 2\mid k \in \mathbb Z\} = \{\cdots, -6, -2, 2, 6, 10, 14,\cdots\} \\ \\ a, b \in [3] = \{4k + 3\mid k \in \mathbb Z\} = \{\cdots, -5, -1, 3, 7, 11, 15, \cdots\} \end{cases} $$
But according to Shall remainder always be positive?
For example: $$-48\bmod{5} = 2$$ and $$-48 \bmod{5} = -3$$ are both true because
"2 and −3 are just two names for the same element" (Means they are the same name for same class I assume)
Hence $r$ can be a non-negative integer which disproves the original statement? I am confused.