←back to thread

Is Matrix Multiplication Ugly?

(mathenchant.wordpress.com)
34 points jamespropp | 1 comments | | HN request time: 0.199s | source
Show context
jamespropp ◴[] No.46009709[source]
Do you disagree with my take or think I’m missing Witt’s point? I’d be happy to hear from people who disagree with me.
replies(5): >>46010312 #>>46010402 #>>46010578 #>>46010720 #>>46010913 #
1. LegionMammal978 ◴[] No.46010402[source]
If the O(n^3) schoolbook multiplication were the best that could be done, then I'd totally agree that "it's simply the nature of matrices to have a bulky multiplication process". Yet there's a whole series of algorithms (from the Strassen algorithm onward) that use ever-more-clever ways to recursively batch things up and decrease the asymptotic complexity, most of which aren't remotely practical. And for all I know, it could go on forever down to O(n^(2+ε)). Overall, I hate not being able to get a straight answer for "how hard is it, really".