Re: The strange behaviour of NIntegrate
- To: mathgroup at smc.vnet.net
- Subject: [mg53529] Re: [mg53508] The strange behaviour of NIntegrate
- From: DrBob <drbob at bigfoot.com>
- Date: Sat, 15 Jan 2005 21:08:08 -0500 (EST)
- References: <200501150644.BAA25316@smc.vnet.net>
- Reply-to: drbob at bigfoot.com
- Sender: owner-wri-mathgroup at wolfram.com
Version 5.1 doesn't have that problem:
\[CurlyPhi][x_] := 1/(E^(x^2/2)* Sqrt[2*Pi]);
K[s_] := ((1 - Sqrt[s])*
\[CurlyPhi][(1 - Sqrt[s])/
Sqrt[1 - s]])/ (1 - s)^1.5;
NIntegrate[K[s], {s, 0, 1}]
0.4206155890394436
BTW, you too can get copy-paste results like that with the "Copy as InputForm" palette:
http://www.eclecticdreams.net/DrBob/copy_as_inputform.htm
Bobby
On Sat, 15 Jan 2005 01:44:07 -0500 (EST), Zaeem Burq <Z.Burq at ms.unimelb.edu.au> wrote:
>
> Dear all,
>
> I'll describe the problem briefly first as follows:
>
> I am trying to NIntegrate a nice function (which I know is integrable), of
> the form
>
> K[s] = h[s]/[(1-s)^1.5] from 0 to 1.
>
> The function is real, but Mathematica spits out a COMPLEX answer!!
> Admittedly, the complex part is very small, and if I truncate the integral
> just below 1, the complex bit disappears and changes the real part very
> slightly.
>
> It seems obvious that Math'ca is choosing the last s value just beyond 1,
> producing the Sqrt of a negative number in the denominator.
>
> If interested, here are the calculations and results. Read on if you think
> you can help. Thanx.
>
> \!\(\(\[CurlyPhi][
> x_] := \[ExponentialE]\^\(\(-x\^2\)/2\)\/\@\(2 \[Pi]\);\)\n
> \(K[s_] := \(\(\ \)\(\((1 - \@s)\)\ \[CurlyPhi][\(1 - \@s\)\/\@\(1 -
> s\)]\)\
> \)\/\((1 - s)\)\^1.5`;\)\)
>
> NIntegrate[K[s], {s, 0, 1}]
>
> gives \!\(\(\(0.4206155890394436`\)\(\[InvisibleSpace]\)\) -
> 3.304807577181973`*^-49\ \[ImaginaryI]\)
>
> and
>
> NIntegrate[K[s], {s, 0, .999999}]
>
> results in
>
> 0.420217
>
> Any thoughts?
>
> Zaeem.
>
>
> Zaeem Burq
> PhD Stochastic Processes,
> Dept. of Mathematics and Statistics,
> Unimelb.
>
> Room 201, Richard Berry Building
> University of Melbourne,
> Parkville, VIC 3052.
>
> ph: 8344 4248.
>
> http://www.ms.unimelb.edu.au/~zab
>
>
>
>
--
DrBob at bigfoot.com
www.eclecticdreams.net
- References:
- The strange behaviour of NIntegrate
- From: Zaeem Burq <Z.Burq@ms.unimelb.edu.au>
- The strange behaviour of NIntegrate