Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, ...
- RULE 1 : a ^ b = (a*a) ^ (b/2) ---- example : 4 ^ 4 = (4*4) ^ (4/2) = 16 ^ 2 - RULE 2 : IF b is odd, then a ^ b = a * (a ^ (b - 1)), where b - 1 is even Once b is even, repeat the process until b = ...