Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
Function: ldisp (<expr_1>, ..., <expr_n>) Displays expressions <expr_1>, ..., <expr_n> to the console as printed output. ldisp assigns an intermediate expression label to each argument and returns the list of labels.
See also disp.
(%i1) e: (a+b)^3;
3
(%o1) (b + a)
(%i2) f: expand (e);
3 2 2 3
(%o2) b + 3 a b + 3 a b + a
(%i3) ldisp (e, f);
3
(%t3) (b + a) 3 2 2 3
(%t4) b + 3 a b + 3 a b + a (%o4) [%t3, %t4]
(%i4) %t3;
3
(%o4) (b + a)
(%i5) %t4;
3 2 2 3
(%o5) b + 3 a b + 3 a b + a There are also some inexact matches for ldisp. Try ?? ldisp to see them.
(%o1) true (%i2)