Upper bound of max product

Let z_1, z_2 , \dots, z_n \in \mathbb{C} be the roots of the polynomial

    \[f(x) = x^n + a_{n-1}x^{n-1} + \cdots + a_0 \in \mathbb{C}[x]\]

Prove that:

    \[\prod_{k = 1}^{n} \max (1,|z_k|) \leq \sqrt{1+|a_{n-1}|^2 + \cdots + |a_{0}|^2}\]

Solution

Read more

One thought on “Upper bound of max product”

  1. One may also use induction… For example:

    The 2-norm of a polynomial f(x) = a_nx^n + a_{n-1}x^{n-1} + \cdots + a_0 is defined as

        \[\lVert f \rVert_2 := \sqrt{|a_n|^2+|a_{n-1}|^2 + \cdots + |a_{0}|^2}\]

    and we have

        \begin{align*} \lVert (x-z)f(x) \rVert_2^2 &= \sum\limits_{j=0}^{n+1} |a_{j-1} - za_j|^2  \\  &= \sum\limits_{j=0}^{n+1} (a_{j-1} - za_j)\overline{(a_{j-1} - za_j)} \\  &= (1+|z|^2)\lVert f(x) \rVert_2^2 - \sum\limits_{j=0}^{n+1} (a_{j-1}\overline{za_j} + za_j\overline{a_{j-1}}) \\  &= (1+|z|^2)\lVert f(x) \rVert_2^2 - \sum\limits_{j=0}^{n+1} (z\overline{a_{j-1}}a_{j} + \overline{z}a_{j-1}\overline{a_{j}}) \\  &= \sum\limits_{j=0}^{n+1}(\overline{z}a_{j-1} - a_j)(z\overline{a_{j-1}} - \overline{a_j}) \\  &= \sum\limits_{j=0}^{n+1}|\overline{z}a_{j-1} - a_j|^2 = \lVert (\overline{z}x-1)f(x) \rVert_2^2  \end{align*}

    As before let us write the roots of the polynomial in the order presented above. Consider the polynomial

        \[g(x) = \prod\limits_{j=1}^m (\overline{z_j}x-1)\prod\limits_{j=m+1}^n (x - z_j) = \sum\limits_{j=0}^{n}b_jx^j\]

    where |b_n| = |z_1z_2\cdots z_m|. Now,

        \begin{align*} |z_1z_2\cdots z_m| = |b_n| &\le \sqrt{|b_n|^2+\cdots+|b_0|^2} \\ & = \lVert g(x) \rVert_2 \\ &= \lVert \frac{g(x)}{\overline{z_1}x - 1}(x-z_1) \rVert_2 \\  &= \left \| \frac{g(x)}{\prod\limits_{j=1}^m (\overline{z_j}x-1)}\prod\limits_{j=1}^m(x-z_1) \right\|_2  \\  &= \lVert f \rVert_2  \end{align*}

Leave a Reply