Akra–Bazzi method

In computer science, the Akra–Bazzi method, or Akra–Bazzi theorem, is used to analyze the asymptotic behavior of the mathematical recurrences that appear in the analysis of divide and conquer algorithms where the sub-problems have substantially different sizes.

It is a generalization of the master theorem for divide-and-conquer recurrences, which assumes that the sub-problems have equal size.

It is named after mathematicians Mohamad Akra and Louay Bazzi.

[1] The Akra–Bazzi method applies to recurrence formulas of the form:[1] The conditions for usage are: The asymptotic behavior of

( x )

is found by determining the value of

for which

k

and plugging that value into the equation:[2] (see Θ).

Intuitively,

i

represents a small perturbation in the index of

By noting that

and that the absolute value of

can be used to ignore the floor function in the index.

Similarly, one can also ignore the ceiling function.

will, as per the Akra–Bazzi theorem, have the same asymptotic behavior.

Suppose

is defined as 1 for integers

for integers

In applying the Akra–Bazzi method, the first step is to find the value of

Then, using the formula, the asymptotic behavior can be determined as follows:[3] The Akra–Bazzi method is more useful than most other techniques for determining asymptotic behavior because it covers such a wide variety of cases.

Its primary application is the approximation of the running time of many divide-and-conquer algorithms.

For example, in the merge sort, the number of comparisons required in the worst case, which is roughly proportional to its runtime, is given recursively as

and for integers

, and can thus be computed using the Akra–Bazzi method to be

( n log ⁡ n )