In a book of mine, I found two problems I couldn't solve. Namely:
Let $a,b,c$ satisfies $a+b+c=3,a^2+b^2+c^2=5, a^3+b^3+c^3=7$. There are three questions:
- Find $a^4+b^4+c^4$. There was a solution that the value of the sum of fourth powers is $9$.
But I was unable to solve the following two questions:
Does the pattern continue? Does $a^5+b^5+c^5=11$?
Show that there are no solutions for $a,b$, and $c$ in the real numbers, but there are solutions in the complex numbers.
I tried to solve 2. by Sage:
sage: factor((a+b+c)^5-a^5-b^5-c^5)
5*(a^2 + a*b + b^2 + a*c + b*c + c^2)*(a + b)*(a + c)*(b + c)
I have no idea how to do the part 3. Can anyone show me how to solve 2. and 3.?