Math, asked by sampada6051, 3 months ago

1101 raise to power 2 + 1101 raise to power 2

Answers

Answered by blackvelvet1
1

Answer:Binary exponentiation (also known as exponentiation by squaring) is a trick which allows to calculate an using only O(logn) multiplications (instead of O(n) multiplications required by the naive approach).

It also has important applications in many tasks unrelated to arithmetic, since it can be used with any operations that have the property of associativity:

(X⋅Y)⋅Z=X⋅(Y⋅Z)

Step-by-step explanation:

Similar questions