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
I think
ratsubst
has the effect you want.