Analyze, using therecursion tree method, the rate of growth of a T(n) that satis
ID: 3608293 • Letter: A
Question
Analyze, using therecursion tree method, the rate of growth of aT(n) that satisfies the following recurrence:
T(1) = c, and if n > 1 then T(n) = 8T(n/3) + cn2where c is a constant.
This is just about the “asymptotic order” of thesolution, not its exact value. You can
assume, for simplicity, that n = 3q for someinteger q Analyze, using therecursion tree method, the rate of growth of a
T(n) that satisfies the following recurrence:
T(1) = c, and if n > 1 then T(n) = 8T(n/3) + cn2where c is a constant.
This is just about the “asymptotic order” of thesolution, not its exact value. You can
assume, for simplicity, that n = 3q for someinteger q
Explanation / Answer
T(n) = 8T(n/3) +cn2