Going by the exercises of a book I have been factorizing quadratic equations the following way, let's say I have:
$$ {x^2 - 7x + 12 = 0} $$
I know that
$$ {a \times b = 12 \\ \text{ and } \\ a + b = -7} $$
So it's easy enough to figure out that -3
and -4
will do.
The result is obviously:
$$ {(x - 3)(x - 4) = 0} $$
I a trying to apply the same logic to the following:
$$ {4x^2 - 4x - 15 = 0} $$
so
$$ {a \times b = -15 \\ \text{ and } \\ a + b = -4} $$
There is no obvious answer that I can think of, I guess I could solve the equation system and get an a and a
and a b
but this makes no sense in this context since it would basically only add complexity to the original context.
Am I missing something obvious here?
How can I factorize this? Should modify the original equation some way so that it's possible?