I would like to find the numerical integration result for
f=(\[Pi]^2 (-20000 Sqrt[x] (\[Pi]^2 + 40000000 x) + Sqrt[10]
E^(\[Pi]^2/(40000000 x)) \[Pi]^(3/2) (\[Pi]^2 + 60000000 x) Erfc[\[Pi]/(2000 Sqrt[10] Sqrt[x])])
(-20000 Sqrt[-x + \[Gamma]] + Sqrt[10] E^(\[Pi]^2/(40000000 (-x + \[Gamma]))) \[Pi]^(3/2)
Erfc[\[Pi]/(2000 Sqrt[10]Sqrt[-x + \[Gamma]])]))/(320000000000000000000000 x^(7/2)Sqrt[-x + \[Gamma]])
When \[Gamma]=10^-5
, I can do numerical integration from x=0 to \[Gamma]
. However, I received an error message saying the integrand ... has evaluated to Overflow, Indeterminate or Infinity for all sampling points in the region with boundaries ..., when I tried to evaluate
NIntegrate[f3, {x, 0, \[Gamma]}, PrecisionGoal -> 10, WorkingPrecision -> 100]` for `\[Gamma]=10^-4
I have plotted the function f vs x and found that f goes to infinity when x is close to 0. I am wondering how to handle this singularity problem. Any help is much appreciated.