in Algorithms
307 views
0 votes
0 votes
$T\left ( n \right )= 8T\left ( \frac{n}{2} \right )+\left ( n\cdot logn \right )^{2.99}$

Also can $\mathcal{O}(n^{3})$ be an upper bound to above recurrence relation?
in Algorithms
by
307 views

1 comment

you can use master theorem here.   a=8 b=2   k =2.99 and p = 2.99

a>b$^{k}$    (8>2$^{2.99}$)   and if p>=0  then n$^{k}$ log$^{p}$n.

so n$^{2.99}$log$^{2.99}$n

let  n$^{2.99}$log$^{2.99}$n   = X

we can easily see  X<n$^{3}$.  so yes it is upper bond .
1
1

Please log in or register to answer this question.

Related questions