Maxima Function
emptyp (a)
Return true if and only if a is the empty set or the empty list.
true
Examples:
(%i1) map (emptyp, [{}, []]); (%o1) [true, true] (%i2) map (emptyp, [a + b, {{}}, %pi]); (%o2) [false, false, false]