Master theorem
A recurrence relation that yields
time complexity of recursive algorithm
where
- \(a\) is the sub-problem count per recursive call,
- \(n / b\) is the sub-problem size in terms of \(n\)
- \(\mathcal{O}(n^d)\) is the time complexity of the reduction step.