Normally, the way I am solving those problems is the following: $3T(\frac{n}{2})+ n^4$
$a=3 ; b = 2 ; d=4$
then I am doing $\log(b(a))$ which is $log(2(3))= 0.6$
Since $0.6 < d$ I can apply the 1st case of the Master Therom which is $n^d$
My issue right now is I have to solve $T(n) = 2T (\frac{n}{4}) + (\sqrt n)$
So what is $d$ in that case? Normally $d$ is the power of $n$ but here we just have a $square$. Thank you
$$\log_ba=\log_42=1/2\implies f(n)=\sqrt n\in\Theta(n^{\log_ba})$$Thus, by the Master Theorem, $T(n)\in\Theta(\sqrt n\log n)$.