Maths Formulae Algebra Polynomial

Polynomial Formulas – Degrees, Roots, and Operations

Learn essential polynomial formulas including degree, addition, multiplication, division, and root-finding methods. Usef...
🔑

What is a Polynomial?

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.

\[ P(x) = a_nx^n + a_{n-1}x^{n-1} + \cdots + a_1x + a_0 \]
General Form of a Polynomial

Key terminology includes:

  • Term: Each part of the polynomial separated by a plus or minus sign (e.g., a_nx^n).
  • Coefficient: The numerical factor of a term (e.g., a_n). The coefficient of the term with the highest power, a_n, is called the leading coefficient.
  • Degree: The highest exponent of the variable in the polynomial, denoted as 'n'.
  • Constant Term: The term without a variable, a_0.
📋

Key Formulas and Operations

\[ (P + Q)(x) = P(x) + Q(x) \]
Addition
\[ (P - Q)(x) = P(x) - Q(x) \]
Subtraction
\[ (P \cdot Q)(x) = P(x) \cdot Q(x) \]
Multiplication
\[ P(x) = Q(x) \cdot D(x) + R(x) \]
Division Algorithm
\[ a^2 - b^2 = (a + b)(a - b) \]
Difference of Squares
\[ a^3 + b^3 = (a + b)(a^2 - ab + b^2) \]
Sum of Cubes
\[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \]
Quadratic Formula (for roots of ax² + bx + c = 0)
📈

Visualizing a Polynomial

x y P(x) = aₙxⁿ + aₙ₋₁xⁿ⁻¹ + … + a₁x + a₀ x₁ x₂ x₃ local max local min
A polynomial P(x)=aₙxⁿ+…+a₀ of degree n has at most n real roots (x-intercepts) and at most n−1 turning points (local maxima/minima).

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:

  • x-intercepts: Points where the graph crosses the x-axis, corresponding to the real roots of the polynomial.
  • y-intercept: The point where the graph crosses the y-axis, which is equal to the constant term a_0.
  • Turning Points: Local maximums or minimums where the function changes from increasing to decreasing, or vice-versa. A polynomial of degree 'n' has at most 'n-1' turning points.
  • End Behavior: The direction of the graph as x approaches positive or negative infinity, determined by the degree and the sign of the leading coefficient.
⚙️

Properties of Polynomials

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.

\[ \lim_{x \to \pm\infty} P(x) = \lim_{x \to \pm\infty} a_nx^n \]
End Behavior

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.

💡

Proof of the Difference of Squares Identity

We can prove the identity a² - b² = (a - b)(a + b) by expanding the right-hand side using the distributive property (often called FOIL).

\[ (a - b)(a + b) \]
Step 1: Start with the factored form.

Step 2: Distribute each term in the first binomial to each term in the second binomial.

\[ = a(a + b) - b(a + b) \]
\[ = a \cdot a + a \cdot b - b \cdot a - b \cdot b \]
\[ = a^2 + ab - ab - b^2 \]
Step 3: Simplify the terms.

Step 4: The middle terms, +ab and -ab, cancel each other out.

\[ = a^2 - b^2 \]
Step 5: The result is the difference of two squares.
✍️

Worked Example: Polynomial Multiplication

Given the polynomials P(x) = 3x² - 2x + 1 and Q(x) = x + 4, find the product (P · Q)(x).
  1. Set up the multiplication: (3x² - 2x + 1)(x + 4).
  2. Distribute the 'x' from Q(x) to each term in P(x): x(3x² - 2x + 1) = 3x³ - 2x² + x.
  3. Distribute the '4' from Q(x) to each term in P(x): 4(3x² - 2x + 1) = 12x² - 8x + 4.
  4. Add the results from the previous two steps: (3x³ - 2x² + x) + (12x² - 8x + 4).
  5. Combine like terms: 3x³ + (-2x² + 12x²) + (x - 8x) + 4.
  6. Simplify to get the final result.
3x³ + 10x² - 7x + 4
🧮

Try It

🚀

Applications in Science and Engineering

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.

🌍

Real-World Problems

The height `h` (in meters) of a ball thrown upwards from the top of a 25-meter building is given by the polynomial h(t) = -5t² + 20t + 25, where `t` is the time in seconds. What is the height of the ball after 3 seconds?
  1. The polynomial is h(t) = -5t² + 20t + 25.
  2. Substitute t = 3 into the function: h(3) = -5(3)² + 20(3) + 25.
  3. Calculate the squared term: -5(9) = -45.
  4. Calculate the linear term: 20(3) = 60.
  5. Sum the terms: h(3) = -45 + 60 + 25.
  6. Simplify the result: h(3) = 15 + 25 = 40.
The height of the ball after 3 seconds is 40 meters.
A company's profit `P` (in thousands of dollars) from selling `x` hundred units of a product is modeled by the function P(x) = -x³ + 9x² + 120x - 400. Calculate the profit if the company sells 1000 units (meaning x = 10).
  1. The profit function is P(x) = -x³ + 9x² + 120x - 400.
  2. Substitute x = 10: P(10) = -(10)³ + 9(10)² + 120(10) - 400.
  3. Calculate each term: P(10) = -1000 + 9(100) + 1200 - 400.
  4. Simplify: P(10) = -1000 + 900 + 1200 - 400.
  5. Combine the terms: P(10) = (-1000 + 900) + (1200 - 400) = -100 + 800 = 700.
The profit is $700,000 when 1000 units are sold.
🏞️

Where Polynomials Appear

CNC toolpath curve
CNC Toolpath Interpolation
CNC machines interpolate smooth cutting paths using polynomial curves fitted through control points. A degree-n polynomial guarantees a smooth, continuous path with exactly n−1 direction changes — critical for precision machining of molds and aerospace parts.
Q P Q* Revenue = P·Q
Demand Curve Modelling
Economists fit polynomial demand curves P(Q) to market data to model price-quantity relationships. Revenue R=P(Q)·Q is also a polynomial, and its maximum (dR/dQ=0) gives the profit-maximising output — a core application of polynomial calculus.
roller coaster profile
Roller Coaster Track Design
Roller coaster track profiles are designed using piecewise polynomial curves (splines). Each segment is a polynomial that matches position, slope, and curvature at the joints — ensuring a smooth, jerk-free ride while satisfying g-force safety limits.

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.

📚

Types and Classification

Polynomials can be classified based on their degree (the highest exponent of the variable) or the number of terms they contain.

DegreeNameExample
0ConstantP(x) = 7
1LinearP(x) = 4x - 2
2QuadraticP(x) = 2x² + 3x - 5
3CubicP(x) = x³ - 6x
4QuarticP(x) = 5x⁴ - x² + 1
5QuinticP(x) = x⁵ + 2x³ - 3x

Classification by number of terms:

  • Monomial: A polynomial with one term (e.g., 5x²).
  • Binomial: A polynomial with two terms (e.g., 3x - 1).
  • Trinomial: A polynomial with three terms (e.g., 4x² + 2x + 7).
⚠️

Common Mistakes

⚠️ 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.
🚀

Study Strategy

1 📖 Master the Core Concepts
  • Review the definitions of 'term', 'coefficient', 'degree', and 'leading term' from the 'What is a Polynomial?' section.
  • Use the 'Types and Classification' guide to distinguish between monomials, binomials, and trinomials.
  • Study the 'Properties of Polynomials' to understand end behavior and the role of the leading coefficient.
  • Visualize polynomial graphs using the examples in 'Visualizing a Polynomial' to connect the algebra to its geometric shape.
2 🧠 Memorize Key Formulas
  • Write out the formulas for special products like (a+b)² and (a-b)² from the 'Key Formulas and Operations' section.
  • Commit the Difference of Squares formula (a² - b²) to memory and understand its proof.
  • Practice the standard operational rules for adding, subtracting, and multiplying polynomials until they become second nature.
  • Review the 'Common Mistakes' section to remember pitfalls like incorrect sign distribution or exponent errors.
3 ✍️ Practice with Worked Examples
  • Follow the 'Worked Example: Polynomial Multiplication' step-by-step, then replicate it without looking at the solution.
  • Solve additional problems involving the addition and subtraction of polynomials with varying degrees.
  • Use the distributive property (FOIL method for binomials) to multiply at least five different pairs of polynomials.
  • Check your answers by substituting a simple value (like x=2) into both the original problem and your final answer.
4 🌍 Apply to Real-World Problems
  • Analyze the 'Applications in Science and Engineering' section to see how polynomials model projectile motion.
  • Attempt to solve a problem from the 'Real-World Problems' section, such as calculating an area or modeling profit.
  • Identify where polynomials appear in other fields you study by reading the 'Where Polynomials Appear' section.
  • Explore 'Related Concepts' to see how mastering polynomial operations is crucial for factoring and solving equations.
By systematically building from concepts to application, you will gain the skills and confidence to master polynomials in any context.

Frequently Asked Questions

×

×