Skip to main content

calculus and analysis - Definite integral of a real function outputs complex number


I was just wondering how such an integral:



Integrate[(1.2 - 0.05 x)^2 x^4 ((1 - 0.85 (1.2 - 0.05 x))^0.5 (2 + 
0.85 (1.2 - 0.05 x)) - (1 + 1.7 (1.2 - 0.05 x)) ArcCos[
0.85 (1.2 - 0.05 x)]),{x,0,8}]

would output a complex number. How is so? Is this some sort of error? Should I add some sort of assumption? Or suggest an integration method (numerical)? I've tried some yet a still get a complex result.



Answer



There is in fact a problem with evaluating the integral


Let's save the integrand:


int = (1.2 - 0.05 x)^2 x^4 ((1 - 0.85 (1.2 - 0.05 x))^(1/2) *
(2 + 0.85 (1.2 - 0.05 x)) - (1 + 1.7 (1.2 - 0.05 x)) ArcCos[0.85 (1.2 - 0.05 x)]);


It seems there is more to the OP's integral than just why does it return complex values:


Integrate[int, {x, 0, 8}]
(* -1833.02 - 268.546 I *)

Integrate[int, {x, 8/17, 8}]
Integrate[int, {x, 0, 8/17}]
% + %%
(*
-2101.56 + 2.15407*10^-25 I

0. + 849215. I
-2101.56 + 849215. I
*)

NIntegrate[int, {x, 0, 8}]
(* -2101.56 - 0.0000559972 I *)

These are inconsistent results.


Rationalizing doesn't help:


ratint = Simplify@Rationalize[int]

Integrate[ratint, {x, 0, 8}]
(*
-(1/3200000)(-24 + x)^2 x^4 ((-1208 + 17 x) Sqrt[-8 + 17 x] -
40 (-608 + 17 x) ArcCos[-(17/400) (-24 + x)])
*)


Throw::sysexc: Uncaught SystemException returned to top level. Can be caught with Catch[[Ellipsis], _SystemException].



SystemException["MemoryAllocationFailure"]


[Added 6/20/2017.] However, if we split the integral at the singularity at x == 8/17 where the square root (1 - 0.85 (1.2 - 0.05 x))^(1/2) goes from imaginary to real, rationalizing the integrand does work:


Integrate[ratint, {x, 0, 8/17}] + Integrate[ratint, {x, 8/17, 8}]
N[%]
(*

-2101.56 - 0.000420871 I
*)

How to fix it



[Added 6/20/2017.] An easier way than the original below is to pass NIntegrate[] the singular point. Then it integrates quite easily and stably (as the precision is increased):


NIntegrate[int, {x, 0, 8/17, 8}]
NIntegrate[ratint, {x, 0, 8/17, 8}, WorkingPrecision -> 24] (* need high prec. integrand *)
NIntegrate[ratint, {x, 0, 8/17, 8}, WorkingPrecision -> 50]
(*
-2101.56 - 0.000421068 I
-2101.56245616445471106361 - 0.00042087103162815865 I
-2101.5624561644547110636118139788605647565220617959 -
0.0004208710316281586476679535473306338243068408 I
*)


Note that in the machine precision answer, the PrecisionGoal will be around 8 digits relative to the magnitude of the answer, which is about 2000. Therefore one should expect the imaginary part to be accurate to 4 or so decimal places. If we compared these answers with the first NIntegrate[] result -2101.56 - 0.0000559972 I, the relative error is 2*^-7, just slightly worse than expected. Singularities tend to make the error estimator perform worse.


[Original answer -- there may be some value in its demonstration of determining an appropriate WorkingPrecision setting, even though it is not the best approach to this problem.] The common advice about avoiding approximate reals in exact solvers like Integrate does not appear to be helpful. But we can increase the precision. Note how much precision is lost, if we start with 50 digits (more than half). This is an ill-conditioned problem.


Integrate[SetPrecision[int, 50], {x, 0, 8}]
(* -2101.56245616445443429289 - 0.00042087103162815114 I *)

Precision[%]
(* 23.4808 *)

The imaginary part doesn't quite agree with the numerical result above. Perhaps we should verify the numerical result by increasing its WorkingPrecision a bit.



NIntegrate[SetPrecision[int, 24], {x, 0, 8},
WorkingPrecision -> 24, MaxRecursion -> 20]
(* -2101.56245616445443049217 - 0.00042087103155248696 I *)

That seems better. I think we can have some confidence in the first several digits of the answer.


Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...

Is there a way to do conditional matrix loop using 'continue'

I have the following: n = 3; m = 5; ww = RandomReal[{0, 0.1}, {n, n}]; uu = RandomReal[{0, 1}, {m, n}]; pp = RandomReal[{0, 1}, {n, n}]; ss = RandomInteger[{0, 5}, {m, n}]; Grid[{{"ww", "uu", "pp", "ss"}, {ww // TableForm, uu // TableForm, pp // TableForm, ss // TableForm}}, Spacings -> {5, 2}, Dividers -> All] where I would like to look at every element of matrix ss and produce a matrix tt , with zeroes at the locations in ss which have zeroes, and in all other positions do the following: tt = (-1/Subscript[ww, m]) Log[(1 - uu)/(Subscript[pp, m - 1])], where Subscript[ww, m] is the value at index of ww matrix and where Subscript[pp, m - 1] is the value at index-1 of pp matrix. So for example if the first value ever read from matrix ss happens to be 2, then value taken from matrix ww would be from the row 2, but from pp would be from row 1. Also how to tell difference between a 0 as a valid value from within the matrix elemen...