Given a quadratic like this:
$2x^2 + 7x + 3$
I need to find two numbers $a$ and $b$ that have these properties:
$a + b = 7$
$a \cdot b = 2 \cdot 3$
Which in this case is 1 and 6.
So I can rewrite the equation as:
$ 2x^2 + 1x + 6x + 3$
$= x(2x + 1) + 3(2x + 1)$
$= (2x + 1) (x + 3)$
I wanted to know why this method works. I found a proof in a khan academy video that goes like this, based on the multiplication of two binomials:
$(fx + g) (hx + j)$
$= fhx^2 + ghx + jfx + gj$
$= fhx^2 + x(gh + jf) + gj$
Then let's assume that $gh = a$ and $jf = b$ this would be the proof for finding the middle coefficients. I understand this part.
The video then tells me that therefore $a \cdot b = gh \cdot jf$ which can be rewritten as $a \cdot b = fh \cdot gj$.
I don't understand this part - because for me it doesn't really prove that I need to find a number that multiplies the first coefficient with the constant (the last number) in the equation. Is there maybe another way to explain that?