Working with MUMIE as author
- Initial steps:
- Articles:
- Problems:
- Visualizations:
- Media Documents:
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
You're not logged in
Working with MUMIE as author
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
When the questions of a problem are grouped into question pools using the command `\randomquestionpool', it is possible to also randomize the order in which the questions chosen from the pools are presented to the user.
This is done by the command \permutequestions
.
Here you can see an example of 3 different questions which are put in two question pools which are permuted randomly by \permutequestions
.
The first pool contains questions 1 and 2. The second pool only contains question 3.
The student sees either the 1st or 2nd question and the 3rd question. The 3rd question might be shown as question a) or as question b).
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 \begin{problem}
\randomquestionpool{1}{2}
\randomquestionpool{3}{3}
\permutequestions
\begin{question} % Question 1
\type{mc.multiple}
\lang{de}{
\text{Frage 1}
\explanation{Die Erklärung}
}
\lang{en}{
\text{Question 1}
\explanation{Explanation}
}
\begin{choice}
\text{$-5 = -5$}
\solution{true}
\end{choice}
\begin{choice}
\text{$5 = |-5|$}
\solution{true}
\end{choice}
\begin{choice}
\text{$5 = -5$}
\solution{false}
\end{choice}
\end{question}
\begin{question} % Question 2
\begin{variables}
\randint[Z]{a}{-3}{3}
\randint[Z]{b}{1}{5}
\randint[Z]{c}{1}{2}
\randint[Z]{d}{1}{5}
\randint[Z]{f}{-5}{5}
\matrix[calculate]{v1}{a\\b\\c}
\matrix[calculate]{v2}{d\\f\\0}
\matrix[calculate]{cr}{-c*f\\c*d\\(a*f)-(d*b)}
\function[calculate]{dot}{a*d+b*f}
\end{variables}
\field{real}
\lang{de}{
\text{Gegeben sind:\\ $\vec{v1} = \var{v1}, \vec{v2} = \var{v2}$}
}
\lang{en}{
\text{Given:\\ $\vec{v1} = \var{v1}, \vec{v2} = \var{v2}$}
}
\begin{answer}
\type{input.matrix}
\text{$\vec{v1} \times \vec{v2} = $}
\solution{cr}
\format{3}{1}
\end{answer}
\begin{answer}
%Second answer with type input.number
\type{input.number} %set a different answer type than the default type
\text{$\vec{v1} \cdot \vec{v2} =$}
\solution{dot}
\end{answer}
\end{question}
\begin{question} % Question 3
\type{input.interval}
\text{Write down the Interval from 1 to 3:}
\field{rational}
\begin{answer}
\text{ A = }
\solution{[1;3]} % or ] for open type, the boundaries should be separated by ";"
\end{answer}
\end{question}
\end{problem}
Updated by Andreas, 5 weeks ago – 46f7f23