Wolfram ResearchProductsPurchasingServices & ResourcesAbout UsOur Sites
Mathematica Technical FAQs Services & Resources / Mathematica / Kernels & Programming
-----
 /
Symbols
*Mathematica
*Network Mathematica
*webMathematica
*gridMathematica
*Personal Grid Edition
*Wolfram Workbench
*Wolfram Education Group
*Application Packages
*Mathematica for Students
*Mathematica CalcCenter
*Publicon
*A New Kind of Science Explorer
*Mathematical Explorer
*Mathematica Teacher's Edition
*Calculus WIZ
*Mathematica Player
*Ask about this page
*Print this page
*Email this page
*Give us feedback
*
Sign up for our newsletter:

FactorList


Usage Message:

FactorList[poly] gives a list of the factors of a polynomial, together with their exponents.

Attributes[FactorList] = {Protected}

Options:

Extension -> None
GaussianIntegers -> False
Modulus -> 0
Trig -> False

Related Symbols

CoefficientList
Factor
FactorTermsList
TrigFactorList

Notes:

FactorList is similar to Factor except that factors are returned as a list rather than in a product.

The result from Factor can be constructed by combining the factors and exponents returned by FactorList. For example:


In[1]:= expr = FactorList[28 x^2-7 y^2]

Out[1]= {{7, 1}, {2 x - y, 1}, {2 x + y, 1}}

In[2]:= Times @@ Apply[#1^#2 &, expr, {1}]

Out[2]= 7 (2 x - y) (2 x + y)

In[3]:= Factor[28 x^2-7 y^2]

Out[3]= 7 (2 x - y) (2 x + y)

Known Bugs:

See Factor .


Additional Online Documentation:

Mathematica 3.0
http://documents.wolfram.com/v3/RefGuide/FactorList.html

Mathematica 4.0
http://documents.wolfram.com/v4/RefGuide/FactorList.html




 © 2008 Wolfram Research, Inc.  Terms of Use  Privacy Policy