Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose you want to calculate 5^65537 instead of multiplying 5 65537 times, it is recommended to do ((5^2)^16)*5. This results in 16 times squaring and one multiplication.
But my question is aren't you not compensating the the number of squaring times by squaring very large numbers? how is this faster when you go down to the basic bit multiplication in computers.
After reading the comments, I have got this doubt:

     How is the cost of each multiplication not dependant on the size. because when
multiplying the number of bits of the multiplier will increase and this will increase the 
number of additions and the number of left shifts.
share|improve this question
You do know that crypto doesn't actually calculate that, right? – Ignacio Vazquez-Abrams Apr 12 '12 at 5:14
2  
The first sentence is wrong. 5^65537 != ((5^2)^16)*5 – Vincent Apr 12 '12 at 5:16
@IgnacioVazquez-Abrams This calculation must be done somewhere right? and it will affect performance. – suraj Apr 12 '12 at 6:10
@suraj: Actually no, it's never really done. – Ignacio Vazquez-Abrams Apr 12 '12 at 6:11
@IgnacioVazquez-Abrams Dude then please tell me how this calculation thing happen? Dont tell me it just happens. Somewhere it must happen boss. – suraj Apr 12 '12 at 6:14
show 8 more comments

1 Answer

up vote 7 down vote accepted

Count the multiplication operations:

5^65537 = 65537 multiplications
((5^2)^16)*5 = (2 + 16 + 1) = 19 multiplications.

From this, you can see that this is much less work, despite the multiplications working on larger numbers. The algorithm is called Square and Multiply.

In practice, cryptosytems that need to calculate large numbers like this use a technique called Modular Exponentiation to avoid massive intermediate numbers.

share|improve this answer
@Oleski : So the multiplications on larger numbers are not a set back -how? – Ashwin Apr 12 '12 at 5:22
Keep in mind that the many-multiplication version still deals with huge intermediate results. I've updated the answer to talk about how systems really deal with large numbers in practice, though – Oleksi Apr 12 '12 at 5:29
thank you for that link. but can you explain in a non cryptographic scenario, how small number for multiplications with large numbers is better that multiplying small numbers many times. Does it go don to the basic bit muliplications involving the registers and accumulators? please explain if possible. – Ashwin Apr 12 '12 at 5:34
@Ashwin: Count the number of times you have to multiply things, and remember that the cost of each multiplication is about the same, regardless of what is being multiplied. – Donal Fellows Apr 12 '12 at 5:36
1  
While it's true that multiplying huge numbers is slower than multiplying small numbers, this is still much faster than performing many, smaller, multiplications. I don't really know why this is the case from a hardware point of view, but I suspect that CPU are designed so that they can multiply larger numbers without using extra clock cycles, however multiple multiplications will always use multiple clock cycles. – Oleksi Apr 12 '12 at 5:41
show 14 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.