就想知道谁错了
mathematica吧
全部回复
仅看楼主
level 3
Eric🌞😇
楼主
就想知道谁错了
2017年10月17日 10点10分
1
level 12
七伤五劳
没指明n为整数,所以极限不存在,没毛病
2017年10月17日 11点10分
3
Eric🌞😇
怎么指明为整数啊?
2017年10月20日 11点10分
level 1
神圣之战7
Show[Plot[{n*Sin[2 Pi Sqrt[n^2 + 1]], Pi}, {n, 1, 10}],
DiscretePlot[n*Sin[2 Pi Sqrt[n^2 + 1]], {n, 1, 10},
PlotStyle -> Red], Ticks -> {Automatic, {Pi}}]
2017年10月19日 08点10分
5
level 4
已经路过的小强
老哥,没问题
DiscreteLimit[n Sin[2 Pi (Sqrt[n^2 + 1] - n)], n -> \[Infinity]]
2017年10月21日 07点10分
6
xzcyr
这差不多是标准答案了。顺便版本11.2的Limit系函数有重大增强,值得大家关注。
2017年11月04日 08点11分
level 1
神圣之战7
DiscreteLimit直接求这个极限求不出来,Limit却行!
In[1]:= Limit[n Sin[2 Pi Sqrt[n^2 + 1]], n -> \[Infinity],
Assumptions -> n \[Element] Integers]
Out[1]= \[Pi]
In[2]:= DiscreteLimit[n Sin[2 Pi Sqrt[n^2 + 1]], n -> \[Infinity]]
Out[2]=
\!\(\*UnderscriptBox[\(\[Limit]\), \(n\*
UnderscriptBox["\[Rule]",
TemplateBox[{},
"Integers"]]\[Infinity]\)]\) n Sin[2 Sqrt[1 + n^2] \[Pi]]
2017年11月05日 06点11分
7
level 1
神圣之战7
DiscreteLimit 加上一个假设才能求出来!但DiscreteLimit本来就是求离散极限的呀!这是为什么?
In[3]:= DiscreteLimit[n Sin[2 Pi Sqrt[n^2 + 1]], n -> \[Infinity],
Assumptions -> n \[Element] Integers]
Out[3]= \[Pi]
2017年11月05日 06点11分
8
xzcyr
……说出来你可能不信,我在11.4的时候是自己测试过6楼的代码的,能算,可今天,我也遇到和你一样的情况了……
2017年12月02日 10点12分
xzcyr
现在我也不知道是我上个月产生了幻觉还是忽略了什么重大问题……
2017年12月02日 10点12分
xzcyr
@xzcyr
关于这个我想补充一下。有证据表明现在的Mathematica是会联网进行一些小的更新的:
https://mathematica.stackexchange.com/q/125199/1871
Limit的行为改变可能和这个有关。
2018年05月05日 03点05分
1