Skip to main content
Speclore

Polynomial Nth Degree Equation

Reference data and engineering information about polynomial nth degree equation for miscellaneous applications.

polynomialnthdegreeequation

Overview

Engineering reference data for Polynomial Nth Degree Equation in miscellaneous.

Key Formulas

Unit Conversion

y=xky = x \cdot k

Multiply by conversion factor.

Linear Interpolation

y=y1+(xx1)(y2y1)x2x1y = y_1 + \frac{(x - x_1)(y_2 - y_1)}{x_2 - x_1}

Estimate between two known points.

Percentage

p=partwhole×100%p = \frac{\text{part}}{\text{whole}} \times 100\%

Part as fraction of whole.

Variables

SymbolDescriptionUnit
xxInput value
yyOutput value
kkConversion factor

Polynomial Definitions by Degree

A polynomial function of degree nn is expressed as:

f(x)=a0+a1x+a2x2++anxnf(x) = a_0 + a_1 x + a_2 x^2 + \dots + a_n x^n

where nn is a non-negative integer and an0a_n \neq 0 ensures the polynomial has exactly degree nn.

Common special cases are defined by their degree:

  • First Degree (Linear): f(x)=a0+a1xf(x) = a_0 + a_1 x with a10a_1 \neq 0. This represents a straight line.
  • Second Degree (Quadratic): f(x)=a0+a1x+a2x2f(x) = a_0 + a_1 x + a_2 x^2 with a20a_2 \neq 0. This represents a parabola.
  • Third Degree (Cubic): f(x)=a0+a1x+a2x2+a3x3f(x) = a_0 + a_1 x + a_2 x^2 + a_3 x^3 with a30a_3 \neq 0. This can model curves with one or two inflection points.

The degree determines key properties, such as the maximum number of real roots (up to nn) and the number of possible turning points (up to n1n-1).

References