Incorrect integral being returned.

1 次查看(过去 30 天)
getting an odd result when trying to integrate 50 - t.
syms t;
rate = 50- t;
int(rate)
it returns -(t - 50)^2/2 I'm pretty sure the integral should return -(t*(t - 100)/2
Is there a fix for this?
  2 个评论
Walter Roberson
Walter Roberson 2011-11-19
You are correct that that output should be what you expected (or a form of that).
Which MATLAB version are you using?

请先登录,再进行评论。

采纳的回答

Wayne King
Wayne King 2011-11-20
I don't see what is wrong with that antiderivative, maybe it differs by a constant from what you expect, but it is a valid antiderivative.
-(t-50)^2/2 differentiated with respect to t is 50-t
-(t(t-100))/2 differentiated with respect to t is also 50-t
The above two expressions only differ by a constant.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by