Leading Coefficient
The leading coefficient is the coefficient of the term with the highest degree in a polynomial written in standard form.
Definition
The leading coefficient is the number in front of the highest-powered variable in a polynomial written in standard form (descending powers), the coefficient of the leading term; a polynomial is called monic if its leading coefficient is $1$. Together with the degree, it determines end behavior: a positive leading coefficient with even degree sends both ends up, while positive with odd degree sends the left end down and the right end up. For $f(x) = a_nx^n + \ldots + a_0$ with $a_n \neq 0$, the leading coefficient governs asymptotic behavior, $f(x)/(a_nx^n)$ approaches $1$ as $x \to \pm\infty$, and monic polynomials are canonical representatives in many algebraic constructions, such as the minimal polynomial of an algebraic number or the characteristic polynomial $\det(A - \lambda I)$ of a matrix $A$, both always monic of degree $n$.
Example
In $4x^3 + 2x - 1$, the leading coefficient is $4$; in $-2x^4 + x^3$, it is $-2$. In $-3x^4 + 7x^2 - x + 2$, the leading coefficient $-3$ is negative with even degree $4$, so both ends of the graph point downward.
Key Insight
"Leading" means it comes first when the polynomial is written with the highest power first, and its sign determines whether the graph opens up or down. In root-finding and computer algebra, normalizing polynomials to monic form simplifies algorithms for GCD, factoring, and resultants.