如何在 Maple 中减去两个和

发布于 2024-10-06 11:18:33 字数 352 浏览 11 评论 0原文

我有两个具有可变边界的序列,例如

> a:=Sum(x(i),i=n..m);
> b:=Sum(x(i),i=n-1..m+1);

nm 是任意自然数,显然是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜你已久 2024-10-13 11:18:33

您可以通过使用临时对象来完成此操作,然后分两个阶段进行操作。

a:=Sum(x(i),i=n..m):
b:=Sum(x(i),i=n-1..m+1):

temp := Sum(x(i),i=op(1,rhs(op(2,a)))..op(2,rhs(op(2,b))));
                       m + 1     
                       -----     
                        \        
                         )       
                        /    x(i)
                       -----     
                       i = n    

value( combine(b-temp) + combine(temp-a) );
                  x(n - 1) + x(m + 1)

或者您可以将其放入程序中。

combminus:=proc(s::specfunc(anything,Sum),t::specfunc(anything,Sum))
   local temp;
   if op(1,s) = op(1,t) then
      temp:=Sum(op(1,s),i=op(1,rhs(op(2,s)))..op(2,rhs(op(2,t))));
      value(combine(s-temp)+combine(temp-t));
   else
      s-t;
   end if;
end proc:

combminus(b, a);
                  x(n - 1) + x(m + 1)

You might do it by using a temporary object,and then acting in two stages.

a:=Sum(x(i),i=n..m):
b:=Sum(x(i),i=n-1..m+1):

temp := Sum(x(i),i=op(1,rhs(op(2,a)))..op(2,rhs(op(2,b))));
                       m + 1     
                       -----     
                        \        
                         )       
                        /    x(i)
                       -----     
                       i = n    

value( combine(b-temp) + combine(temp-a) );
                  x(n - 1) + x(m + 1)

Or you might put that into a procedure.

combminus:=proc(s::specfunc(anything,Sum),t::specfunc(anything,Sum))
   local temp;
   if op(1,s) = op(1,t) then
      temp:=Sum(op(1,s),i=op(1,rhs(op(2,s)))..op(2,rhs(op(2,t))));
      value(combine(s-temp)+combine(temp-t));
   else
      s-t;
   end if;
end proc:

combminus(b, a);
                  x(n - 1) + x(m + 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文