When an answer is a MathObject List and the items in the list are named constants, is there a way to get the correct answer displayed in terms of the names for the constants, rather than the values of the constants?
Related question: If I create a MathObject List $G, is there a way for me to get the input string for that list? None of these four methods seems to return the input string from the list $G (see attached file for more context)
$G->value; # this has the matrices
pretty_print($G->data); # a reference to a perl array of the matrices that gets displayed using pretty_print()
$G->TeX; # this has a TeX version of the matrices
$G->string; # this has the matrices
I'm thinking that for my purposes (using Lists to do answer checking for a table) I will need to write some custom answer checkers with pre- and post-filters that control how the entered answer, answer preview, answer, and correct answer are displayed to the student. Because the correct answer is getting displayed by value rather than by name, I was looking for some way to display the input string to the List (which is by name, not value).
Thanks!
Paul Pearson