Building a polynomial from its roots

Suppose we are given a set of n \geq 2 distinct real numbers \mathcal{R} = \{r_1, r_2, \ldots, r_n\}, and we build a monic univariate polynomial (over field \mathbb{R}) of degree n whose n distinct roots are the elements of set \mathcal{R}

p_n(x) = \displaystyle\prod_{i=1}^n (x - r_i) = \displaystyle\sum_{m=0}^n a_{m,n} x^m,

where a_{m,n} \in \mathbb{R} is the coefficient of monomial x^m. The second subscript in a_{m,n} tells us that the coefficient corresponds to a polynomial whose degree is n.

Problem: for n \geq 2, what are the values of the coefficients \{a_{m,n}\}_{m=0}^{n} in terms of the roots \{r_i\}_{i=1}^n?

At first glance, this problem seems elementary. However, I had never thought of it and I found it quite interesting. I prefer to think of examples before attempting to see the “big picture”, so let us consider the simplest cases.

_____

Case n=1

The monic polynomial of degree 1 whose root is r_1 is

p_1(x) = x - r_1

and the coefficients are

\left[\begin{array}{c}a_{0,1}\\a_{1,1}\end{array}\right] = \left[\begin{array}{c} -r_1\\1\end{array}\right].

_____

Case n=2

The monic polynomial of degree 2 whose roots are r_1, r_2 is

\begin{array}{rl} p_2(x) &= (x - r_1) (x - r_2)\\ &= x^2 - (r_1 + r_2) x + r_1 r_2\end{array}

and the coefficients are

\left[\begin{array}{c}a_{0,2}\\a_{1,2}\\a_{2,2}\end{array}\right] = \left[\begin{array}{c}r_1 r_2\\-(r_1+r_2)\\1\end{array}\right].

_____

Case n=3

The monic polynomial of degree 3 whose roots are r_1, r_2, r_3 is

\begin{array}{rl} p_3(x) &= (x - r_1) (x - r_2) (x - r_3)\\ &= x^3 - (r_1+r_2 + r_3) x^2 + (r_1 r_2 + r_1 r_3 + r_2 r_3) x - r_1 r_2 r_3\\\end{array}

and the coefficients are

\left[\begin{array}{c}a_{0,3}\\a_{1,3}\\a_{2,3}\\a_{3,3}\end{array}\right] = \left[\begin{array}{c} - r_1 r_2 r_3\\ r_1 r_2 + r_1 r_3 + r_2 r_3\\ -(r_1+r_2 + r_3)\\1\end{array}\right].

_____

The coefficients \{a_{m,n}\}_{m=0}^{n} can be computed in a recursive fashion. Consider the monic polynomials

p_{k}(x) = \displaystyle\prod_{i=1}^{k} (x - r_i)

and

p_{k+1}(x) = \displaystyle\prod_{i=1}^{k+1} (x - r_i) = (x - r_{k+1}) \displaystyle\prod_{i=1}^k (x - r_i),

then p_{k+1} =  (x - r_{k+1}) p_k(x), and thus

\begin{array}{rl} p_{k+1}(x) &= (x - r_{k+1})\displaystyle\sum_{m=0}^k a_{m,k} x^m\\ &= \displaystyle\sum_{m=0}^k a_{m,k} x^{m+1} - \displaystyle\sum_{m=0}^k r_{k+1} a_{m,k} x^m.\\\end{array}

Note that

\begin{array}{rl} \displaystyle\sum_{m=0}^k a_{m,k} x^{m+1} &= \displaystyle\sum_{m=1}^k a_{m-1,k} x^m + a_{k,k} x^{k+1}\\ \displaystyle\sum_{m=0}^{k} r_{k+1} a_{m,k} x^m &= r_{k+1} a_{0,k} + \displaystyle\sum_{m=1}^k r_{k+1} a_{m,k} x^m\end{array}

and therefore

p_{k+1}(x) = a_{k,k} x^{k+1} + \displaystyle\sum_{m=1}^k \left(a_{m-1,k} - r_{k+1} a_{m,k}\right) x^m - r_{k+1} a_{0,k}.

We can write p_{k+1}(x) in the expanded form in terms of the coefficients \{a_{m,k+1}\}_{m=0}^{k+1}

p_{k+1}(x) = a_{k+1,k+1} x^{k+1} + \displaystyle\sum_{m=1}^k a_{m,k+1} x^m + a_{0,k+1}

and therefore we can write the coefficients \{a_{m,k+1}\}_{m=0}^{k+1} in terms of the coefficients \{a_{m,k}\}_{m=0}^{k}, as follows

a_{m,k+1} = \displaystyle\left\{\begin{array}{rl} - r_{k+1} a_{0,k} & \text{if} \quad{} m = 0\\ a_{m-1,k} - r_{k+1} a_{m,k} & \text{if} \quad{} 1 \leq m \leq k\\ a_{k,k} & \text{if} \quad{} m=k+1\\ \end{array}\right.

Hence, starting with the zero-degree monic polynomial p_0(x), whose only coefficient is a_{0,0} = 1, we can build p_1(x), the monic polynomial of degree 1 whose root is r_1. From p_1(x), and given a second root r_2, we can build p_2(x), the monic polynomial of degree 2 whose roots are r_1, r_2. Iterating successively, we can build p_n(x), the monic polynomial of degree n whose roots are r_1,r_2, \ldots, r_n.

About these ads

Tags: ,

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s


Follow

Get every new post delivered to your Inbox.

Join 76 other followers

%d bloggers like this: