Orchids Logo

Degree of a Polynomial

Class 9Polynomials

When working with polynomials, one of the first things you need to determine is the degree. The degree of a polynomial tells you the highest power of the variable present in the expression, and it controls many important properties — the maximum number of zeroes, the shape of the graph, and the classification of the polynomial. In Class 9, understanding degree is essential because it helps you distinguish between linear, quadratic, cubic, and higher-degree polynomials, each of which has different characteristics and applications. A linear polynomial like 3x + 2 has degree 1 and represents a straight line. A quadratic like x^2 - 5x + 6 has degree 2 and produces a parabola. A cubic like x^3 - 3x + 1 has degree 3 and creates an S-shaped curve. The degree is not just a label — it determines the fundamental nature of the polynomial. Finding the degree requires careful attention: you must look at every term, identify the highest power, and make sure you are not confused by the order in which terms are written. This topic builds the vocabulary and skills you need for the remainder of the Polynomials chapter.

What is Degree of a Polynomial?

The degree of a polynomial in one variable is the highest power (exponent) of the variable that appears in the polynomial with a non-zero coefficient.

For a polynomial p(x) = a_n x^n + a_(n-1) x^(n-1) + ... + a_1 x + a_0, where a_n is not zero, the degree is n.

Examples:

p(x) = 4x^5 - 3x^2 + 7x - 1: Degree = 5 (the highest power is x^5).

q(x) = 2x^2 + 9x + 4: Degree = 2 (the highest power is x^2).

r(x) = 6x - 11: Degree = 1 (the highest power is x^1).

s(x) = 8: Degree = 0 (a non-zero constant has degree 0; think of 8 as 8x^0).

Special cases:

Zero polynomial: p(x) = 0. All coefficients are zero. The degree of the zero polynomial is not defined (or sometimes stated as negative infinity). This is because no term with a non-zero coefficient exists.

Constant polynomial (non-zero): p(x) = c, where c is not 0. The degree is 0.

Important notes:

1. The degree depends on the highest power with a non-zero coefficient. If p(x) = 0x^3 + 5x^2 + 1, the degree is 2 (not 3, because the coefficient of x^3 is 0).

2. The terms do not need to be in descending order. For p(x) = 3 + 2x - x^4, the degree is still 4.

3. For polynomials in more than one variable (multivariable), the degree is the highest sum of exponents in any single term. For example, in 3x^2y^3 + 2xy, the degrees of terms are 2+3=5 and 1+1=2, so the polynomial has degree 5. However, in Class 9, you mostly study polynomials in one variable.

Degree of a Polynomial Formula

Key formulas and relationships involving the degree of a polynomial:

1. Maximum number of zeroes:
A polynomial of degree n has at most n real zeroes.
Degree 1 (linear): at most 1 zero.
Degree 2 (quadratic): at most 2 zeroes.
Degree 3 (cubic): at most 3 zeroes.
Degree n: at most n zeroes.

2. Degree of sum/difference:
If deg(p) = m and deg(q) = n, then:
deg(p + q) <= max(m, n)
The degree of the sum may be less than max(m, n) if the leading terms cancel.

Example: p(x) = 3x^3 + 2x, q(x) = -3x^3 + 5x^2. Then p(x) + q(x) = 5x^2 + 2x, which has degree 2 (not 3).

3. Degree of product:
deg(p x q) = deg(p) + deg(q)
The degree of a product is always the sum of the degrees.

Example: p(x) = 2x^2 + 1 (degree 2), q(x) = x^3 - x (degree 3). Then p(x) x q(x) has degree 2 + 3 = 5.

4. Classification by degree:

Degree 0: Constant polynomial
Degree 1: Linear polynomial (general form: ax + b, a is not 0)
Degree 2: Quadratic polynomial (general form: ax^2 + bx + c, a is not 0)
Degree 3: Cubic polynomial (general form: ax^3 + bx^2 + cx + d, a is not 0)
Degree 4: Biquadratic (or quartic) polynomial
Degree 5: Quintic polynomial

Derivation and Proof

Why does a polynomial of degree n have at most n zeroes?

This is an important theorem, and here is an intuitive explanation suitable for Class 9 students.

Observation for small degrees:

Degree 1 (Linear): p(x) = ax + b. Setting p(x) = 0: ax + b = 0, so x = -b/a. Exactly one zero. A straight line crosses the x-axis at most once.

Degree 2 (Quadratic): p(x) = ax^2 + bx + c. The quadratic formula gives at most 2 solutions. A parabola can cross the x-axis at 0, 1, or 2 points.

Degree 3 (Cubic): A cubic polynomial can be factored as a(x - r)(x^2 + ...) or a(x - r1)(x - r2)(x - r3), giving at most 3 zeroes.

General principle (Factor Theorem connection):

Step 1: If r is a zero of p(x), then by the Factor Theorem, (x - r) is a factor of p(x).

Step 2: So p(x) = (x - r) x q(x), where q(x) has degree (n - 1).

Step 3: If p(x) has another zero s (different from r), then s must be a zero of q(x), giving another factor (x - s), reducing the degree further.

Step 4: Each new zero reduces the remaining degree by 1. Starting from degree n, we can find at most n factors (x - r1), (x - r2), ..., (x - rn).

Step 5: Therefore, a polynomial of degree n has at most n zeroes.

Note: The polynomial may have fewer than n real zeroes. For example, x^2 + 1 has degree 2 but zero real zeroes (since x^2 + 1 > 0 for all real x).

Types and Properties

Polynomials are classified by their degree into the following standard categories:

1. Constant Polynomial (Degree 0):

A polynomial with no variable term: p(x) = c, where c is a non-zero real number.

Examples: p(x) = 5, q(x) = -3, r(x) = sqrt(2).

Graph: A horizontal line at height c. It never crosses the x-axis (if c is not 0), so it has zero zeroes.

2. Linear Polynomial (Degree 1):

General form: p(x) = ax + b, where a is not zero.

Examples: p(x) = 3x + 7, q(x) = -x + 4, r(x) = (2/3)x.

Graph: A straight line. It has exactly one zero: x = -b/a.

The name 'linear' comes from the fact that its graph is a line.

3. Quadratic Polynomial (Degree 2):

General form: p(x) = ax^2 + bx + c, where a is not zero.

Examples: p(x) = x^2 - 4x + 3, q(x) = 2x^2 + 1, r(x) = -x^2 + 5x.

Graph: A parabola (U-shaped or inverted U). It can have 0, 1, or 2 real zeroes.

The word 'quadratic' comes from 'quad' meaning square (the variable is squared).

4. Cubic Polynomial (Degree 3):

General form: p(x) = ax^3 + bx^2 + cx + d, where a is not zero.

Examples: p(x) = x^3 - 6x^2 + 11x - 6, q(x) = 2x^3 + 1.

Graph: An S-shaped curve. It can have 1, 2, or 3 real zeroes. A cubic always has at least 1 real zero.

5. Biquadratic (Quartic) Polynomial (Degree 4):

General form: p(x) = ax^4 + bx^3 + cx^2 + dx + e, where a is not zero.

Examples: p(x) = x^4 - 5x^2 + 4, q(x) = x^4 + 1.

Up to 4 real zeroes.

6. Higher-degree polynomials (degree 5 and above) are called by their degree: quintic (5), sextic (6), etc.

Solved Examples

Example 1: Example 1: Finding the degree of given polynomials

Problem: Find the degree of each polynomial:
(a) 5x^3 - 4x^2 + 7 (b) 9 (c) 2y - y^5 + 3y^2 (d) 0

Solution:

(a) 5x^3 - 4x^2 + 7: The powers of x are 3, 2, and 0. The highest is 3. Degree = 3 (cubic).

(b) 9: This is a non-zero constant. Think of it as 9x^0. Degree = 0 (constant polynomial).

(c) 2y - y^5 + 3y^2: The powers of y are 1, 5, and 2. The highest is 5. Degree = 5 (quintic). Note that the terms need not be in order.

(d) 0: This is the zero polynomial. Degree is not defined.

Example 2: Example 2: Classifying polynomials by degree

Problem: Classify each polynomial as constant, linear, quadratic, or cubic:
(a) 3x + 1 (b) x^2 - 9 (c) 7 (d) 2x^3 - x + 4 (e) sqrt(5)x^2

Solution:

(a) 3x + 1: Degree 1 → Linear.

(b) x^2 - 9: Degree 2 → Quadratic.

(c) 7: Degree 0 → Constant.

(d) 2x^3 - x + 4: Degree 3 → Cubic.

(e) sqrt(5)x^2: Degree 2 → Quadratic. (The coefficient sqrt(5) is irrational, but that is fine — it is still a valid polynomial coefficient.)

Example 3: Example 3: Maximum number of zeroes from the degree

Problem: How many zeroes can each polynomial have at most?
(a) p(x) = x^4 - 3x^2 + 2 (b) q(x) = 5x - 10 (c) r(x) = x^3 + x

Solution:

(a) Degree = 4. At most 4 zeroes. (In fact, this polynomial has 4 zeroes: x = ±1 and x = ±sqrt(2).)

(b) Degree = 1. At most 1 zero. (Zero is x = 2.)

(c) Degree = 3. At most 3 zeroes. (Factoring: x(x^2 + 1) = 0 gives x = 0 as the only real zero, since x^2 + 1 > 0 always. So it has only 1 real zero, which is less than the maximum 3.)

Example 4: Example 4: Degree when terms are missing

Problem: Find the degree of p(x) = x^7 - x^3 + 1. Note that many powers are missing.

Solution:

The powers present are 7, 3, and 0. Missing powers (6, 5, 4, 2, 1) simply have coefficients of 0.

The highest power with a non-zero coefficient is 7.

Degree = 7.

Missing intermediate terms do not affect the degree. The degree is determined solely by the highest power present.

Example 5: Example 5: Degree of a product of polynomials

Problem: If p(x) = x^2 + 3x + 2 and q(x) = x^3 - 1, what is the degree of p(x) x q(x)?

Solution:

deg(p) = 2, deg(q) = 3.

deg(p x q) = deg(p) + deg(q) = 2 + 3 = 5.

We do not need to multiply the polynomials out. The degree of the product is always the sum of the individual degrees.

Verification: The highest-degree term in the product is (x^2)(x^3) = x^5. Confirmed: degree 5.

Example 6: Example 6: Degree of a sum when leading terms cancel

Problem: Find the degree of p(x) + q(x), where p(x) = 2x^4 + x^2 - 3 and q(x) = -2x^4 + 5x^3 + 1.

Solution:

p(x) + q(x) = (2x^4 - 2x^4) + 5x^3 + x^2 + (-3 + 1) = 5x^3 + x^2 - 2.

The x^4 terms cancel! So the degree is 3 (not 4).

Lesson: The degree of a sum can be LESS than the highest degree of the individual polynomials if the leading terms cancel.

Example 7: Example 7: Identifying the leading coefficient

Problem: For each polynomial, state the degree and the leading coefficient:
(a) -3x^4 + 7x^2 - 1 (b) 5 - 2x + x^3

Solution:

(a) Degree = 4. The term with the highest power is -3x^4. Leading coefficient = -3.

(b) Rewrite in standard form: x^3 - 2x + 5. Degree = 3. Leading coefficient = 1 (the coefficient of x^3).

The leading coefficient is the coefficient of the term with the highest degree. It is important because it determines the end behaviour of the polynomial graph.

Example 8: Example 8: Is this a polynomial? If so, what is the degree?

Problem: Determine if each expression is a polynomial. If yes, find the degree.
(a) x^2 + 1/x (b) 4t^3 - 2t + sqrt(7) (c) 3^x + 5

Solution:

(a) x^2 + 1/x = x^2 + x^(-1): The term x^(-1) has a negative exponent. NOT a polynomial.

(b) 4t^3 - 2t + sqrt(7): All exponents of t are whole numbers (3, 1, 0). The coefficient sqrt(7) is irrational but is a valid real number coefficient. Polynomial of degree 3.

(c) 3^x + 5: The variable x is in the exponent, not the base. This is an exponential expression, NOT a polynomial. In a polynomial, the variable must be in the base with a whole-number exponent.

Example 9: Example 9: Finding the degree of a polynomial in two variables

Problem: Find the degree of 3x^2y + 5xy^3 - 2x + 7.

Solution:

For each term, add the exponents of all variables:

3x^2y: exponents 2 + 1 = 3

5xy^3: exponents 1 + 3 = 4

-2x: exponent 1

7: exponent 0

The highest sum is 4 (from the term 5xy^3).

Degree = 4.

(Note: Multivariable polynomial degree is not the main focus of Class 9, but it is good to know.)

Example 10: Example 10: Writing a polynomial of a given degree

Problem: Write one example each of: (a) a quadratic polynomial with 3 terms, (b) a cubic polynomial with 2 terms, (c) a linear polynomial with irrational coefficient.

Solution:

(a) Quadratic with 3 terms (trinomial): p(x) = x^2 - 5x + 6. Degree 2, three terms.

(b) Cubic with 2 terms (binomial): q(x) = x^3 + 8. Degree 3, two terms.

(c) Linear with irrational coefficient: r(x) = sqrt(3)x + 1. Degree 1, coefficient sqrt(3) is irrational.

Real-World Applications

The degree of a polynomial plays a central role in mathematics and its applications:

Curve Fitting: When scientists collect data points and want to find an equation that fits them, the degree of the polynomial chosen determines the shape of the curve. A degree-1 polynomial gives a straight line (linear regression), degree-2 gives a parabola (quadratic regression), and so on.

Graph Behaviour: The degree tells you how the polynomial graph behaves. Linear polynomials produce lines, quadratics produce parabolas, and cubics produce S-curves. The degree also determines how many times the graph can cross the x-axis.

Solving Equations: The degree determines the maximum number of solutions to the equation p(x) = 0. A degree-3 equation can have up to 3 solutions, which is critical in engineering, physics, and optimisation.

Complexity in Computing: Algorithm efficiency is often expressed as a polynomial in the input size: O(n), O(n^2), O(n^3). The degree of this polynomial tells you how the running time grows — linear (fast), quadratic (moderate), or cubic (slow).

Physics — Projectile Motion: The height of a projectile is a quadratic polynomial in time (degree 2): h = -gt^2/2 + v_0t + h_0. This determines the parabolic trajectory.

Key Points to Remember

  • The degree of a polynomial is the highest power of the variable with a non-zero coefficient.
  • A non-zero constant polynomial has degree 0.
  • The zero polynomial p(x) = 0 has no defined degree.
  • Polynomials are classified by degree: linear (1), quadratic (2), cubic (3), biquadratic (4).
  • A polynomial of degree n has at most n real zeroes.
  • The degree of a product of polynomials equals the sum of their degrees.
  • The degree of a sum of polynomials is at most the maximum of their degrees (may be less if leading terms cancel).
  • The leading coefficient is the coefficient of the highest-degree term.
  • Terms can appear in any order — the degree is still the highest power present.
  • Expressions with negative or fractional exponents are NOT polynomials.

Practice Problems

  1. Find the degree of each polynomial: (a) 4x^6 - x^3 + 2, (b) 7, (c) -9y + 3y^4 - y^2, (d) 0, (e) sqrt(2)x^2 - 3x.
  2. Classify each as linear, quadratic, cubic, or constant: (a) 2x + 5, (b) x^3 - x, (c) 11, (d) 3x^2 - 7x + 1.
  3. What is the maximum number of zeroes a polynomial of degree 6 can have?
  4. If p(x) has degree 3 and q(x) has degree 4, what is the degree of p(x) x q(x)?
  5. Give an example of two polynomials of degree 3 whose sum has degree 2.
  6. Is 2x^3 + 3x^(1/2) - 1 a polynomial? Why or why not?
  7. Write a polynomial of degree 5 that has only 2 terms.
  8. Find the degree and leading coefficient of p(x) = 1 - x + x^2 - x^3 + x^4.

Frequently Asked Questions

Q1. What is the degree of a polynomial?

The degree of a polynomial is the highest power (exponent) of the variable in the polynomial, provided that term has a non-zero coefficient. For example, in 3x^4 - 2x^2 + 5, the degree is 4 because x^4 is the highest power. The degree tells you the fundamental nature of the polynomial — whether it is linear, quadratic, cubic, etc.

Q2. What is the degree of a constant polynomial?

A non-zero constant like 7 or -3 has degree 0. You can think of it as 7x^0 = 7. The special case is the zero polynomial p(x) = 0, which has no defined degree — it is left undefined because the zero polynomial has no term with a non-zero coefficient.

Q3. Can the degree of a polynomial be negative?

No. The degree of a polynomial is always a non-negative whole number (0, 1, 2, 3, ...). Expressions with negative exponents, like x^(-2) + 3, are NOT polynomials and therefore the concept of polynomial degree does not apply to them.

Q4. What is the difference between degree and order?

In the context of polynomials, 'degree' refers to the highest power of the variable. 'Order' is sometimes used interchangeably with degree but is more commonly used in the context of differential equations. For Class 9 polynomials, use the term 'degree' — it is the standard terminology.

Q5. Does the coefficient affect the degree?

The value of the coefficient does not affect the degree, but whether it is zero or non-zero does. In 5x^3 + 2x, the degree is 3 regardless of the coefficient being 5 or 100 or sqrt(2). However, in 0x^3 + 2x, the degree is 1 (not 3) because the coefficient of x^3 is 0, so x^3 is not actually present.

Q6. How does the degree relate to the number of zeroes?

A polynomial of degree n can have at most n real zeroes. 'At most' is important — it can have fewer. A linear polynomial (degree 1) has exactly 1 zero. A quadratic (degree 2) can have 0, 1, or 2 real zeroes. A cubic (degree 3) always has at least 1 real zero and at most 3.

Q7. What is the degree of x^2 + y^2?

For a polynomial in two variables, the degree of each term is the sum of the exponents. The term x^2 has degree 2 (x's exponent is 2, y's is 0). The term y^2 also has degree 2. The polynomial's degree is 2. In Class 9, you primarily work with single-variable polynomials, but the concept extends naturally to multiple variables.

Q8. What is a leading coefficient?

The leading coefficient is the coefficient of the term with the highest degree in the polynomial. In 4x^3 - 2x + 1, the leading coefficient is 4 (coefficient of x^3). In -x^5 + 3x^2, the leading coefficient is -1 (coefficient of x^5). The leading coefficient affects the shape and direction of the polynomial's graph.

Q9. Can a polynomial have a degree of 1/2?

No. By definition, a polynomial has only whole-number (non-negative integer) exponents. An expression like x^(1/2) + 3 has a fractional exponent and is therefore NOT a polynomial. Its 'degree' in the polynomial sense is undefined because it is not a polynomial at all.

Q10. What is the degree of a polynomial after multiplying two polynomials?

When you multiply two polynomials, the degree of the product equals the sum of the degrees. If p(x) has degree 2 and q(x) has degree 3, then p(x) x q(x) has degree 5. This is because the highest-degree term in the product comes from multiplying the highest-degree terms of the two factors.

We are also listed in