Calculate $\theta$ from recurrence function $T(n)=8T(\frac{n}{2})+n^2$

109 Views Asked by At

How to properly calculate $\Theta$ of recurrence function $T(n)=8T(\frac{n}{2})+n^2$ ?

1

There are 1 best solutions below

0
On BEST ANSWER

Hint: Using Master Theorem: $$T(n) = \Theta(n^3)$$