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

functions - Get leading series expansion term?

Given a function f[x] , I would like to have a function leadingSeries that returns just the leading term in the series around x=0 . For example: leadingSeries[(1/x + 2)/(4 + 1/x^2 + x)] x and leadingSeries[(1/x + 2 + (1 - 1/x^3)/4)/(4 + x)] -(1/(16 x^3)) Is there such a function in Mathematica? Or maybe one can implement it efficiently? EDIT I finally went with the following implementation, based on Carl Woll 's answer: lds[ex_,x_]:=( (ex/.x->(x+O[x]^2))/.SeriesData[U_,Z_,L_List,Mi_,Ma_,De_]:>SeriesData[U,Z,{L[[1]]},Mi,Mi+1,De]//Quiet//Normal) The advantage is, that this one also properly works with functions whose leading term is a constant: lds[Exp[x],x] 1 Answer Update 1 Updated to eliminate SeriesData and to not return additional terms Perhaps you could use: leadingSeries[expr_, x_] := Normal[expr /. x->(x+O[x]^2) /. a_List :> Take[a, 1]] Then for your examples: leadingSeries[(1/x + 2)/(4 + 1/x^2 + x), x] leadingSeries[Exp[x], x] leadingSeries[(1/x + 2 + (1 - 1/x...

How to thread a list

I have data in format data = {{a1, a2}, {b1, b2}, {c1, c2}, {d1, d2}} Tableform: I want to thread it to : tdata = {{{a1, b1}, {a2, b2}}, {{a1, c1}, {a2, c2}}, {{a1, d1}, {a2, d2}}} Tableform: And I would like to do better then pseudofunction[n_] := Transpose[{data2[[1]], data2[[n]]}]; SetAttributes[pseudofunction, Listable]; Range[2, 4] // pseudofunction Here is my benchmark data, where data3 is normal sample of real data. data3 = Drop[ExcelWorkBook[[Column1 ;; Column4]], None, 1]; data2 = {a #, b #, c #, d #} & /@ Range[1, 10^5]; data = RandomReal[{0, 1}, {10^6, 4}]; Here is my benchmark code kptnw[list_] := Transpose[{Table[First@#, {Length@# - 1}], Rest@#}, {3, 1, 2}] &@list kptnw2[list_] := Transpose[{ConstantArray[First@#, Length@# - 1], Rest@#}, {3, 1, 2}] &@list OleksandrR[list_] := Flatten[Outer[List, List@First[list], Rest[list], 1], {{2}, {1, 4}}] paradox2[list_] := Partition[Riffle[list[[1]], #], 2] & /@ Drop[list, 1] RM[list_] := FoldList[Transpose[{First@li...

front end - keyboard shortcut to invoke Insert new matrix

I frequently need to type in some matrices, and the menu command Insert > Table/Matrix > New... allows matrices with lines drawn between columns and rows, which is very helpful. I would like to make a keyboard shortcut for it, but cannot find the relevant frontend token command (4209405) for it. Since the FullForm[] and InputForm[] of matrices with lines drawn between rows and columns is the same as those without lines, it's hard to do this via 3rd party system-wide text expanders (e.g. autohotkey or atext on mac). How does one assign a keyboard shortcut for the menu item Insert > Table/Matrix > New... , preferably using only mathematica? Thanks! Answer In the MenuSetup.tr (for linux located in the $InstallationDirectory/SystemFiles/FrontEnd/TextResources/X/ directory), I changed the line MenuItem["&New...", "CreateGridBoxDialog"] to read MenuItem["&New...", "CreateGridBoxDialog", MenuKey["m", Modifiers-...