trigsimp supplement?



-----maxima-bounces at math.utexas.edu wrote: -----

>"C:/PROGRA~1/MAXIMA~1.1/share/maxima/5.16.1/share/contrib/opsubst.lisp"

If you accidentally do load(opsubst) instead of load("opsubst"), you'll
load .../gentran/test/T.mac. And that's a problem:

(%i1) load("opsubst")$

(%i2) gatherargs(x*exp(x),"^");
(%o2) [[%e,x]]

(%i3) load(opsubst)$

(%i4) gatherargs(x*exp(x),"^");
(%o4) [[%e,y+t]]

(%i5) values;
(%o5) [x,t]

(%i6) x;
(%o6) y+t

(%i7) t;
(%o7) y

Barton