Processing math: 100%

Monday, April 1, 2019

Ternary Exponentiation


Binary exponentiation is a trick which allows to calculate an in logarithmic time (instead of linearly as required by the naive approach).

If you know how this works, just skip this part.

The idea of binary exponentiation is, that we split the work using the binary representation of the exponent.

a=2,n=13

Say we wanted to calculate an

213 =  211012 = 28  24  21

Since the number n has exactly log2 n+1 digits in base 2, we only need to perform O(log2 n) multiplications, if we