Wednesday, January 24, 2018

Property of modular arithmetic.


(a / b) % c = ((a % c) * (b^{-1} % c)) % c




How to calculate b^{-1}? I know it is not 1/b. Is there more than one way to calculate this?

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...