-1

Title says it all. It's my homework and I don't know where to start. A good hint would be appreciated.

2 Answers2

5

Let $p,q$ be the numbers such that the roots of $x^3+px+q=0$ are $a,b,c$.

Then, by Vieta's formulas, $$a+b+c=0,\qquad ab+bc+ca=p\tag1$$

Now express $a^2+b^2+c^2,a^3+b^3+c^3$ and $a^5+b^5+c^5$ by $p,q$ using $(1)$ and $$x^3=-px-q,\qquad x^5=x^2(-px-q)=-px^3-qx^2.$$

mathlove
  • 139,939
3

Replace $c$ by $-(a+b)$ and expand, then we can get following

$LHS=\frac{a^2+b^2+(a+b)^2}{2}*\frac{a^3+b^3-(a+b)^3}{3}=(a^2+b^2+ab)(a^2b+ab^2)=ab(a+b)(a^2+b^2+ab)$

$RHS=\frac{a^5+b^5-(a+b)^5}{5}=a^4b+2a^3b^2+2a^2b^3+ab^4=ab(a^3+b^3+2a^2b+2ab^2)=ab(a+b)(a^2+b^2-ab+2ab)=ab(a+b)(a^2+b^2+ab)$

Thus, you can see $LHS=RHS$

Chayu
  • 509