I'm learning the master method and am looking for help on how to best approach comparing two functions asymptotically. More specifically, I have:
T(n) = 3T(n/5) + lg^2(n)
and so by the Master method I am comparing
n^(log_5(3)) with lg^2(n)
I tried graphing the two functions and it looks like lg^2(n) is larger. But the solution says otherwise. (ie. Case 1.) Can anyone help clear the fog for me? Thanks.