Loading...
Cooley–Tukey radix-2 FFT splits a sequence into even and odd sub-problems then merges with twiddle factors to drop DFT cost from O(n^2) to O(n log n).
Even / odd recursion
Aux arrays or in-place
Twiddle factor combine
Transforms time-domain samples into frequency spectrum.
Fast polynomial & signal convolution via pointwise multiply.
Pair operations reuse partial sums / differences.
T(n) = 2T(n/2) + O(n)
Master Theorem => O(n log n). Linear twiddle merge dominates after two sub-transforms.