maxima CAS - how to substitute variable for an expression?

3.7k views Asked by At

In maxima, is there a way to apply variable substitutions for a subexpression? For example, replace instances of x+y with z.

subst works for the trivial case, but not for anything more than that.

(%i92) subst(x + y = foo, x + y);
(%o93) foo
(%i94) subst(x + y = foo, x + y + z);
(%o95) z + y + x
1

There are 1 answers

0
Robert Dodier On BEST ANSWER

I think ratsubst has the effect you want.

(%i2) ratsubst(foo, x+y, x+y+z);
(%o2)                               z + foo