Exponent
Details and Options
- The default taken for h is Max.
- form can be a product of terms.
- Exponent works whether or not expr is explicitly given in expanded form.
- Exponent[0,x] is -Infinity.
- Exponent[expr,{form1,form2,…}] gives the list of exponents for each of the formi.
- Exponent takes the following options:
-
Modulus 0 modulus to assume for integers Trig False whether to do trigonometric as well as algebraic transformations
Examples
open all close allBasic Examples (1)
Scope (4)
Exponent[(x ^ 2 + 1) ^ 3 + 1, x]Exponents may be rational numbers or symbolic expressions:
Exponent[x ^ (n + 1) + 2 Sqrt[x] + 1, x]The lowest exponent in a polynomial:
Exponent[(x ^ 2 + 1) ^ 3 - 1, x, Min]The list of all exponents with which
appears:
Exponent[1 + x ^ 2 + a x ^ 3, x, List]Options (2)
Applications (1)
Compute the leading coefficient:
LeadingCoefficient[poly_, x_] := Coefficient[poly, x, Exponent[poly, x]]LeadingCoefficient[2 + 3x + 17x ^ 5, x]LeadingTerm[poly_, x_] :=
With[{n = Exponent[poly, x]}, Coefficient[poly, x, n]x ^ n]LeadingTerm[2 + 3x + 17x ^ 5, x]Properties & Relations (2)
The number of complex roots of a polynomial is equal to its degree:
f = (x + 1) ^ 5 - 2x + 3;Exponent[f, x]Use Solve to find the roots:
Length[x /. Solve[f == 0, x]]Length of the CoefficientList of a polynomial is one more than its degree:
f = (x ^ 2 + 2x - 1) ^ 7 - 3;Exponent[f, x]Length[CoefficientList[f, x]]Possible Issues (1)
Exponent is purely syntactical; it does not attempt to recognize zero coefficients:
zero = Sqrt[2] + Sqrt[3] - Sqrt[5 + 2Sqrt[6]];
f = zero x ^ 2 + x + 1;Exponent[f, x]Exponent[RootReduce[f], x]See Also
Coefficient CoefficientList Cases IntegerExponent CountRoots NumberFieldSignature
Function Repository: RootDegree
Related Guides
History
Introduced in 1988 (1.0) | Updated in 1996 (3.0) ▪ 2003 (5.0)
Text
Wolfram Research (1988), Exponent, Wolfram Language function, https://reference.wolfram.com/language/ref/Exponent.html (updated 2003).
CMS
Wolfram Language. 1988. "Exponent." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2003. https://reference.wolfram.com/language/ref/Exponent.html.
APA
Wolfram Language. (1988). Exponent. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Exponent.html
BibTeX
@misc{reference.wolfram_2026_exponent, author="Wolfram Research", title="{Exponent}", year="2003", howpublished="\url{https://reference.wolfram.com/language/ref/Exponent.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_exponent, organization={Wolfram Research}, title={Exponent}, year={2003}, url={https://reference.wolfram.com/language/ref/Exponent.html}, note=[Accessed: 13-June-2026]}