Introduction to Maxima for STACK users
A computer algebra system (CAS) is software that allows the manipulation of mathematical expressions in symbolic form. Most commonly, this is to allow the user to perform some computation. For the purposes of assessment our calculation establishes some relevant properties of the students' answers. These properties include
- using a predicate function to find if a single expression has a property. For example, are any of the numbers floating points?
- comparing two expressions using an answer test to compare two expressions. For example, is the student's expression equivalent to the teacher's?
Maxima is also used for randomly generating structured mathematical objects which become parts of a question and plotting graphs of functions.
To write more than very simple STACK questions you will need to use some Maxima commands. This documentation does not provide a detailed tutorial on Maxima. A very good introduction is given in Minimal Maxima, which this document assumes you have read.
STACK modifies Maxima in a number of ways.
Types of object
Everything in Maxima is either an atom or an expression. Atoms are either an integer number, float, string or a name.  You can use the predicate atom() to decide if its argument is an atom.  Expressions have an operator and a list of arguments. Note that the underscore symbol is not an operator.  Thus a_1 is an atom in maxima. Display of subscripts and fine tuning the display is explained in the atoms, subscripts and fine tuning the LaTeX display page.
Maxima is a very weakly typed language. However, in STACK we need the following "types" of expression:
- equations, i.e. an expression in which the top operation is an equality sign;
- inequalities, for example ;
- sets, for example, ;
- lists, for example, .   In Maxima ordered lists are entered using square brackets, for example as p:[1,1,2,x^2]. An element is accessed using the syntaxp[1].
- matrices.  The basic syntax for a matrix is p:matrix([1,2],[3,4]). Each row is a list. Elements are accessed asp[1,2], etc.
- logical expression.  This is a tree of other expressions connected by the logical andandor. This is useful for expressing solutions to equations, such asx=1 or x=2. Note, the support for these expressions is unique to STACK.
- expressions.
Expressions come last, since they are just counted as being not the others! STACK defines predicate functions to test for each of these types.
Numbers
Numbers are important in assessment, and there is more specific and detailed documentation on how numbers are treated: Numbers in STACK.
Alias
STACK defines the following function alias names
simplify(ex) := ev(fullratsimp(ex), simp);
int := integrate
The absolute value function in Maxima is entered as abs().  STACK also permits you to enter using | symbols, i.e.|x|.  This is an alias for abs.  Note that abs(x) will be displayed by STACK as .
STACK also redefined a small number of functions
- The plot command plot2dis not used in STACK questions. Useplotinstead, which is documented on the Maxima plot page. This ensures your image files are available on the server.
- The random number command randomis not used in STACK questions. Use the commandrandinstead. This ensures pseudorandom numbers are generated and a student gets the same version each time they login.
Parts of Maxima expressions
op(x) - the top operator
It is often very useful to take apart a Maxima expression. To help with this Maxima has a number of commands, including op(ex), args(ex) and part(ex,n). Maxima has specific documentation on this.
In particular,  op(ex) returns the main operator of the expression ex.  This command has some problems for STACK.
- calling op(ex)on an atom (see Maxima's documentation on the predicateatom(ex)) such as numbers or variable names, causeop(ex)to throw an error.
- op(ex)sometimes returns a string, sometimes not.
- the unary minus causes problems.  E.g. in -1/(1+x)the operation is not "/", as you might expect, but it is "-" instead!
To overcome these problems STACK has a command
safe_op(ex)
This always returns a string.  For an atom this is empty, i.e. "".  It also sorts out some unary minus problems.
We also have a function get_safe_ops(ex) which returns a set of "safe_ops" in the expression.  Atoms are ignored.
get_ops(ex) - all operators
This function returns a set of all operators in an expression. Useful if you want to find if multiplication is used anywhere in an expression.
Maxima commands defined by STACK
It is very useful when authoring questions to be able to test out Maxima code in the same environment which STACK uses Maxima. That is to say, with the settings and STACK specific functions loaded. To do this see STACK-Maxima sandbox.
STACK creates a range of additional functions and restricts those available, many of which are described within this documentation. See also Predicate functions.
| Command | Description | 
|---|---|
| factorlist(ex) | Returns a list of factors of exwith or without multiplicities.  Note, the product of these factors may not be the original expression, and may differ by a factor of  due to unary minus extraction and ordering of variables.  For this reason, if you want to decide iff1is a factor ofexthen it's better to checkremainder(ex,f1)is zero, than membership of the factor list.  E.g. bothremainder(a^2-b^2,b-a)andremainder(a^2-b^2,a-b)are zero, butfactorlist(a^2-b^2)gives[b-a,b+a]which does not containa-bas a factor. | 
| By default, the list does not contain multiplicities. If the list should contain multiplicities, use factorlist(ex, true). | |
| zip_with(f,a,b) | This function applies the binary function to two lists and returning a list. | 
| zip_with_matrix(f,A,B) | This function applies the binary function to two matrices and returning a matrix. An example is given in adding matrices to show working. | 
| coeff_list_nz(ex,v) | This function takes an expression exand returns a list of nonzero coefficients ofv. | 
| divthru(ex) | Takes an algebraic fraction, e.g. and divides through by the denominator, to leave a polynomial and a proper fraction. Useful in feedback, or steps of a calculation. | 
| stack_strip_percent(ex,var) | Removes any variable beginning with the %character fromexand replace them with variables fromvar.  Useful for use with solve, ode2 etc.  Solve and ode2. | 
| exdowncase(ex) | Takes the expression exand substitutes all variables for their lower case version (cfsdowncase(ex)in Maxima).  This is very useful if you don't care if a student uses the wrong case, just apply this function to their answer before using an answer test.  Note, of course, thatexdowncase(X)-x=0. | 
| stack_reset_vars | Resets constants, e.g. , as abstract symbols, see Numbers. | 
| safe_op(ex) | Returns the operation of the expression as a string.  Atoms return an empty string (rather than throwing an error as does op). | 
| comp_square(ex,v) | Returns a quadratic exin the variablevin completed square form. | 
| degree(ex,v) | Returns the degree of the expanded form of exin the variablev. See also Maxima'shipowcommand. | 
| unary_minus_sort(ex) | Tidies up the way unary minus is represented within expressions when simp:false.  See also simplification. | 
Assignment
In Maxima the assignment of a value to a variable is very unusual.
| Input | Result | 
|---|---|
| a:1 | Assignment of the value to . | 
| a=1 | An equation, yet to be solved. | 
| f(x):=x^2 | Definition of a function. | 
In STACK simple assignments are of the more conventional form key : value, for example,
n : rand(3)+2;
p : (x-1)^n;
Of course, these assignments can make use of Maxima's functions to manipulate expressions.
p : expand( (x-3)*(x-4) );
Another common task is that of substitution. This can be performed with Maxima's subst command. This is quite useful, for example if we define   as follows, in the then we can use this in response processing to determine if the student's answer is odd.
p : ans1 + subst(-x,x,ans1);
All sorts of properties can be checked for in this way. For example, interpolates. Another example is a stationary point of at , which can be checked for using
p : subst(a,x,diff(ans1,x));
Here we have assumed a is some point given to the student, ans1 is the answer and that  will be used in the response processing tree.
You can use Maxima's looping structures within Question variables. For example
n : 1;
for a:-3 thru 26 step 7 do n:n+a;
The result will be . It is also possible to define functions within the question variables for use within a question.
f(x) := x^2;
n : f(4);
Logarithms
STACK loads the contributed Maxima package log10.  This defines logarithms to base  automatically. STACK also creates two aliases
- lnis an alias for , which are natural logarithms
- lgis an alias for , which are logarithms to base . It is not possible to redefine the command- logto be to the base .
Sets, lists, sequences, n-tuples
It is very useful to be able to display expressions such as comma separated lists, and n-tuples Maxima has in-built functions for lists, which are displayed with square brackets , and sets with curly braces . Maxima has no default functions for n-tuples or for sequences.
STACK provides an inert function sequence.  All this does is display its arguments without brackets. For example sequence(1,2,3,4) is displayed . STACK provides convenience functions.
- sequenceify, creates a sequence from the arguments of the expression. This turns lists, sets etc. into a sequence.
- sequencepis a predicate to decide if the expression is a sequence.
- The atom dotdotdotis displayed using the tex\ldotswhich looks like . This atom cannot be entered by students.
STACK provides an inert function ntuple.  All this does is display its arguments with round brackets. For example ntuple(1,2,3,4) is displayed .
- ntupleifycreates an n-tuple from the arguments of the expression. This turns lists, sets etc. into an n-tuple.
- ntuplepis a predicate to decide if the expression is an ntuples.
In strict Maxima syntax (a,b,c) is equivalent to block(a,b,c).  If students type in (a,b,c) using a STACK input it is filtered to ntuple(a,b,c). Teachers must use the ntuple function explicitly to construct question variables, teacher's answers, test cases and so on. The ntuple is useful for students to type in coordinates.
If you want to use these functions, then you can create question variables as follows
L1:[a,b,c,d];
D1:apply(ntuple, L1);
L2:args(D1);
D2:sequenceify(L2);
Then L1 is a list and is displayed with square brackets as normal. D1 has operator ntuple and so is displayed with round brackets. L2 has operator list and is displayed with square brackets.  Lastly, D2 is an sequence and is displayed without brackets.
You can, of course, apply these functions directly.
T1:ntuple(a,b,c);
S1:sequence(a,b,c,dotdotdot);
If you want to use sequence or ntuple in a PRT comparison, you probably want to turn them back into lists. E.g. ntuple(1,2,3) is not algebraically equivalent to [1,2,3].  To do this use the args function.   We may, in the future, give more active meaning to the data types of sequence and ntuple.
Currently, students can enter expressions with "implied ntuples" E.g
- Student input of (1,2,3)is interpreted asntuple(1,2,3).
- Student input of {(1,2,3),(4,5,6)}is interpreted as{ntuple(1,2,3),ntuple(4,5,6)}.
- Since no operations are defined on ntuples, students cannot currently enter things like (1,2,3)+s*(1,0,0). There is nothing to stop a teacher defining the expression treentuple(1,2,3)+s*ntuple(1,0,0), but the operations+and*are not defined for ntuples and so nothing will happen! If you want a student to enter the equation of a line/plane they should probably use the matrix syntax for vectors. (This may change in the future).
Matrices have options to control the display of the braces. Matrices are displayed without commas.
If you are interacting with javascript do not use sequenceify.  If you are interacting with javascript, such ss JSXGraph, then you may want to output a list of values without all the LaTeX and without Maxima's normal bracket symbols. You can use
stack_disp_comma_separate([a,b,sin(pi)]);
This function turns a list into a string representation of its arguments, without braces.
Internally, it applies string to the list of values (not TeX!).  However, you might still get things like %pi in the output.
You can use this with mathematical input: {@stack_disp_comma_separate([a,b,sin(pi)])@} and you will get the result a, b, sin(%pi/7) (without the string quotes) because when a Maxima variable is a string we strip off the outside quotes and don't typeset this in maths mode.
Functions
It is sometimes useful for the teacher to define functions as part of a STACK question. This can be done in the normal way in Maxima using the notation.
 f(x):=x^2;
Using Maxima's define() command is forbidden. An alternative is to define f as an "unnamed function" using the lambda command.
 f:lambda([x],x^2);
Here we are giving a name to an "unnamed function" which seems perverse. Unnamed functions are extremely useful in many situations.
For example, a piecewise function can be defined by either of these two commands
 f(x):=if (x<0) then 6*x-2 else -2*exp(-3*x);
 f:lambda([x],if (x<0) then 6*x-2 else -2*exp(-3*x));
You can then plot this using
{@plot(f(x),[x,-1,1])@}
Maxima "gotcha"s!
- Maxima does not have a degreecommand for polynomials. We define one via thehipowcommand.
- Matrix multiplication is the dot, e.g. A.B. The starA*Bgives element-wise multiplication.
- The atoms a1anda_1are not considered to be algebraically equivalent.