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: fullsetify (<a>) When <a> is a list, replaces the list operator with a set operator, and applies fullsetify to each member which is a set. When <a> is not a list, it is returned unchanged.
setify replaces only the main operator.
Examples:
In line(%o2), the argument offisnt converted to a set because the main operator off([b])isnt a list.
(%i1) fullsetify ([a, [a]]);
(%o1) {a, {a}}
(%i2) fullsetify ([a, f([b])]);
(%o2) {a, f([b])}(%o1) true (%i2)