A polynomial is an algebraic expression consisting of variables (also called indeterminates) and coefficients, that involves only the operations of addition, subtraction, multiplication, and non-negative integer exponentiation of variables. Polynomials are a foundational concept in algebra and are used to model a wide variety of phenomena in mathematics, science, and engineering.
Key terminology includes:
A polynomial is visualized by its graph on a coordinate plane. The graph of a polynomial function is a smooth, continuous curve. Key features include:
Continuity: The graph of a polynomial function is a continuous curve with no breaks, holes, or sharp corners.
End Behavior: The behavior of the graph as x approaches ±∞ is determined by the term with the highest power, a_nx^n. If 'n' is even, both ends go in the same direction; if 'n' is odd, they go in opposite directions.
Fundamental Theorem of Algebra: A polynomial of degree 'n' has exactly 'n' roots in the complex number system, counting multiplicities. This means an equation P(x) = 0 has 'n' solutions.
Complex Conjugate Root Theorem: If a polynomial has real coefficients and a complex number (a + bi) is a root, then its conjugate (a - bi) is also a root.
We can prove the identity a² - b² = (a - b)(a + b) by expanding the right-hand side using the distributive property (often called FOIL).
Step 2: Distribute each term in the first binomial to each term in the second binomial.
Step 4: The middle terms, +ab and -ab, cancel each other out.
Physics and Engineering: Polynomials are used to model the trajectory of projectiles, describe the motion of objects under gravity, and analyze vibrations in mechanical systems. In signal processing, they are used to approximate and filter signals.
Economics: Economists use polynomials to model cost, revenue, and profit functions. These models help businesses determine pricing strategies and production levels to maximize profit.
Computer Science: Polynomials are fundamental to many algorithms, including those in cryptography and error-correcting codes. Polynomial interpolation is used in computer graphics to draw smooth curves (e.g., Bézier curves) between points.
Calculus and Numerical Analysis: Taylor polynomials are used to approximate more complex functions, which is essential for solving differential equations and performing numerical integration.
Roller Coaster Design
Engineers use polynomial functions, particularly piecewise polynomials called splines, to design the smooth curves of a roller coaster track. The functions ensure that the transitions between hills, drops, and loops are gradual and safe, providing a thrilling but not jarring ride for passengers.
Financial Planning
Financial models for compound interest, annuities, and loan amortization often involve polynomial equations. These formulas help individuals and businesses calculate future values of investments, determine loan payments, and plan for retirement based on various financial inputs.
Medical Imaging
In technologies like CT scans and MRIs, complex algorithms use polynomial interpolation to reconstruct a 3D image from multiple 2D cross-sectional 'slices'. These mathematical techniques help create detailed and accurate visualizations of internal body structures for diagnosis.
Polynomials can be classified based on their degree (the highest exponent of the variable) or the number of terms they contain.
| Degree | Name | Example |
|---|---|---|
| 0 | Constant | P(x) = 7 |
| 1 | Linear | P(x) = 4x - 2 |
| 2 | Quadratic | P(x) = 2x² + 3x - 5 |
| 3 | Cubic | P(x) = x³ - 6x |
| 4 | Quartic | P(x) = 5x⁴ - x² + 1 |
| 5 | Quintic | P(x) = x⁵ + 2x³ - 3x |
Classification by number of terms:
Forgetting the middle term when squaring a binomial. A common error is to write (x + y)² = x² + y². The correct expansion is (x + y)² = x² + 2xy + y².
Incorrectly distributing the negative sign when subtracting polynomials. When calculating (P - Q)(x), every term in Q(x) must have its sign flipped, not just the first term.
Assuming all roots are real numbers. A polynomial of degree 'n' can have real, repeated, or complex roots. The Fundamental Theorem of Algebra guarantees 'n' roots in the complex plane.