Polynomial

A fundamental algebraic expression consisting of variables and coefficients with applications across mathematics, physics, and engineering.

Definition

A polynomial is an expression consisting of variables (also called indeterminates) and coefficients, that involves only the operations of addition, subtraction, multiplication, and non-negative integer exponents of variables. Polynomials appear in many areas of mathematics and science.

An example of a polynomial of a single indeterminate x is x² − 4x + 7. An example in three variables is x³ + 2xyz² − yz + 1.

General Form

A polynomial in one variable x of degree n has the form:

P(x) = anxn + an-1xn-1 + ... + a2x2 + a1x + a0

Where:

  • an, an-1, ..., a0 are coefficients (constants)
  • an ≠ 0 (leading coefficient)
  • n ≥ 0 is a non-negative integer (the degree)
  • x is the variable

Key Terminology

  • Term: Each part of the polynomial separated by + or − signs
  • Coefficient: The numerical factor of a term
  • Degree: The highest power of the variable in the polynomial
  • Leading Coefficient: The coefficient of the highest degree term
  • Constant Term: The term without a variable (degree 0)
  • Monomial: A polynomial with one term
  • Binomial: A polynomial with two terms
  • Trinomial: A polynomial with three terms

Polynomial Operations

1. Addition and Subtraction

Combine like terms (terms with the same variable raised to the same power):

(3x² + 2x − 5) + (x² − 4x + 2) = 4x² − 2x − 3

2. Multiplication

Use the distributive property (FOIL for binomials):

(x + 2)(x − 3) = x² − 3x + 2x − 6 = x² − x − 6

3. Division

Polynomial long division or synthetic division can be used to divide polynomials.

4. Special Product Formulas

(a + b)² = a² + 2ab + b²

(a − b)² = a² − 2ab + b²

(a + b)(a − b) = a² − b²

Factoring Polynomials

Factoring is the process of breaking down a polynomial into a product of simpler polynomials.

Common Factoring Methods

  • Greatest Common Factor (GCF): Factor out the largest common factor from all terms
  • Difference of Squares: a² − b² = (a + b)(a − b)
  • Trinomial Factoring: x² + bx + c = (x + m)(x + n) where m + n = b and mn = c
  • Grouping: Factor by grouping terms with common factors

Example: Factor x² + 7x + 12

Solution: Find two numbers that multiply to 12 and add to 7. These are 3 and 4.
Therefore: x² + 7x + 12 = (x + 3)(x + 4)

Polynomial Functions

A polynomial function is a function that can be defined by evaluating a polynomial:

f(x) = anxn + an-1xn-1 + ... + a1x + a0

Key Properties

  • Roots/Zeros: Values of x where f(x) = 0
  • Turning Points: A polynomial of degree n has at most n − 1 turning points
  • End Behavior: Determined by the leading term
  • Intermediate Value Theorem: If f(a) and f(b) have opposite signs, there is at least one root between a and b

Examples

Example 1: Find the degree and leading coefficient of 5x⁴ − 3x² + 7x − 2

Solution: The highest power is 4, so the degree is 4. The leading coefficient is 5.

Example 2: Evaluate P(x) = 2x³ − x² + 3x − 1 at x = 2

Solution: P(2) = 2(2)³ − (2)² + 3(2) − 1 = 2(8) − 4 + 6 − 1 = 16 − 4 + 6 − 1 = 17

Example 3: Multiply (2x − 3)(x² + 4x − 1)

Solution: = 2x(x² + 4x − 1) − 3(x² + 4x − 1)
= 2x³ + 8x² − 2x − 3x² − 12x + 3
= 2x³ + 5x² − 14x + 3

Applications

  • Physics: Modeling motion, energy, and wave functions
  • Engineering: Signal processing, control systems, and structural analysis
  • Economics: Cost functions, revenue models, and profit optimization
  • Computer Graphics: Bézier curves and surface modeling
  • Cryptography: Polynomial-based encryption algorithms
  • Statistics: Polynomial regression for curve fitting