MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Simplifying Conjugate[] with 5.2 Mac

  • To: mathgroup at smc.vnet.net
  • Subject: [mg59770] Re: Simplifying Conjugate[] with 5.2 Mac
  • From: "Steve Luttrell" <steve_usenet at _removemefirst_luttrell.org.uk>
  • Date: Sat, 20 Aug 2005 03:14:20 -0400 (EDT)
  • References: <de45i8$qtf$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

FullSimplify does what you want in Mathematica 5.2 for Windows.

$Assumptions = {{x, y} \[Element] Reals};

FullSimplify[Conjugate[x + I*y]]

    x - I*y

Steve Luttrell

"Steuard Jensen" <sbjensen at midway.uchicago.edu> wrote in message 
news:de45i8$qtf$1 at smc.vnet.net...
> I've just upgraded from Mathematica 5.0 to 5.2 for the Mac, and I
> discovered that a notebook that ran fine before (finishing in ten or
> fifteen minutes) was now being tremendously slow.  I'm sure I haven't
> tracked down everything that I need to fix by hand to speed it back up
> again (I did a lot of tuning when I wrote it), but it seems that part
> of the problem can be tracked back to what looks like a bug in
> Simplify[] (or at least an awfully annoying behavior).
>
> Specifically, I have used $Assumptions to define some variables as
> real.  I apply Conjugate to various expressions, and then Simplify the
> results.  In version 5.0, I _never_ saw a case in which Conjugate[]
> remained after this step.  But in 5.2, I find that even simple forms
> like Conjugate[x + I y] often remain unsimplified.  (Refine[x + I y]
> still seems to work, though.)
>
> I've cut and pasted a simple example below, and I'd be interested to
> know if other people experience the same behavior.  I'd appreciate any
> advice or comments on how to handle this, or on where I should write
> to report this strange behavior to Wolfram if you think that's
> appropriate.  Thanks in advance for any help you can give.
>
> Steuard Jensen
>
> ------------------------------------------------------------
>
> In[1]:= $Assumptions={Element[{x,y},Reals]};
>
> In[2]:= Simplify[Conjugate[x]]
>
> Out[2]= x
>
> In[3]:= Simplify[Conjugate[I y]]
>
> Out[3]= -I y
>
> In[4]:= Simplify[Conjugate[x+y]]
>
> Out[4]= x+y
>
> In[5]:= Simplify[Conjugate[x+I y]]
>
> Out[5]= Conjugate[x + I y]
>
> In[6]:= Refine[Conjugate[x+I y]]
>
> Out[6]= x - I y
>
> ------------------------------------------------------------
> 



  • Prev by Date: Re: Simplifying Conjugate[] with 5.2 Mac
  • Next by Date: Re: How to specify boundary conditions on all 4 sides of a plate for a steady state heat equation (PDE) using NDSolve? (Laplace equation)
  • Previous by thread: Re: Simplifying Conjugate[] with 5.2 Mac
  • Next by thread: Re: Simplifying Conjugate[] with 5.2 Mac