0

I wonder how to solve this system of equations:

\begin{cases}a = \left(b-c\right)^{2}\\b = \left(a-c\right)^{2}\\c = \left(a-b\right)^{2}\end{cases}

2 Answers2

1

We have $$a - b = (b-c)^2 - (a-c)^2 = (b -c -a+c)(b-c+a - c) = (b-a)(b+a - 2c)$$ Assuming $a \not = b$, $$1 = -(b+a - 2c) = -b-a+2c \implies c = \frac{1+a+b}{2}$$Plugging in the last equation, $$\frac{1+a+b}{2} = (a-b)^2$$ Note that $a,b\ge 0$. Solving this quadratic equation when $a \ge -\frac{9}{16}$, $$b = \frac{4a - \sqrt{16a + 9} + 1}{4}, b = \frac{4a + \sqrt{16a + 9} + 1}{4}$$ Now use these solutions and the first equation to find $a = 0,b=1$ or $a = 1,b = 0$. If $a = b$ then $c = 0$ and $$a = b^2 \\ b = a^2 $$ which implies $a = b = 1$ or $a = b = 0$.

S.H.W
  • 4,379
0

Hint for a possible approach:

  • Substitute $a=(b-c)^2$ into $b=(a-c)^2$
  • Expand this into an quartic equation involving $b$ and $c$
  • That can be factorised into two quadratics involving $b$ and $c$
  • So you can get four possible expressions for $b$ in terms of $c$
  • You can then use each of these in $c=(a-b)^2$ to get corresponding values of $c$ (messy but simplifies nicely), and thus working backwards of $b$ and $a$
  • so you end with a set of solutions for $(a,b,c)$
Henry
  • 157,058