Factorization Problem: Solve with Expert Help

  • Thread starter Thread starter Miike012
  • Start date Start date
AI Thread Summary
The discussion revolves around solving a factorization problem involving two polynomials using the Euclidean algorithm. The user describes their step-by-step process of polynomial division, including determining how many times one polynomial divides into another and performing subtraction to find the greatest common factor (GCF). There is a recognition that this method is similar to finding the GCD of integers, although the user expresses unfamiliarity with it. Participants emphasize the importance of understanding this fundamental concept for future mathematical studies. Mastery of this technique is deemed beneficial for advancing in mathematics.
Miike012
Messages
1,009
Reaction score
0
Factroring problem...

Homework Statement


I added an attachment with questions in side... thank you.


Homework Equations





The Attempt at a Solution

 

Attachments

  • Untitled.jpg
    Untitled.jpg
    40.2 KB · Views: 383
Physics news on Phys.org


Start by writing the two polynomials in two columns:
Code:
   | 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 |

Look at the leading coefficients of the bottom-most polynomials on each column. (At the moment, there is only one polynomial in each column.) Determine how many times does one polynomial divide into the other. The left one divides into the right one twice, so put a two on the right-most side:

Code:
   | 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 | 2

Multiply that 2 by the left polynomial and put the answer underneath the right polynomial:

Code:
   | 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 | 2
   |                       | 8x^2 - 6x^2 - 48x - 18 |

Subtract:
Code:
   | 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 | 2
   |                       | 8x^2 - 6x^2 - 48x - 18 |
   |                       |------------------------|
   |                       |        4x^2 -  5x - 21 |

Repeat the process. Look at the bottom-most polynomials in each column. Determine how many times one polynomial divides into the other. The new right polynomial divides into the left polynomial x times, so write an x on the extreme left:

Code:
  x| 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 | 2
   |                       | 8x^2 - 6x^2 - 48x - 18 |
   |                       |------------------------|
   |                       |        4x^2 -  5x - 21 |

Multiply the new right polynomial by x and write underneath the left:
Code:
  x| 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 | 2
   | 4x^3 - 5x^2 - 21x     | 8x^2 - 6x^2 - 48x - 18 |
   |                       |------------------------|
   |                       |        4x^2 -  5x - 21 |

Subtract:
Code:
  x| 4x^3 - 3x^2 - 24x - 9 | 8x^3 - 2x^2 - 53x - 39 | 2
   | 4x^3 - 5x^2 - 21x     | 8x^2 - 6x^2 - 48x - 18 |
   |-----------------------|------------------------|
   |        2x^2 -  3x - 9 |        4x^2 -  5x - 21 |

Repeat the process again. Now you have two new polynomials to compare. I'm not going to go further, so hopefully you get it now.

This is method that I am not familiar with in finding the GCF between two polynomials. Anyone else have seen this?
 


Thank you...
Did you already know how to do this? Or did you understand all the from just reading what I sent?
 


It's just the Euclidean algorithm, isn't it?
 


Never hurd of it...?
 


Interesting... My alg. books never taught me that...
 


Miike012 said:
Interesting... My alg. books never taught me that...

They should have. If you are doing it with polynomials, it's clearer if you practice with integers first.
 


I understand the process now that I was shown how... Its just hard for me to understand why it works though...
 
  • #10


Will this be beneficial to know for my future in math?
 
  • #11


Miike012 said:
Will this be beneficial to know for my future in math?

It's a fundamental thing. If your future in math depends on knowing fundamentals, then yes, this is one.
 
Back
Top