Is there a systematic way to express the sum of two complex numbers of different magnitude (given in the exponential form), i.e find its magnitude and its argument expressed in terms of those of the initial numbers?
2026-04-17 18:27:24.1776450444
sum of complex number of different magnitude
4.4k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Convert to rectangular form, add. convert back.
$$\begin{eqnarray} [r, \theta] + [s, \phi]& \to& (r \cos \theta, r \sin \theta) + (s \cos \phi, s \sin \phi) \to (r \cos \theta + s \cos \phi, r \sin \theta + s \sin \phi)\\ &\to& \bigg[\sqrt{(r \cos \theta + s \cos \phi)^2 + ( r \sin \theta + s \sin \phi)^2},\\ &&\text{atan2}(r \sin \theta + s \sin \phi, r \cos \theta + s \cos \phi)\bigg] \end{eqnarray}$$
where I'm using brackets for polar form, and parens for $x + iy$ form. "atan2" returns an arg between $-\pi$ and $\pi$, so you may want to add $2\pi$ if the returned arg is negative.
The expression under the square-root can be expanded and simplified somewhat, but I find it's probably simpler to see what's going on in this form.