NIntegrate::deoncon
Details
Examples
Basic Examples (1)
This shows an example of an integral for which "DoubleExponentialOscillatory" does not reach the precision goal:
NIntegrate[Sin[18x]Cos[12x] / (x + 1), {x, 0, ∞}, Method -> {"DoubleExponentialOscillatory", "Method" -> None}]
Increasing the WorkingPrecision or the PrecisionGoal gives a more correct result:
NIntegrate[Sin[18x]Cos[12x] / (x + 1), {x, 0, ∞}, Method -> {"DoubleExponentialOscillatory", "Method" -> None}, WorkingPrecision -> 20]