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?
In the case of a non-one coefficient in front of the $x^2$ term, like $ax^2 + bx + c$, you have to find two numbers that add to $b$ and that multiply to $ac$ instead of to $c$. So for $4x^2 - 4x - 15$ we need two numbers that multiply to $4\times(-15) = -60$ and add to $-4$; $6$ and $-10$ work. Then: $$4x^2 - 4x - 15 = 4x^2 + 6x - 10x - 15 = 2x(2x+3) - 5(2x+3) = (2x-5)(2x+3).$$