This equation is of the form
a*x^2 + b*x + c = 0
A quadratic equation can be solved
using the discriminant.
The roots of the quadratic equation:
$$x_{1} = \frac{\sqrt{D} - b}{2 a}$$
$$x_{2} = \frac{- \sqrt{D} - b}{2 a}$$
where D = b^2 - 4*a*c - it is the discriminant.
Because
$$a = 5$$
$$b = 9$$
$$c = 4$$
, then
D = b^2 - 4 * a * c =
(9)^2 - 4 * (5) * (4) = 1
Because D > 0, then the equation has two roots.
x1 = (-b + sqrt(D)) / (2*a)
x2 = (-b - sqrt(D)) / (2*a)
or
$$x_{1} = - \frac{4}{5}$$
$$x_{2} = -1$$