icontent
integer content of a polynomial
Calling Sequence
Parameters
Description
Thread Safety
Examples
icontent(expr)
expr
-
expanded polynomial with rational coefficients
icontent computes a rational number such that dividing the expanded polynomial by it makes the polynomial primitive over the integers. Thus, for integer coefficients, icontent returns the greatest common divisor of the coefficients.
For rational coefficients, icontent computes the least common multiple of the denominators of all fractions in addition to the greatest common divisor of the numerators of the coefficients.
The icontent command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
f≔icontent⁡3⁢x+12⁢y
f≔3
3⁢x+12⁢yf
x+4⁢y
g≔icontent⁡76⁢y+214⁢z
g≔712
76⁢y+214⁢zg
2⁢y+9⁢z
h≔icontent⁡45⁢y+34⁢x−9⁢z
h≔34
45⁢y+34⁢x−9⁢zh
60⁢y+x−12⁢z
See Also
content
Download Help Document