I'm trying to understand the modulo operation.
Let $$k,n \in \mathbb{Z}$$ At firt I thought:
$$\left(4k-4n\right)\bmod 4N=\left(k-n\right)\bmod N$$
But after a few simple examples I realized that this is not true. On the other hand, for each example I find that the following statement is true:
$$\frac{\left(4k-4n\right)\bmod 4N}{4}=\left(k-n\right)\bmod N$$
Is this statement really true? If so, why?