Maxima Function
cons (expr, list)
Returns a new list constructed of the element expr as its first element, followed by the elements of list. cons also works on other expressions, e.g. cons(x, f(a,b,c)); -> f(x,a,b,c).
cons
cons(x, f(a,b,c));
f(x,a,b,c)