【问题标题】:Maple basic: transform the maple resultsMaple 基础:变换 Maple 结果
【发布时间】:2021-05-05 22:28:53
【问题描述】:

我在跑diff(abs(2*x + 5), x),枫给我的答案是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)

感谢您的帮助。

【问题讨论】:

    标签: maple


    【解决方案1】:
    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 上有说明。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-11-29
      • 1970-01-01
      相关资源
      最近更新 更多