Another way to solve this problem with complex expressions

73 Views Asked by At

The problem is this:

Express $x$ and $y$ with $u$ and $v$, if $\dfrac{1}{x+iy} + \dfrac{1}{u+iv} = 1$

Where $x,y,u,v \in \mathbb{R}$, and $i^2 = -1$.

I could solve it, but I used a hairy and extremely large method: simplify the expression using Algebra, separate the real and imaginary part of it, and then use the substitution method recursively to get $x$ and $y$ as the problem states. As you may think now, I did a lot of simplifications and operations!

Is there another method to solve this?

Any help will be appreciated. Thank you! ;)

2

There are 2 best solutions below

4
On

In complex notation, we face $1/z+1/w=1$ to solve for $w$ we isolate it $1/w = 1-1/z$ then invert both sides to obtain $w = \frac{1}{1-1/z}$. Then, to find the solutions for $u,v$ in terms of $x,y$ I bet you can do.

1
On

Hint

You can use brute force and rewrite you expression as $$(u+i v)+(x+i y)=(u+i v)(x+i y)$$ and develop. The real and imaginary parts give you two equations $$u+x-u x+v y=0$$ $$v- vx+y-u y=0$$ which are linear. Solving them is not too hard and you get $$x=\frac{u^2+v^2-u}{(u-1)^2+v^2}$$ $$y=-\frac{v}{(u-1)^2+v^2}$$