Roman C. answered 11/29/12
Masters of Education Graduate with Mathematics Expertise
To factor ax2 + bx + c, whenever it is possible, you want to find two integers m and n whose sum is b and product is ac. Then you can readily factor.
Let's try this on your quadratic, 3x2 + 13x - 10.
We want two numbers whose sum is 13 and product is -30.
-30 factors in a number of ways: -30*1, -15*2, -10*3, -6*5, -5*6, -3*10, -2*15, and -1*30.
The desired factorization is -2*15 since -2+15 = 13.
Thus,
3x2 + 13x - 10 = 3x2 - 2x + 15x - 10 = x(3x-2) + 5(3x-2) = (x+5)(3x-2)
Your (3x+2)(x-5) is actually a factorization of 3x2 - 13x - 10, but is obtainable the same way.