0

Given a function $f(a) = a^4 +a^3 +2a^2 +a+1$ . How can I show that it is a coercive function? I am having a hard time understanding how to calculate the norm of $f$ in order to show that f is coercive. Can someone help me? Thanks!

Blake
  • 107

1 Answers1

1

Note that \begin{align*} f(x) &= x^4 + x^3 + x^2 + x^2 + x + 1 \\ &= x^2(x^2 + x + 1) + x^2 + x + 1 \\ &= (x^2 + 1)(x^2 + x + 1). \end{align*} Further, note that $$x^2 + x + 1 = x^2 + x + \frac{1}{4} + \frac{3}{4} = \left(x + \frac{1}{2}\right)^2 + \frac{3}{4} \ge \frac{3}{4},$$ and $x^2 + 1 > 0$, hence $$f(x) \ge \frac{3}{4}(x^2 + 1) \ge \frac{3}{4}x^2.$$ Now, this tells me that, given $M > 0$, we can choose $N = \frac{2\sqrt{M}}{\sqrt{3}}$, and get \begin{align*} |x| \ge N &\implies |x| \ge \frac{2\sqrt{M}}{\sqrt{3}} \\ &\implies x^2 \ge \frac{4M}{3} \\ &\implies \frac{3}{4}x^2 \ge M \\ &\implies f(x) \ge M. \end{align*} Thus, $f(x) \to \infty$ as $|x| \to \infty$.

Theo Bendit
  • 50,900