我想用Mathematica 4 算以下方程y'[t]=24-50y[t]/(30000+30t) 且y[t=0]=200 请问是不是SDolve[{Y'[t]==24-50y[t]/(30000-30t),Y[0]==200},Y[t],t] 为什么我的算不出来~
问题描述:
我想用Mathematica 4 算以下方程
y'[t]=24-50y[t]/(30000+30t) 且y[t=0]=200
请问是不是SDolve[{Y'[t]==24-50y[t]/(30000-30t),Y[0]==200},Y[t],t] 为什么我的算不出来~
答
DSolve[{Y'[t] == 24 - 50 y[t]/(30000 - 30 t), Y[0] == 200}, Y[t], t]
你打错了啊 DSolve