The most common way to find the factors of these functions is to calculate the delta
With a function f(x) = a*x^2 + b*x +c (a,b,c are constants)
delta = b^2 - 4*a*c
then the two factors of the function are x1 = (-b - delta^(1/2))/(2*a) and x2 = (-b + delta^(1/2))/(2*a)
If delta < 0 then you can not factorize the function, or the there is no x for f(x) = 0.
If delta > 0, you can factorize the function f(x) = (x-x1)*(x-x2) with x1 and x2 calculated as shown above.
If delta = 0, x1 = x2 and f(x) = (x-x1)^2
__________
For example, f(y) = y^2 + 5y - 36
we have a = 1, b = 5 and c = -36, thus delta = 5^2 - 4*1*(-36) = 169 = 13^2
delta > 0, we have two different factor x1 and x2. (delta)^(1/2) = 13. Therefore,
x1 = (-5 - 13)/2 = -9
x2 = (-5 +13)/2 = 4
Thus, f(y) = y^2 +5y - 36 can be factorized as f(y) = (y +9)*(y-4).