1

The question says: $a + b + c = 0$

Prove that $$\frac{a^2 + b^2 + c^2}{2} * \frac{a^3 + b^3 + c^3}{3} = \frac{a^5 + b^5 + c^5}{5}$$

So I started with simplifying each part of expression

  1. $$ \frac{a^2 + b^2 + c^2}{2} = \frac{(a+b+c)^2 -2ab-2ac-2bc}{2} = -(ab + ac + bc)$$ Because $a+b+c=0$

  2. $$ \frac{a^3+b^3+c^3}{3} = \frac{(a+b+c)^3 - 3a^2b-3ab^2-3a^2c-3ac^2-3b^2c-3bc^2-6abc}{3} = -(a^2b+ab^2+a^2c+ac^2+b^2c+bc^2 -2abc) $$

So, my question is, what can I do with the second part? Like $\frac{(a+b+c)^2(a+b+c)^3 - ...}{5}$

Willman
  • 15
  • Check this: https://math.stackexchange.com/q/1533909 or this: https://math.stackexchange.com/q/2469296 – Martin R Feb 24 '21 at 14:44
  • https://math.stackexchange.com/questions/1533909/show-that-if-abc-0-then-fraca2b2c22-fraca3b3c33-fr – Steven01123581321 Feb 24 '21 at 14:46
  • Why have you not multiplied out the results of your first two parts and compared with the same process applied to the right-hand side? – Eric Towers Feb 24 '21 at 14:49
  • Because I thought it would be very long and there is a better solution – Willman Feb 24 '21 at 14:50
  • This raises the question of which $p,,q$ give $\overline{x}=0\implies\overline{x^p}\cdot\overline{x^q}=\overline{x^{p+q}}$. – J.G. Feb 24 '21 at 15:04

1 Answers1

5

From $a+b+c=0$, we can replace every occurrence of $a$ with $-b-c$, turning this into a two variable problem. Then, after simplifying the various expressions, we find \begin{align*} \frac{(-b-c)^2+b^2+c^2}{2} &= b^2+bc+c^2 \\ \frac{(-b-c)^3+b^3+c^3}{3} &= -b^2c-bc^2 \\ \frac{(-b-c)^5+b^5+c^5}{5} &= -b^4c -2b^3c^2 -2b^2c^3 -bc^4 \end{align*} It is straightforward to show the product of the first two is the third.

Eric Towers
  • 67,037