For the recurrence T(n)=2T(n/2)+n2T(n) = 2T(n/2) + n^2T(n)=2T(n/2)+n2, identify the correct case of the Master Theorem.
Case 1: f(n)=O(nlog22−ϵ)f(n) = O(n^{\log_2 2 - \epsilon})f(n)=O(nlog22−ϵ)
Case 2: f(n)=Θ(nlog22)f(n) = \Theta(n^{\log_2 2})f(n)=Θ(nlog22)
Case 3: f(n)=Ω(nlog22+ϵ)f(n) = \Omega(n^{\log_2 2 + \epsilon})f(n)=Ω(nlog22+ϵ)
None of the above