Simple factoring question here: Thanks

  • Thread starter Thread starter nukeman
  • Start date Start date
  • Tags Tags
    Factoring Thanks
Click For Summary

Homework Help Overview

The discussion revolves around factoring the quadratic expression 2x^2 - 7x - 4. Participants are exploring various methods and approaches to factor the trinomial, seeking clarification on the process involved.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants share initial thoughts on factoring, with some suggesting different starting points, such as identifying variable arrangements or considering factor pairs. There is a discussion about the correct factors needed to achieve the desired coefficient for the x term.

Discussion Status

The conversation is ongoing, with participants providing insights and corrections regarding the factoring process. Some have offered alternative methods and tricks for approaching the problem, while others express confusion about the steps involved.

Contextual Notes

There is a noted discrepancy in the original problem statement, with participants clarifying the correct quadratic expression to be factored. Additionally, some participants mention the challenge of working with non-integer coefficients in factoring.

nukeman
Messages
651
Reaction score
0

Homework Statement



Ok, just doing a re-fresher here!

2x^2 - 7x - 2

Factor it...

First, let me ask you guys, when you see this, what is the FIRST thing you think of doing?


The Attempt at a Solution



For me... And I do not think this is correct.

I would first automatically put the following:

(2x ) (x )

?

Then, all I need to do is put in the values that add to -4?
 
Physics news on Phys.org
nukeman said:
[tex]2x^2 - 7x - 2[/tex]
Factor it...

First, let me ask you guys, when you see this, what is the FIRST thing you think of doing?
I take a look at the variable and I check where it is around.
So, here I go for:

[tex]x(2x-7)-2[/tex]
 
Ok thanks for the input.

The answer from my text says:

(2x + 1) (x - 4)
 
nukeman said:

Homework Statement



Ok, just doing a re-fresher here!

2x^2 - 7x - 2

Factor it...

First, let me ask you guys, when you see this, what is the FIRST thing you think of doing?


The Attempt at a Solution



For me... And I do not think this is correct.

I would first automatically put the following:

(2x ) (x )

?
So far, so good.
Next, you want to find two factors of -2 so that the x terms add up to -7.

Here are the possibilities:
(2x - 2) (x + 1) -- x term is -2x + 2x = 0x
(2x + 2) (x - 1) -- x term is 2x - 2x = 0x
(2x + 1) (x - 2) -- x term is x - 4x = -3x
(2x - 1) (x + 2) -- x term is -x + 4x = 3x

So, no good, since none of the combinations gave us an x term with a coefficient of -7.

Your quadratic trinomial doesn't factor into "nice" factors (i.e., factors with integer coefficients).

nukeman said:
Then, all I need to do is put in the values that add to -4?
 
Kolmin said:
I take a look at the variable and I check where it is around.
So, here I go for:

[tex]x(2x-7)-2[/tex]

?
This is not what it means to factor a trinomial.
 
nukeman said:
Ok thanks for the input.

The answer from my text says:

(2x + 1) (x - 4)
There's a mistake somewhere. If you expand this product, you get 2x2 - 7x - 4. In post 1 you wrote 2x2 - 7x - 2. Did you make a mistake or is it a typo in your book?
 
Ohh CRAP! Sorry, dam!

Its: 2x^2 - 7x - 4
 
Mark44 said:
?
This is not what it means to factor a trinomial.

:redface:

Linguistic problems...

Sorry for the epic fail.
 
Btw, having now an idea about the problem, I go for the solution of the corresponding equation and then I follow this principle:

[itex]ax^2 + bx + c = a(x-u)(x-v)[/itex]

where [itex]u[/itex] and [itex]v[/itex] are the solutions of the equation.

In this case we indeed have

[tex]2(x-4)(x+ \frac{1}{2})[/tex]

which is equal to the result posted by OP with some manipulation.
 
  • #10
Don't quite understand the steps here :(

2x^2 - 7x - 4

So, like I said, I automatically put:

(2x ) (x )

Then, I need to find 2 factors of -4 that add up to -7 ?
 
  • #11
No, you need to find two factors of -4 so that the two cross terms (the terms in x) have a coefficient of -7.

You're probably thinking of a method where you multiple a times c (the coefficient of the x^2 term times the constant. Then you factor that number into factors that add up to b.

In your problem, a = 2, b = -7, and c = -4
a * c = -8

We look for factors of -8 that add to -7, and these would be 1 and -8.

Now, write the trinomial using these numbers.
2x2 + x - 8x - 4

Now form two groups:
(2x2 + x) + (-8x - 4)

Factor each group:

x(2x + 1) - 4(2x + 1)

Now, use the distributive property to write as (x - 4)(2x + 1).
 
  • #12
nukeman said:
Don't quite understand the steps here :(

2x^2 - 7x - 4

So, like I said, I automatically put:

(2x ) (x )

Then, I need to find 2 factors of -4 that add up to -7 ?
nukeman,

Here's a little trick that I actually picked up from some of my students:

Multiply by 2 to make the leading term a perfect square. (In the en you must divide the result by 2, but that will work fine, because both terms in one of the factors will be multiples of 2.)

[itex]\displaystyle 2x^2 - 7x - 4[/itex]
[itex] \displaystyle =\frac{4x^2 - 7(2x)-8}{2}[/itex]

[itex]\displaystyle =\frac{(2x)^2 - 7(2x)-8}{2}[/itex]​
Now threat the 2x like it is some other variable such as u.

u2 - 7u - 8 = (u -  ?  )(u +  ?  )

Of course those should be filled in with 8 and 1 .

u2 - 7u - 8 = (u - 8)(u + 1)

Then back to the original:

[itex]\displaystyle 2x^2 - 7x - 4[/itex]
[itex] \displaystyle =\frac{(2x)^2 - 7(2x)-8}{2}[/itex]

[itex]\displaystyle =\frac{(2x-8)(2x+1)}{2}[/itex]

[itex]\displaystyle =\frac{2(x-4)(2x+1)}{2}[/itex]​
Giving you the desired result.
 
  • #13
Fantastic! Thank you Mark! :)

Sammy, pretty cool way of doing, never seen that!

Mark44 said:
No, you need to find two factors of -4 so that the two cross terms (the terms in x) have a coefficient of -7.

You're probably thinking of a method where you multiple a times c (the coefficient of the x^2 term times the constant. Then you factor that number into factors that add up to b.

In your problem, a = 2, b = -7, and c = -4
a * c = -8

We look for factors of -8 that add to -7, and these would be 1 and -8.

Now, write the trinomial using these numbers.
2x2 + x - 8x - 4

Now form two groups:
(2x2 + x) + (-8x - 4)

Factor each group:

x(2x + 1) - 4(2x + 1)

Now, use the distributive property to write as (x - 4)(2x + 1).
 
  • #14
Learn the cross method, it'll save you a heap of heartache. I still remember it even after years of not using it (don't be discouraged by that, it's just because most the quadratics I see can't be factorized with integer coefficients).

http://www.youtube.com/watch?v=2dqAPKgC-KI
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 33 ·
2
Replies
33
Views
4K
  • · Replies 7 ·
Replies
7
Views
2K
Replies
4
Views
2K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 10 ·
Replies
10
Views
4K
  • · Replies 6 ·
Replies
6
Views
3K