How do I calculate:
a(modc)+b(modc)
using the modular arithmetic:
(a+b)(modc)=(a(modc)+b(modc))(modc)
For example, assuming that a=14,b=17 and c=5;
(a+b)(modc)=(a(modc)+b(modc))(modc)
31(mod5)=(4+2)(mod5)
I just want 6(4+2) to be the output.
One way to calculate it is to perform (a(modc)+b(modc)).
But how do I calculate that value without performing in the above mentioned way but by using (a+b)(modc) ?
No comments:
Post a Comment