|
|
|
|
|
by dvdhsu
5024 days ago
|
|
> This has 3 multiplications and 4 additions. We've saved 1 multiplication at the expense of 3 extra additions. Stratssen's algorithm, for multiplying matrices, uses a similar "trick". Naive matrix multiplication uses 8 steps for a (2x2) * (2x2), or n^3 multiplications. Stratssen's lowers this to 7 multiplications, and instead uses extra additions, thus achieving O(N^~2.807). http://en.wikipedia.org/wiki/Strassen_algorithm |
|
Edit: I've asked djb and we'll see if he responds.