Tuesday, 16 August 2011

computer science - does the "convolution theorem" apply to weaker algebraic structures?

In general, it is a major open question in discrete algorithms as to which algebraic structures admit fast convolution algorithms and which do not. (To be concrete, I define the (oplus,otimes) convolution of two n-vectors [x0,ldots,xn1] and [y0,ldots,yn1], to be the vector [z0,ldots,zn1] with zk=(x0otimesyk)oplus(x1otimesyk1)opluscdotsoplus(xkotimesy0).

Here, otimes and oplus are the multiplication and addition operations of some underlying semiring.)



For any otimes and oplus, the convolution can be computed trivially in O(n2) operations. As you note, when otimes=times, oplus=+, and we work over the integers, this convolution can be done efficiently, in O(nlogn) operations.



But for more complex operations, we do not know efficient algorithms, and we do not know good lower bounds. The best algorithm for (min,+) convolution is n2/2Omega(sqrtlogn) operations, due to combining my recent APSP paper




Ryan Williams: Faster all-pairs shortest paths via circuit complexity. STOC 2014: 664-673




and




David Bremner, Timothy M. Chan, Erik D. Demaine, Jeff Erickson, Ferran Hurtado, John Iacono, Stefan Langerman, Perouz Taslakian: Necklaces, Convolutions, and X + Y. ESA 2006: 160-171




A substantially subquadratic algorithm for (min,+) convolution would (to my knowledge) imply a subcubic algorithm all-pairs shortest paths in general graphs, a longstanding open problem. The above ESA06 reference also gives a O(n2(loglogn)2/logn) algorithm for a "(median,+) convolution".



The situation is subtle. It's not clear when convolution over a semiring is easy and when it's hard. For instance, the (min,max) convolution can be computed in subquadratic time: I believe that O(n3/2logn) operations suffice. This can be obtained from adapting the (min,max) matrix multiplication algorithm in my work with Vassilevska and Yuster on all-pairs bottleneck paths. Basically you reduce the problem to computing sqrtn instances of a (+,times) ring convolution.

No comments:

Post a Comment