Maxima Function
symbolp (expr)
Returns true if expr is a symbol, else false. In effect, symbolp(x) is equivalent to the predicate atom(x) and not numberp(x).
true
false
symbolp(x)
atom(x) and not numberp(x)
See also Identifiers.
Identifiers