[Math] Newton-Raphson method for complex numbers

complex numbersnewton raphson

The Newton-Raphson Method as we know it is
$$x_{n+1}=x_n-\frac{f\left(x_n\right)}{f'\left(x_n\right)}$$
Where $x$ is solution of $f\left(x\right)=0$
But What if we have a equation of the form $$xe^x=i$$
Can we apply Newton-Raphson method treating $i$ as constant or we have to substitute $x=a+ib$ and solve two simultaneous equations.
Can you help me please?

Best Answer

Newton-Raphson is exactly the same for equations involving complex numbers. You just have to do the arithmetic using complex numbers.

Related Question