What is if we have
f(n) = 15n^2logn +500n^2,5 ,
g(n) = n^3 + 1000 ,
h(n) = 21n^3logn ,
x(n) = 50n^2,5 + n*log(n)
How to check " is f(n) O(g(n) or O(h(n)) , or O(x(n)) and why?
and other examples?
like is h(n) O(g(n)) or is f(n) O(n^2logn)