Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.soft-sys.math.mathematica > #1973 > unrolled thread
| Started by | DC <b.gatessucks@gmail.com> |
|---|---|
| First post | 2011-04-29 11:30 +0000 |
| Last post | 2011-04-29 11:30 +0000 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.soft-sys.math.mathematica
Re: complex equation DC <b.gatessucks@gmail.com> - 2011-04-29 11:30 +0000
| From | DC <b.gatessucks@gmail.com> |
|---|---|
| Date | 2011-04-29 11:30 +0000 |
| Subject | Re: complex equation |
| Message-ID | <ipe7gu$qt0$1@smc.vnet.net> |
If you're after complex solutions you might first expand your lhs with
ComplexExpand[Sqrt[1 - (x + I y)^2], TargetFunctions -> {Re, Im}]
and then try
FindRoot[{(4 x^2 y^2 + (1 - x^2 + y^2)^2)^(1/4)
Cos[1/2 ArcTan[1 - x^2 + y^2, -2 x y]] ==
2, (4 x^2 y^2 + (1 - x^2 + y^2)^2)^(1/4)
Sin[1/2 ArcTan[1 - x^2 + y^2, -2 x y]] == 0}, {{x,0}, {y, Sqrt[
3]}}]
Also, notice that :
Reduce[Sqrt[1 - (x + I y)^2] == 2, {x, y}] gives
y == -Sqrt[3] + I x || y == Sqrt[3] + I x
while
Reduce[Sqrt[1 - (x + I y)^2] == -2, {x, y}] gives
False
-Francesco
Back to top | Article view | comp.soft-sys.math.mathematica
csiph-web