2

Solve this equation: $$z+ \bar{z}=|z^2+1|$$

I tried the following. $$x+iy+x-iy=|z^2+1|$$ $$2x=|z^2+1|$$ $$x=(|z^2+1|)/2$$ and I came to a dead end.

How can I proceed?

malloc
  • 407

2 Answers2

5

Instead of splitting into real and imaginary parts, one can also square the original equation and get $$ (z+\bar z)^2 = (z^2+1)\overline{(z^2+1)} = (z^2+1)(\bar z^2+1) $$ (where the second equals sign is because conjugation is an isomorphism).

After multiplying out, the $z^2$ and $\bar z^2$ terms cancel out and we're left with $$ (z\bar z)^2 - 2z\bar z + 1 = 0 $$ which factors as $$ (z\bar z-1)^2 = 0 $$


Here's a diagram that shows geometrically that the equation is indeed true on the right half of the unit circle. The three congruent right triangles show that the distance to $z^2+1$ is twice the real part of $z$.

diagram goes here

3

Hints: $$z^2+1=(x+iy)^2+1=(x^2-y^2+1)+i(2xy)$$ $$|a+ib|^2=a^2+b^2$$

Cameron Buie
  • 102,994