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...

mathematical optimization - Minimizing using indices, error: Part::pkspec1: The expression cannot be used as a part specification

I want to use Minimize where the variables to minimize are indices pointing into an array. Here a MWE that hopefully shows what my problem is. vars = u@# & /@ Range[3]; cons = Flatten@ { Table[(u[j] != #) & /@ vars[[j + 1 ;; -1]], {j, 1, 3 - 1}], 1 vec1 = {1, 2, 3}; vec2 = {1, 2, 3}; Minimize[{Total@((vec1[[#]] - vec2[[u[#]]])^2 & /@ Range[1, 3]), cons}, vars, Integers] The error I get: Part::pkspec1: The expression u[1] cannot be used as a part specification. >> Answer Ok, it seems that one can get around Mathematica trying to evaluate vec2[[u[1]]] too early by using the function Indexed[vec2,u[1]] . The working MWE would then look like the following: vars = u@# & /@ Range[3]; cons = Flatten@{ Table[(u[j] != #) & /@ vars[[j + 1 ;; -1]], {j, 1, 3 - 1}], 1 vec1 = {1, 2, 3}; vec2 = {1, 2, 3}; NMinimize[ {Total@((vec1[[#]] - Indexed[vec2, u[#]])^2 & /@ R...

What is and isn't a valid variable specification for Manipulate?

I have an expression whose terms have arguments (representing subscripts), like this: myExpr = A[0] + V[1,T] I would like to put it inside a Manipulate to see its value as I move around the parameters. (The goal is eventually to plot it wrt one of the variables inside.) However, Mathematica complains when I set V[1,T] as a manipulated variable: Manipulate[Evaluate[myExpr], {A[0], 0, 1}, {V[1, T], 0, 1}] (*Manipulate::vsform: Manipulate argument {V[1,T],0,1} does not have the correct form for a variable specification. >> *) As a workaround, if I get rid of the symbol T inside the argument, it works fine: Manipulate[ Evaluate[myExpr /. T -> 15], {A[0], 0, 1}, {V[1, 15], 0, 1}] Why this behavior? Can anyone point me to the documentation that says what counts as a valid variable? And is there a way to get Manpiulate to accept an expression with a symbolic argument as a variable? Investigations I've done so far: I tried using variableQ from this answer , but it says V[1...