公告:本站正式转型为非交互式静态网站! 转型:本站将通过笔记和博客的形式继续为大家服务,关于 Mathematica 问答服务请移步至QQ群:365716997。 联系:如有问题请联系QQ群管理员,或发送邮件至:lixuan.xyz@qq.com。 感谢:最后非常感谢大家多年来的支持与帮助! 参考:《互联网跟帖评论服务管理规定》《中华人民共和国网络安全法》《网络信息内容生态治理规定》《互联网用户账号信息管理规定》
—— 2022-11-27
欢迎来到 Mathematica 问答社区
● 提问时请贴上文本代码
● 语法高亮:在编辑器中点击
● 被禁止的话题:广告,破解
● 请阅读:《提问的智慧》
● 备用域名:mma.ooo
● 支持LaTex数学公式: 行内公式标识符:\$ 或“$\backslash ($”+“$\backslash )$”, 行间公式标识符:\$\$ 或 “$\backslash [$”+“$\backslash ]$”
● 社区建议QQ群:365716997
538 问题
531 回答
1.5k 留言
229 用户
Integrate[x/(1 + x^6*Sin[x]^2), {x, 0, Infinity}]
这是数学分析上面的一个题目
客服的回信:
Thank you for your email and the derivation. I filed a suggestion with developers for a better message in this case. Dividing into Pi-width sections was useful for getting a better estimate with NIntegrate. Integrate does not perform this integral for the small sections, so no closed-form result is available.
可能是这个积分求不出他的原函数,至于给出的结果不收敛,可能是这样,当x的取值比较大的时候,比如 100000000Pi(可以看出在是Pi的倍数的时候积分函数的值是等于x的,如2Pi带入,结果就是2Pi)时,函数是 阶跃的,函数下面的面积可能mathematica认为就是很大,趋于无穷的时候认为是无穷大。
Plot[x/(1 + x^6*Sin[x]^2), {x, 31.4, 31.44}, PlotRange -> All]
NIntegrate[x/(1 + x^6*Sin[x]^2), {x, 0, Infinity}, Method -> "LocalAdaptive"]
能给出个大概结果