sit65 发表于 2016-5-27 20:37:53

如何用Nspire解带求和的不等式?

我知道怎么解不等式,但是比如说要求
x
Σ(1/i)>10    的x的解怎么办
i=1





明天要考试了,有点慌



@lch 管理员求教

democharge 发表于 2016-5-28 00:02:30

你这个就强人所难了,不过可以用程序的for语句完成

sit65 发表于 2016-5-28 08:02:53

democharge 发表于 2016-5-28 00:02
你这个就强人所难了,不过可以用程序的for语句完成

好吧,谢谢了

sit65 发表于 2016-5-28 08:02:58

democharge 发表于 2016-5-28 00:02
你这个就强人所难了,不过可以用程序的for语句完成

好吧,谢谢了

imath 发表于 2016-6-1 00:22:56

a:=0;
for i,1,10000
if a>10 then
break
else
a = a+1/i
end
endfor
i=i-1
disp i
页: [1]
查看完整版本: 如何用Nspire解带求和的不等式?