636 views

2 Answers

0 votes
0 votes

Use Master Theorem with$ a = 2, b = 3, c = 4, d = 0$.

Since $a > b^{d}, (d<log_{b}a)$

we know that f(n) is $O(n^{ log_{b }a} ) = O(n ^{log_{3} 2} ).$

Related questions

0 votes
0 votes
1 answer
1
admin asked May 9, 2020
1,221 views
Solve the recurrence relation for the number of rounds in the tournament described in question $14.$
0 votes
0 votes
1 answer
2
admin asked May 9, 2020
524 views
How many rounds are in the elimination tournament described in question $14$ when there are $32$ teams?
0 votes
0 votes
1 answer
4
admin asked May 9, 2020
549 views
Give a big-O estimate for the function $f$ given below if $f$ is an increasing function.$f (n) = 2f (n/3) + 4 \:\text{with}\: f (1) = 1.$