Description: f(n) is Θ(g(n)) if there exist constants c1,c2>0 and n0≥0 such that 0≤c1g(n)≤f(n)≤c2g(n) for all where f(n) denotes the running time ie.f(n)=32n2+17n+1→f(n) is Θ(n2) for c1=32,c2=50,n0=1 not Θ(n) nor Θ(n2)