Polynomial Functions
A polynomial is a mathematical expression consisting of indeterminates (variables) and coefficients. Polynomial expressions can only use the operations of addition, subtraction, multiplication, and exponentiation (to non-negative powers).
“An example of a polynomial of a single indeterminate x”: $x^2 - 4x + 7$.
Polynomial expressions are used to form polynomial equations: $f(x) = x^2 - 4x + 7$.
Algebraic equation
The term algebraic equation is used for the univariate case of polynomial equations. A univariate object is an expression, equation, function or polynomial that only has one variable (one indeterminate).1
Solving polynomial equations
To solve a polynomial means to set its equation to some value, usually zero, then find the values that make the expression true. For my current interests, this means finding the “roots” or zeros of the equation — finding the variable values where the expression equals zero.
Solving polynomial equations for complex roots
$$ f(x) = x^8 + 1 $$$$ x^8 + 1 = 0 $$$$ x^8 = -1 $$Express -1 in polar form
TODO: confirm that this is actually the polar form and not the exponential form. (It’s not technically accurate. See Introduction to complex numbers.)
What’s written below is technically describing the exponential form. Any complex number can be written as $r\cdot e^{i\theta}$, where:
- $r$ is the magnitude (distance from origin)
- $\theta$ is the argument (angle from the positive real axis)
For -1:
- $r = 1$
- $\theta = \pi$ (since -1 is at angle $\pi$ on the unit circle)
So $-1$ can be written as a complex number as $1e^{i\pi}$
But $-1$ can also be written as:
$$ -1 = e^{(i(\pi + 2\pi k))} $$This can be done for any integer $k$, since adding $2\pi$ doesn’t change the angle.
Expressing $-1$ in the polar form means that $x^8 = -1$ can be written as:
$$ x^8 = e^{(i(\pi + 2\pi k))} $$Take the 8th root
Now solve for $x$:
$$ x = e^{i(\pi + 2\pi k)/8} = e^{i\pi(1 + 2k)/8} $$Find all distinct roots
For $k = 0, 1, 2,\dots, 7$ there are 8 distinct values:
- $k=0: x_0 = e^{(i\pi/8)}$
- $k=1: x_1 = e^{(i3\pi/8)}$
- $k=2: x_2 = e^{(i5\pi/8)}$
- $k=3: x_3 = e^{(i7\pi/8)}$
- $k=4: x_4 = e^{(i9\pi/8)}$
- $k=5: x_5 = e^{(i11\pi/8)}$
- $k=6: x_6 = e^{(i13\pi/8)}$
- $k=7: x_7 = e^{(i15\pi/8)}$
Convert to rectalinear form
The general process
Given a complex number in the exponential form $z = re^{(i\theta)}$, convert it to the rectalinear form $z = a + bi$.
Apply Euler’s formula:
Euler’s formula states that $e^{(i\theta)} = \cos\theta + i \sin\theta$.
Therefore, $z = re^{(i\theta)} = r(\cos\theta + i \sin\theta)$
Distribute $r$:
$$ z = r\cos\theta + i(r \sin\theta) $$Identify the real and imaginary parts:
- real part: $a = r\cos\theta$
- imaginary part: $b = r\sin\theta$
Therefore: $z = r\cos\theta + i(r\sin\theta)$
Concrete example
Convert $z = 2e^{(i\pi/4)}$ to rectalinear form:
- $r = 2$
- $\theta = \pi/4$
Calculate:
- $a = 2\cos(\pi/4) = 2\cdot(\sqrt{2}/2) = \sqrt{2}$
- $b = 2\sin(\pi/4) = 2\cdot(\sqrt{2}/2) = \sqrt{2}$
To get $z = \sqrt{2} + i\sqrt{2} \approx 1.414 + 1.414 i$
See Solve cosine of pi over four for details about what’s going on with the trigonometry.
General form for finding roots of complex numbers
Using $f(x) = x^3 - 0.1$ as an example.
The general form for finding the roots of complex numbers:
$$ x = r^{(1/n)}\cdot e^{(i(\theta+2\pi k)/n)}, \text{for k = 0, 1, 2,...,n-1} $$For $x^3 = 0.1$:
- $r = 0.1$ (magnitude)
- $\theta = 0 = 2\pi$ (angle, since 0.1 is a positive number)
The three roots (n=3) are:
$$ k=0: x_0 = 0.1^{(1/3)}\cdot e^{(i\cdot0)} $$
Remember that e^0 = 1, so x_0 is a real number.
References
Wikipedia contributors. “Polynomial.” Wikipedia, The Free Encyclopedia. https://en.wikipedia.org/w/index.php?title=Polynomial&oldid=1324301130.(accessed December 9, 2025).
Notes
-
Wikipedia contributors, “Univariate,” Wikipedia, The Free Encyclopedia, https://en.wikipedia.org/w/index.php?title=Univariate&oldid=1223573558 (accessed December 10, 2025). ↩︎