I am studying the book Introduction to Algorithms, by Thomas H. Corman. I am studying the asymptotic notation. One thing is bothering me, because the author stated that:
f(n)=Big-theta(g(n)) implies f(n)=Big-O(g(n)) , since Big-theta notation is stronger notion than O-notation. HOW??
and the author also stated that (an^2+bn+c), where a>0, is in Big-theta(n^2) also shows that such quadratic function is in Big-O(n^2). HOW??