The ability to factor polynomials is an important algebraic tool. You will find that the factoring capabilities of Scientific Notebook are powerful and useful. You can factor polynomials with integer or rational roots and with other roots directly related to the coefficients of the expanded polynomial.
To factor a polynomial, you must type it without using decimal notation.
Numbers such as 1.5 are interpreted as floating-point
numbers, and
Factor does not handle polynomials with floating-point
coefficients. Replace decimal numbers with fractions (such as
1.5 = ), and then apply Factor.
Note that factoring polynomials generally returns factors with integer coefficients. Factor is effective primarily for polynomials with integer or rational coefficients, although it also factors polynomials whose roots are closely related to the coefficients, as demonstrated in the two preceding examples. Technically, the polynomial is factored over the field generated by its coefficients. If all the coefficients are rational, then the polynomial is factored over the rationals. Apply Factor to get the following product.
Factor
x2 +3x -
=
3x + 20
3x - 2
![]()
You can factor not only the difference of two squares and the sum and difference of two cubes, but also the difference of any two equal powers with Scientific Notebook.
Factor
x2 - y2 =x - y
x + y
![]()
x3 - y3 =x - y
x2 + xy + y2
![]()
x4 - y4 =x - y
x + y
x2 + y2
![]()
You can also factor the sum of any two equal odd powers.
Factor
x3 + y3 =x + y
x2 - xy + y2
![]()
x5 + y5 =x + y
x4 - x3y + x2y2 - xy3 + y4
![]()
x7 + y7 =x + y
y6 - xy5 + x2y4 - x3y3 + x4y2 - x5y + x6
![]()