I have Master theorem for finding complexities but the problem is Master theorem says
For a recurrence of form
T(n) = aT(n/b) + f(n) where a >= 1 and b > 1
There are following three cases: /******************logba means log of a with b as base **************/
If f(n) = Θ(n^c) where c < Logba then T(n) = Θ(nLogba)If f(n) = Θ(n^c) where c = Logba then T(n) = Θ(ncLog n)If f(n) = Θ(n^c) where c > Logba then T(n) = Θ(f(n))
Now for My Problem
T(n) = T(n/2) + n^2
My Solution c = 2 and logba = log of 2 with 1 as base = infinity
So in which case it falls and what is the complexity