This problem is from Discrete Mathematics and its Applications

I am currently working on 2a.
I am trying to apply an example the book gave earlier

Is there some similar clever trick I can apply to 2a to shorten the math I would have to do?
Here is the work I have so far

I prefer not to go through the quadratic equation solver http://www.mathsisfun.com/quadratic-equation-solver.html and getting some floating point value but i can't find something like x > 7 for 17x + 11
You want to show that $17x+11$ is $O(x^2)$.
This is easiest if you don't start with deciding on a constant factor, but instead start by finding a suitable lower bound for the inequality.
For example, suppose $x>11$. Then
$$ \tag{*} 17x+11 < 17x+x < 18x $$
Hmm, this would be less than $x^2$ if only $x>18$. But since $18>11$, all of (*) is still true for $x>18$, so we can change our mind and say that for $x>18$ we have
$$ 17x+11 < 17x+x < 18 x < x^2 $$
Thus we can conclude that $17x+11=O(x^2)$ because $17x+11\le 1\cdot x^2$ for all $x>18$. This is not the "best possible" constants, but in order to prove the result it is enough to find a set that works.