如何在 Maple 中减去两个和
我有两个具有可变边界的序列,例如
> a:=Sum(x(i),i=n..m);
> b:=Sum(x(i),i=n-1..m+1);
n
和 m
是任意自然数,显然是 m>n
。
我想从 b
中减去 a
并查看 Maple
如何将表达式简化为
> b-a;
x(n-1)+x(m+1);
Is it possible in Maple or in another CAS?
I've got two sequences with variable boundaries like
> a:=Sum(x(i),i=n..m);
> b:=Sum(x(i),i=n-1..m+1);
n
and m
are arbitrary natural numbers and obviously m>n
.
I want to substract a
from b
and see how Maple
simplifies the expression to
> b-a;
x(n-1)+x(m+1);
Is it possible in Maple or in another CAS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用临时对象来完成此操作,然后分两个阶段进行操作。
或者您可以将其放入程序中。
You might do it by using a temporary object,and then acting in two stages.
Or you might put that into a procedure.