I'm trying to write a problem (using Library/NAU/setLinearAlgebra/basisTrace0.pg as a starting point) asking students to input a basis for a subspace of a vector space of matrices. My version is attached.
I'd rather not give away the dimension of the subspace in advance, so I'd like the students to enter their answer as a comma-separated list of matrices. (It is slightly annoying to use the [[a,b],[c,d]] syntax when entering a list, but this is for a class where the students do some computational work with Python, so they're used to this.)
The question will work using the original MultiAnswer setup, but then we know the size of the basis based on the number of blanks.
I can get it to work without custom answer-checking, but then students would need to come up with the 'standard' basis for the answer.
I believe something is wrong with how the matrices in the student answer are being read into the custom answer checker, but I can't figure out what it is.
On the editing page, if I try the preview of the problem, entering the correct answer (which is [[1,0],[0,-1]],[[0,0],[1,0]],[[0,1],[0,0]]) results in the correct answer preview, but the message "Matrices must have at least one entry".
If I try the problem from the library browser, the correct answer is marked as correct. But if I replace one of the matrices by a multiple of that matrix, the answer gets marked wrong. (It should not.) None of the error messages in the custom checker show up at any point.