I'm throwing a bit of a blank on the best way to factor this :
$$6x^2 -5x -14 = 0$$
I know that I could multiply $6$ by $14$ and then find a pair of factors that add to $-5$ (b), but this feels a bit convoluted and I'm sure that I've gone about this a bit of an easier way before, I just can't remember how...
Does anyone know the simplest way?
cheers!
The simplest way is to factor by splitting and grouping. To split the linear term of $6x^2 - 5x - 14$, we must find two numbers with product $6 \cdot -14 = -84$ and sum $-5$. They are $-12$ and $7$. Hence,
\begin{align*} 6x^2 - 5x - 14 & = 0\\ 6x^2 - 12x + 7x - 14 & = 0 && \text{split the linear term}\\ 6x(x - 2) + 7(x - 2) & = 0 && \text{factor by grouping}\\ (6x + 7)(x - 2) & = 0 && \text{extract the common factor} \end{align*}
If a product is equal to zero, then one of the factors must equal zero. Hence,
\begin{align*} 6x + 7 & = 0 & x - 2 & = 0\\ 6x & = -7 & x & = 2\\ x & = -\frac{7}{6} \end{align*}
Note that if you want to check your factorization is correct, you form the product
\begin{align*} (6x + 7)(x - 2) & = 6x(x - 2) + 7(x - 2)\\ & = 6x^2 - 12x + 7x - 14\\ & = 6x^2 - 5x - 14 \end{align*} so factoring by splitting and grouping is simply performing the steps of multiplying two linear factors in reverse order. The reason it works is that if a quadratic polynomial splits into linear factors, then the product of the quadratic coefficient and constant term is equal to the product of the coefficients of the two linear terms into which it splits. In this case, $6(-14) = (-12)(7)$. In general, if
$$ax^2 + bx + c = (mx + n)(px + q) = mpx^2 + (mq + np)x + nq$$
then $ac = (mp)(nq) = (mq)(np)$, where $mq + np = b$.
This is certainly more efficient than guessing the linear factors. You could find the factors directly by completing the square (as Michael Hardy demonstrated), but this involves more work. You could also find the factors by solving the equation using the Quadratic Formula, then working backwards to determine the factors (again, as Michael Hardy demonstrated). However, if your goal is to solve the equation, you do not need to factor the quadratic if you have applied the Quadratic Formula to find the roots.
I will step off my soapbox now.