Factors Command

From GeoGebra Manual
Revision as of 17:25, 6 April 2015 by Mathmum (talk | contribs) (→‎CAS Syntax: fixed bad math rendering - fixed first example with the new output)
Jump to: navigation, search



Factors[ <Polynomial> ]
Gives a list of lists of the type {factor, exponent} such that the product of all these factors raised to the power of the corresponding exponents equals the given polynomial. The factors are sorted by degree in descending order.
Example:
Factors[x^8 - 1] yields {{x^4 + 1, 1}, {x^2 + 1, 1}, {x + 1, 1}, {x - 1, 1}}.
Note: Not all of the factors are irreducible over the reals.
Factors[ <Number> ]
Gives a list of lists of the type {prime, exponent} such that the product of all these primes raised to the power of the corresponding exponents equals the given number. The primes are sorted in ascending order.
Example:
  • Factors[1024] yields {{2, 10}}, since 1024 = 2^{10}.
  • Factors[42] yields {{2, 1}, {3, 1}, {7, 1}}, since 42 = 2^1・3^1・7^1.


CAS Syntax

Factors[ <Polynomial> ]
Yields a matrix of the type (factor, exponent) such that the product of all these factors raised to the power of the corresponding exponents equals the given polynomial. The factors are sorted by degree in descending order.
Example: Factors[x^8 - 1] yields \left( \begin{array}{} x - 1 & 1 \\ x +1 & 1 \\x^2 + 1& 1 \\x^4 + 1& 1 \\ \end{array} \right)
Note: Not all of the factors are irreducible over the reals.
Factors[ <Number> ]
Yields a matrix of the type {prime, exponent} such that the product of all these primes raised to the power of the corresponding exponents equals the given number. The primes are sorted in ascending order.
Example:
  • Factors[1024] yields \left( \begin{array}{} 2 & 10 \\ \end{array} \right) , since 1024 = 2^{10}.
  • Factors[42] yields \left( \begin{array}{} 2 & 1 \\ 3 & 1 \\7 & 1 \\ \end{array} \right) , since 42 = 2^1 · 3^1 · 7^1.


© 2024 International GeoGebra Institute