Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/loops/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wolfram mathematica 在Mathematica中解积分方程_Wolfram Mathematica_Integration - Fatal编程技术网

Wolfram mathematica 在Mathematica中解积分方程

Wolfram mathematica 在Mathematica中解积分方程,wolfram-mathematica,integration,Wolfram Mathematica,Integration,尊敬的Mathematica用户: 我是一名物理系的学生(对数学不是很熟练),我必须解一个积分方程。下面是我尝试的草图: iterstepGap := (valuesgap = Table[ {t, NIntegrate[ Exp[2 (tprime - t)] gapStart[tprime]/(3- tprime) EllipticK[Exp[tprime - t]], {tprime, -10, t}, MaxRecursion -> 150

尊敬的Mathematica用户:

我是一名物理系的学生(对数学不是很熟练),我必须解一个积分方程。下面是我尝试的草图:

iterstepGap := (valuesgap = Table[
    {t,
     NIntegrate[
     Exp[2 (tprime - t)] gapStart[tprime]/(3- tprime) EllipticK[Exp[tprime - t]],
       {tprime, -10, t}, MaxRecursion -> 150, WorkingPrecision -> 30] +
      NIntegrate[
        Exp[tprime - t] gapStart[tprime]/(3- tprime) EllipticK[Exp[t - tprime]],
       {tprime, t, 0},  MaxRecursion -> 150, WorkingPrecision -> 30]
     }, {t, -10, 0, 1}];
  approxgap[t_] = InterpolatingPolynomial[valuesgap, t]
)

问题是函数的振荡非常严重。正如我所说,我对mathematica非常陌生,我不太确定我做的事情是否正确。。。也许有更好的方法来解这类方程吗


提前非常感谢

你最好在网上问这个问题。转到Mma.SE:
gapStart[t_] = 0.002 Exp[-t] ((Exp[t] + t)/(t - 1) + 1);