2

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
daj
  • 6,962
  • 9
  • 45
  • 79

1 Answers1

8

I think ratsubst has the effect you want.

(%i2) ratsubst(foo, x+y, x+y+z);
(%o2)                               z + foo
Robert Dodier
  • 16,905
  • 2
  • 31
  • 48