Skip to content

Matrix inputs

STACK provides three ways to let students input a matrix:

  1. The matrix input is a fixed grid, one box for each element.
  2. The matrix of variable size input is a textarea into which students type in their answer.
  3. Students can type in the maxima matrix command into another input, e.g. the default algebraic input.

Matrix input

The size of the matrix is inferred from the model answer. STACK then adds an appropriate grid of boxes (of size Box Size) for the student to fill in. This is easier than having students type in Maxima's matrix command, but does give the game away about the size of the required matrix.

The student may not fill in part of a matrix. If they do so, the remaining entries will be completed with ? characters which render the attempt invalid. STACK cannot cope with empty boxes here.

We cannot use the EMPTYANSWER tag for the teacher's answer with the matrix input, because the size of the matrix is inferred from the model answer. If a teacher really wants a correct answer to be a completely empty input then they must use a correctly formatted matrix with null values

ta:transpose(matrix([null,null,null]));

The shape of the parentheses surrounding the brackets is taken from the question level options, except matrix inputs cannont display curly brackets {. (If you can create CSS to do this, please contact the developers!)