I'm trying to solve two problems with Master theorem (quoted at the end of this post). I have solved them and found some answers, but I'm not sure whether my answers are right or not. Can you please check my answers and if they have any problem, explain for me?
Thank you so much.
$$T(n)=2T\left(\frac{n}2\right)+n\sqrt{\log n}$$
My answer, which I have found with Case 2 of Master theorem: $$\theta(\log^\frac{3}2n)$$
$$T(n)=T\left(\frac{2n}3\right)+\log^2n$$
My answer, which I have found with case 2 of Master theorem: $$T(n)=\theta(\log^3n)$$
Here's the statement of the Master theorem:
