I am using the master theorem case 2:
$f\left(n\right)\ =\ n^2\sqrt{n}\ ∈\ Θ\left(n^{\log_b\left(a\right)}\right)\ ∈\ Θ\left(n^{\log_2\left(4\right)}\right)\ ∈\ Θ\left(n^2\right)$
so it looks like the master theorem can be used:
$T\left(n\right)\ =Θ\left(n^{\log_b\left(a\right)}\ lg\ n\right)\ =\ Θ\left(n^{\log_2\left(4\right)}\ lg\ n\right)=\ Θ\left(n^2\ lg\ n\right)$
Is this right?
No, $n^2 \cdot \sqrt{n} \notin \Theta(n^2)$!
To be honest, even the first additive term contradicts your result: $n^2 \cdot \sqrt{n} \notin \Theta(n^2 \log n)$.
I recommend to solve this "by hand" or to choose case $3$ :-)