Michael D. answered 06/21/25
Math PhD; 15+ Years Teaching Discrete Math for Computer Science
Since (the complicated expression in the middle of the inequality) has both a lower bound, 2|x|, and an upper bound, 18|x|, this will most likely be big-Theta (Θ). The lower and upper bounds are each a constant multiple of the same function, |x|. Therefore:
| ((4x-5)(2x+5))/(3x^2+6) | = Θ(|x|)
It's worth noting that this function is not actually big-Theta of |x|, although it is big-Oh of |x|. But that's another issue.