Message Boards Message Boards

0
|
318 Views
|
3 Replies
|
2 Total Likes
View groups...
Share
Share this post:

How to simplify this complex equation

Posted 3 days ago

Equation with Complex Nos.<strong>I need to simplify the top equation so I get the bottom equation. I have been trying to resolve this for days. Arghhhh!!

POSTED BY: Claudine Walduck
3 Replies

I forgot to add, I need to simplify the top equation so I am left with the bottom equation.

POSTED BY: Claudine Walduck
Exp[I v] == SolveValues[(z - 1)/(z + 1) == (1 + x)/(1 - x)*(Exp[I E] - 1)/(Exp[I E] + 1), z][[1]]

(*Where:   z=Exp[I v]*)

(*E^(I v) == -((E^(I E) - x)/(-1 + E^(I E) x))*)

Another way:

 func = (Exp[I v] - 1)/(Exp[I v] + 1) - (1 + x)/(1 - x)*(Exp[I E] - 1)/(Exp[I E] + 1) // FullSimplify
 Sol = Solve[func == 0, v]
 (v /. Sol /. C[1] -> 0)[[1]]
 Exp[I*v] == Exp[I*((v /. Sol /. C[1] -> 0)[[1]])]

 (*E^(I v) == -((E^(I E) - x)/(-1 + E^(I E) x))*)

Regards M.I.

POSTED BY: Mariusz Iwaniuk

Here is a step-by-step derivation:

(E^(I v) - 1)/(E^(I v) + 1) ==
 (1 + x)/(1 - x)*(Exp[I E] - 1)/(Exp[I E] + 1)
MultiplySides[%, E^(I v) + 1, GenerateConditions -> False]
Collect[%, E^(I v)]
AddSides[%, 1 - %[[2, 2]]]
Collect[%, E^(I v), Factor]
DivideSides[%, %[[1]]/E^(I v), GenerateConditions -> False]
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract