consider the following function $f(n) =$ $n^{4.5}-$$(n-2)^{4.5}$ I want to calculate a good tighter upper bound for it. I calculated a lower bound for it like - $n^{4.5} - (n-2)^{4.5} >= n^{4.5} - \sqrt n * (n-2)^3$ Now if we expand $(n-2)^3$ the $n^{4.5}$ term will cancel out and we will have a $n^{3.5}$ term
So $f(n) \geq c * n^{3.5}$ for some constant $c$ we can say...
But getting a good upper bound seems confusing to me... Also not sure if this lower bound is a tight one.
Thanks