Multiply two polynomial in O(nlog n) time

4.6k Views Asked by At

In order to multiply two polynomial , we need O(n^2) complexity. Is it possible to perform the multiplication in O(nlog n) time??

1

There are 1 best solutions below

2
On BEST ANSWER

Yes, using the Fast Fourier Transform algorithm, you can do it in $O(n log_2 n)$.