I'm looking at the following problem:
T(n)=57*T(n/4) + O(n^3)
I understand that I need to use the master theorem to solve this, but all the examples in my textbook and online have big theta in the equation instead of big-O. Are the three cases the same for both?
Any help is very much appreciated.
