Factoring Quadratic Expressions: Quickly Solve 126x² - 15x - 66

  • Thread starter QuarkCharmer
  • Start date
  • Tags
    Factoring
Here is the best way to think about factoring a quadratic expression. Let's start with a simple example: factor x^2 + 5x + 6. We need to find two numbers whose product is 6 and whose sum is 5. Well, we know that 2 and 3 are such numbers, so we can factor the expression as (x+2)(x+3).But how did we know that 2 and 3 were the numbers we needed? Well, think about factoring the expression x^2 + bx + c, where b and c are constants. We know that the factors of this expression will have the form (x+r)(x+s), where r and s are some
  • #1
QuarkCharmer
1,051
3

Homework Statement


Factor this quadratic expression completely.
126x² - 15x - 66

Homework Equations

The Attempt at a Solution


126x² - 15x - 66
(9x+6)(14x-11)

I'm a good ways past this subject, but I find that it always takes me longer than some to complete these problems. If the coefficients are low numbers, I can "guess and check" and get the right combination. When the coefficients get into the higher numbers I run into trouble.

I always resort to the "box" method when the factors are not really apparent, but my professor says that I should be using "guess and check" as it's much more efficient.

Here is how I would solve the problem..
126x² - 15x - 66
3(42x² -5x - 22) //factor out the GCF
Now I take 42*-22, and think of factors of that which would make the -5.
-924=(-21*44)=(-22*42)=(-33*28)
Ok, so 33-28=-5

Now I use the "box method"

42x² | 33x
-28x | -66

Factoring out the "box"

14x 11
42x² | 33x 3x
-28x | -66 -2

So now I know the sets of numbers that I can use, I just adjust the signs to work..
3(14x-11)(3x+2) or (9x+6)(14x-11)

I know that I don't have to factor out the GCF, I just did it that way to show my steps.

I am told by everyone that the "guess and check" method is much faster, easier, and generally better to use. Am I guessing-and-checking wrong or something? At least this box method is systematic, I know I will arrive at the right answer, and not based on chance.

Any other tips on how to do this would be greatly appreciated.
 
Physics news on Phys.org
  • #2
First of all, all coefficients are divisible by 3:

[tex]
3 \left(42 x^{2} - 5 x - 22\right)
[/tex]

Then, find the discriminant:
[tex]
D = (-5)^{2} - 4 \cdot 42 \cdot (-22) = 25 + 3696 = 3721 = 61^{2}
[/tex]
so the solutions are:

[tex]
\frac{5 \pm 61}{84} = \left\{\begin{array}{l}\frac{11}{14} \\ -\frac{2}{3}\end{array}\right.
[/tex]

Then, the factoring of the trinomial in the parenthesis is according to the formula:

[tex]
a (x - x_{1})(x - x_{2})
[/tex]

where a is the coefficient before the quardratic term (here 42). Don't forget the factor of 3.
 
Last edited:
  • #3
Edit, I just saw you are still editing that post...
 
  • #4
Dickfore said:
Then, find the discriminant:
[tex]
D = (-5)^{2} - 4 \cdot 42 \cdot (-22) = 25 + 3696 = 3721 = 61^{2}
[/tex]
so the solutions are:

[tex]
\frac{5 \pm 61}{84} = \left\{\begin{array}{l}\frac{11}{14} \\ -\frac{2}{3}\end{array}\right.
[/tex]

Could you clarify this part? I'm not familiar with the "discriminant", other than the definition (which I just looked up).
 
  • #5
The quadratic formula for the quadratic equation [itex]a x^{2} + b x + c = 0[/itex] is:

[tex]
x_{1/2} = \frac{-b \pm \sqrt{D}}{2a}, \; D = b^{2} - 4 \, a \, c
[/tex]
 
  • #6
Dickfore said:
The quadratic formula for the quadratic equation [itex]a x^{2} + b x + c = 0[/itex] is:

[tex]
x_{1/2} = \frac{-b \pm \sqrt{D}}{2a}, \; D = b^{2} - 4 \, a \, c
[/tex]

I see, there seems to be many ways to do this. I'll read up on that. Thank you.
 
  • #7
If a method works for you, use it. I wouldn't worry about what other people say you should be using as long as you get the right answer. I would add, however, that you should at least understand how to use alternate methods. Don't just stick with one method because you don't want to figure out and understand other, possibly more efficient techniques.
 
  • #8
I've seen many high school textbooks "teaching" the so called "box method". The box method is nothing more than a guessing game of trying to solve the system of equations given by the Vieta's Formulas:

[tex]
x_{1} + x_{2} = -\frac{b}{a}
[/tex]

[tex]
x_{1} \, x_{2} = \frac{c}{a}
[/tex]

In fact, you should be using these formulas the other way around. Having found the solutions to the quadratic equation [itex]a x^{2} + b x + c = 0[/tex] by the quadratic formula (which is an intellectual achievement of previous generations to solve an arbitrary quadratic equation), you express the coefficients b and c as:

[tex]
b = -a(x_{1} + x_{2})
[/tex]

[tex]
c = a x_{1} x_{2}
[/tex]

and write the trinomial as:

[tex]
a \left[x^{2} - (x_{1} + x_{2}) x + x_{1} x_{2}\right]
[/tex]

[tex]
a \left( x^{2} - x_{1} x - x_{2} x + x_{1} x_{2}\right)
[/tex]

[tex]
a \left[ x(x - x_{1}) - x_{2}(x - x_{1}) \right]
[/tex]

[tex]
a (x - x_{1})(x - x_{2})
[/tex]

Once you have the general formula, keep substituting numbers and it will always work, provided that the discriminant is nonnegative.
 
  • #9
vela said:
If a method works for you, use it. I wouldn't worry about what other people say you should be using as long as you get the right answer. I would add, however, that you should at least understand how to use alternate methods. Don't just stick with one method because you don't want to figure out and understand other, possibly more efficient techniques.

Well, the so-called "box" method is the easiest way for me to come up with the correct numbers to use in the factors. Then it take 2 seconds of thinking to figure out the signs. Dickfore's method creates a great deal more work than either of the two methods I knew how to use :P (Still, thank you for the information).

Suppose you have something like..
Ax²+Bx+C

If A is a relatively large number, and I cannot factor anything else out of the expression, I have a hard time finding the product of two numbers that would equal C, and add/multiply up to equal B, given that a factor of A is going to work on one (or both) of the numbers. Is there an easier way to look at it and determine how to factor A?

It seems to me that if A has 6 ways of being factored, and then C has 6 ways of being factored, that is a possible 36 combinations (not including how the signs are arranged). My professor preaches "guess and check" for this situation, which I think is a bit unreasonable unless the coeficcient of x² is a really small number.
 
  • #10
One rule I heard of is to guess and check if the leading coefficient is prime (I think this should also work fine if c is prime), otherwise use the "box method" or the quadratic formula. You can still try guessing and checking if a has only a couple of different pairs of factors, but as the number of different pairs of factors increases, you should really consider using another method.
 
  • #11
attachment.php?attachmentid=27166&stc=1&d=1280036804.jpg


By Approx(smart guess)

*Ignore my last step:redface:It is better to estimate the distance between the roots: 5/3
 

Attachments

  • factorisation.jpg
    factorisation.jpg
    5.7 KB · Views: 365
Last edited:

Related to Factoring Quadratic Expressions: Quickly Solve 126x² - 15x - 66

1. What is factoring quadratic expressions?

Factoring quadratic expressions is the process of breaking down a quadratic expression into its factors, which are expressions that can be multiplied together to get the original expression. This is a useful technique in algebra for solving equations and simplifying complex expressions.

2. How do you factor a quadratic expression?

To factor a quadratic expression, look for common factors between the terms and use the distributive property to break down the expression. For example, in the expression 126x² - 15x - 66, you can factor out the greatest common factor of 3 to get 3(42x² - 5x - 22). Then, you can use techniques like grouping, the quadratic formula, or factoring by trial and error to find the remaining factors.

3. What is the purpose of factoring quadratic expressions?

The main purpose of factoring quadratic expressions is to simplify and solve equations. By breaking down a quadratic expression into its factors, you can easily find the roots or solutions of the equation. Factoring can also help in graphing quadratic functions and understanding their behavior.

4. Can every quadratic expression be factored?

No, not every quadratic expression can be factored. Some quadratic expressions, known as prime quadratics, cannot be factored because they do not have any common factors or their factors are not whole numbers. An example of a prime quadratic is x² + 5x + 7.

5. What are some common mistakes to avoid when factoring quadratic expressions?

Some common mistakes to avoid when factoring quadratic expressions include forgetting to check for common factors, using incorrect sign when factoring out a negative, and making arithmetic errors. It is also important to remember to always check your factoring by multiplying the factors back together to make sure you get the original expression.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
7
Views
3K
  • Precalculus Mathematics Homework Help
Replies
6
Views
2K
  • STEM Educators and Teaching
Replies
2
Views
12K
  • Precalculus Mathematics Homework Help
Replies
2
Views
5K
Replies
1
Views
2K
Replies
8
Views
9K
  • Math Guides, Tutorials and Articles
Replies
4
Views
8K
  • General Discussion
Replies
18
Views
11K
  • Precalculus Mathematics Homework Help
Replies
7
Views
2K
Replies
6
Views
2K
Back
Top