Fast integer multiplication and Fourier transform (Fundamental algorithms, Spring 2023, Lecture 4)
Kent Quanrud · 66:22
Karatsuba’s three-multiplication trick multiplies n-bit integers in O(n^{log₂ 3}) ≈ O(n^{1.585}) time instead of schoolbook O(n²), and the same divide-and-conquer mindset yields an O(n log n) FFT that multiplies polyn...