Post Reply 
Factoring Parametric Polynomials
05-03-2019, 03:23 PM
Post: #2
RE: Factoring Parametric Polynomials
(05-03-2019 02:09 PM)Wild_B Wrote:  Hello all,

With an exam coming out my teacher ask to see my calculator to test its capacity at resolving a command.

I would like to factor parametric polynomial expressions. Ex : x^2-k in relation to x
would anyone know how to do this? or even factor expressions with multiple variables?
For information a TI inspire does this perfectly. on TI inspire this is the command: factor(x^2-k,x)

Thank you for any help that you could provide.

P.S. I dont seem to be able to do it with microsoft math either

For quadratics, all factorizations can be obtained by using the quadratic formula. That said, you need to clarify if you are factoring over the real numbers or complex numbers, since certain values of k would lead to irreducible polynomials (e.g. \( x^2+1 \) cannot be factored since it has no real roots; it can, however, be factored if you are considering complex roots).

Anyway, given \( a\cdot x^2 + b\cdot x + c \), the factors are:

\[ a \left( x - \frac{-b+\sqrt{b^2-4ac}}{2a}\right) \left(x- \frac{-b-\sqrt{b^2-4ac}}{2a}\right) \]

All your TI is doing is substituting in the values for \( a\), \(b\), and \(c\), and then simplifying. You could easily put together a small program that does the same thing.

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Factoring Parametric Polynomials - Wild_B - 05-03-2019, 02:09 PM
RE: Factoring Parametric Polynomials - Han - 05-03-2019 03:23 PM



User(s) browsing this thread: 1 Guest(s)