Skip to content

Files

Latest commit

5341547 · Sep 3, 2018

History

History
This branch is 2 commits ahead of, 448 commits behind trekhleb/javascript-algorithms:master.

fast-exponentiation

Fast Exponentiation Algorithm

The operation of modular exponentiation calculates the remainder when an integer b (the base) raised to the eth power (the exponent), be, is divided by a positive integer m (the modulus). In symbols, given base b, exponent e, and modulus m, the modular exponentiation c is: c ≡ b^e (mod m).

Modular Arithmetic

  • (a + b) % m = ( a%m + b%m ) % m
  • (a * b) % m = ( a%m * b%m ) % m

References