当我使用 Maxima 计算泰勒级数时:

f(x,y) := taylor((x+y)^3, [x, y], [2, 3], 2);
f(2,3);  /* error: wrong number of arguments */

基本上,我想将一个函数定义为(x+y)^3的扩展,它将x,y作为参数。我怎样才能做到这一点?

最佳答案

尝试

(%i1) f(x,y) := ''(ratdisrep(taylor(('x+'y)^3, ['x, 'y], [2, 3], 2))) $

(%i2) f(2, 3);
(%o2)                                 125

或者
(%i1) define(f(x, y), ratdisrep(taylor(('x+'y)^3, ['x, 'y], [2, 3], 2)))$

(%i2) f(2, 3);
(%o2)                                 125

关于maxima - 将泰勒展开式分配给功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23294656/

10-09 02:37