4

Suppose $a, b, c, d, e$ are real numbers such that:
$$ab + bc + cd + de + ea = 10$$ $$ac + bd + ce + da + eb = 11$$ Find the minimum value of $$a^2 + b^2 + c^2 + d^2 + e^2$$

I started this question with

$$\begin{align} a^2 + b^2 + c^2 + d^2 + e^2 &= (a + b + c + d + e)^2 \\ &- 2(ab + bc + cd + de + ea + ac + bd + ce + da + eb) \end{align}$$

And then, $$y = a + b + c + d + e$$ $$a^2 + b^2 + c^2 + d^2 + e^2 = y^2 - 42$$

To minimize it, I would have to minimize $y$, which is where I got stuck

I saw a sort-of similar question with 4 variates, but that method didn’t work (or idk how to apply it).

If you could continue upon how to solve it from where I got stuck, please do so. Also, any other methods are welcome too.

Edit 1: I think inequalities like Cauchy, Trivial etc. measure the lower bound, not minimum value (correct me if I am wrong) so using them does not give the desired result.

Blue
  • 83,939
Pradeep
  • 93

1 Answers1

2

Do the substitution: $$a=a_0/\sqrt{2},b=b_0/\sqrt{2},c=c_0/\sqrt{2},d=d_0/\sqrt{2},e=e_0/\sqrt{2}$$ $$\implies a_0b_0+b_0c_0+c_0d_0+d_0e_0+e_0a_0=20,$$ $$a_0c_0+b_0d_0+c_0e_0+d_0a_0+e_0b_0=22,$$ $$a^2+b^2+c^2+d^2+e^2=\frac{1}{2}\left(a_0^2+b_0^2+c_0^2+d_0^2+e_0^2\right)$$ Using the same technique to this answer by River Li, we get: $$a_0^2+b_0^2+c_0^2+d_0^2+e_0^2\ge 21+\sqrt{5}$$ $$\implies a^2+b^2+c^2+d^2+e^2\ge \frac{1}{2}\left(21+\sqrt{5}\right)$$

Thinh Dinh
  • 8,233