MathGroup Archive 2003

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

Search the Archive

Re: Conjugate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg43563] Re: Conjugate
  • From: "Peter Pein" <peter1963 at totalise.co.uk>
  • Date: Sat, 20 Sep 2003 06:39:32 -0400 (EDT)
  • References: <bkedf9$m4s$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hi Jason,

Unprotect[Conjugate];
Conjugate /: Conjugate[BesselJ[n_, x_]] = BesselJ[n, Conjugate[x]];
Protect[Conjugate];

results in:

In[4]:=Conjugate[BesselJ[1, 1 + I]]
Out[4]=BesselJ[1, 1 - I]

Peter

"Jason Sidabras" <jsidabra at mcw.edu> schrieb im Newsbeitrag
news:bkedf9$m4s$1 at smc.vnet.net...
> Hello,
>
> I am currently running into a small hang-up that I was hoping someone
would
> be able to help me with. It concerned the Conjugate function.
>
> Mathematica knows that Conjugate[Sin[x]] is Sin[Conjugate[x]]. That works
> fine. But in my case I would like to do Conjugate[Bessel[1,x]] to equal
> Bessel[1,Conjugate[x]].
>
> Is there a way to allow Conjugate to 'penetrate' into the Bessel function?
I
> am doing complex integrals with Bessel functions and it would greatly
reduce
> the programming time for this to work.
>
> thanks in advance
>
> Jason
>





  • Prev by Date: Re: Convert all graphics to reduce file size?
  • Next by Date: Re: Annotating Mathematica-generated postscript graphics
  • Previous by thread: Conjugate
  • Next by thread: Re: Conjugate