Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.soft-sys.math.mathematica > #1973 > unrolled thread

Re: complex equation

Started byDC <b.gatessucks@gmail.com>
First post2011-04-29 11:30 +0000
Last post2011-04-29 11:30 +0000
Articles 1 — 1 participant

Back to article view | Back to comp.soft-sys.math.mathematica


Contents

  Re: complex equation DC <b.gatessucks@gmail.com> - 2011-04-29 11:30 +0000

#1973 — Re: complex equation

FromDC <b.gatessucks@gmail.com>
Date2011-04-29 11:30 +0000
SubjectRe: 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

[toc] | [standalone]


Back to top | Article view | comp.soft-sys.math.mathematica


csiph-web