This is an example page to show how to take in intervals as answers to a problem. There are a number of options, each one demonstrated below with the corresponding code printed below the answer box/section that you can copy/paste into your own relevant tex file in order to modify and use.

This first is the easiest but least difficult for a student to answer; which is just straight up multiple choice.

We want the interval: .

The code for the multiple choice answer block is the following:

        \begin{multipleChoice}
            \choice{$(a,b)$}
            \choice{$(a,b]$}
            \choice[correct]{$[a,b)$}
            \choice{$[a,b]$}
        \end{multipleChoice}
    
Note that you can add additional \choice{AnswerOptions} to include more possible answer options; say if you wanted to add other values than or as possible endpoints.
If you want to force students to determine if an endpoint is included or not (for example, if you are introducing the difference between brackets and parentheses, or doing an interval of convergence problem) you can use a mixture of open answer and multiple choice style dropdown option to build a multi-part answer.

We want the interval:

,

You can reproduce this answer with the following:

                                                                  

                                                                  
        \wordChoice{
            \choice{$($}
            \choice[correct]{$[$}
            \choice{$)$}
            \choice{$]$}
            }
        $\answer{a}$ , $\answer{b}$
        \wordChoice{
            \choice{$($}
            \choice{$[$}
            \choice[correct]{$)$}
            \choice{$]$}
            }
    
Be careful to note where the mathmode delimiters are being used; the \wordChoice{} command needs to not be in mathmode, but \answer{} must be in mathmode.
Finally, you can just give a number of answer blanks for your students:

We want the interval .

,

You can reproduce this with:

        $\answer[format=string]{[}
        \answer{a}$,
        $\answer{b}
        \answer[format=string]{)}$
    

Notice the ’format=string’ line in the answer boxes that contain the bracket or parentheses. This is necessary because these are otherwise special characters that will ruin the answer box validation process. This is also why it is absolutely necessary to separate any special characters (aka the brackets, braces, and/or parentheses) into their own answer box compared to any other content.

2024-06-24 13:18:12