Maple 基础:转换 maple 结果

Maple basic: transform the maple results

我是运行diff(abs(2*x + 5), x),maple给我的答案是2*abs(1, 2*x + 5)

其实我不知道那是什么意思。但我知道答案是(4*x + 10)/abs(2*x + 5)。我怎样才能将答案从 2*abs(1, 2*x + 5) 转换为 (4*x + 10)/abs(2*x + 5)

感谢您的帮助。

diff(abs(2*x + 5), x) assuming x::real;

                  /    5\
          2 signum|x + -|
                  \    2/

ans1 := normal(convert(%,abs));

                 2 x + 5
         ans1 := -------
                 |    5|
                 |x + -|
                 |    2| 

ans2 := (4*x + 10)/abs(2*x + 5);

                 4 x + 10 
         ans2 := ---------
                 |2 x + 5|

combine(normal(convert(ans1-ans2, signum)));

                 0

abs(1,x)的含义在Help page for the abs command上有说明。