Legacy Documentation

Mathematica® Teacher's Edition (2002)

This is documentation for an obsolete product.
Current products and services
 Documentation /  Mathematica Teacher's Edition /  Built-in Functions /  Mathematical Functions /  Number Theory /

FactorInteger

FilledSmallSquare FactorInteger[n] gives a list of the prime factors of the integer n, together with their exponents.

FilledSmallSquare Example: FactorInteger[2434500]LongRightArrow.
FilledSmallSquare For negative numbers, the unit {-1, 1} is included in the list of factors.
FilledSmallSquare FactorInteger also works on rational numbers. The prime factors of the denominator are given with negative exponents.
FilledSmallSquare FactorInteger[n, GaussianIntegers->True] factors over Gaussian integers.
FilledSmallSquare When necessary, a unit of the form {-1, 1}, {I, 1} or {-I, 1} is included in the list of factors.
FilledSmallSquare FactorInteger[n, FactorComplete->False] does a fast but not necessarily complete factorization, and extracts only those factors that are easy to find.
FilledSmallSquare See The Mathematica Book on the web: Section 1.1.3, Section 1.4.9 and Section 3.2.4.
FilledSmallSquare Implementation Notes: see Section A.9.4.
FilledSmallSquare See also: IntegerExponent, Prime, PrimeQ, Divisors.