The basic justification is very simple.
is the number of leaves on the tree.
- If f(n) polynomially less than
, then the number
of leaves dominates in the recurrence:
(Rule
1).
- If f(n) polynomially more than than
, then the
first appearance of f(n) in the tree dominates in the recurrence:
(Rule 3).
(There is a ``regularity'' condition on f(n) for this to be true
that holds for nearly all functions that we'll see, so you can ignore it).
- If f(n) and
balance, then f(n) makes a
contribution at every level:
(Rule 2).
Next: The Gaps
Up: MASTER METHOD
Previous: The Theorem