用 Mathematica 求极限
问题描述:
用 Mathematica 求极限
Limit[Exp[-a*x] /; a > 0,x -> Infinity]
如何令程序知道a为正数,让输出结果为0
答
Limit[Exp[-a x],x -> Infinity,Assumptions -> a > 0]