I need some help with this recurrence. I tried it by myself and I got teta( (n^3)logn) but Wolfram Alpha says this:

I guess this is like an O( (n^3) log^2(n)). I can't use master theorem, so I solved it by recurrence. This is my solution, but I don't know what's wrong with it

You made a mistake in the last stage. Using these properties:
log(x) + log(y) = log(xy)andlog(x/y) = log(x) - log(y)and log(x^y) = y log(x)`, we have the following:Therefore, the time complexity is
m^3 log^2(m).