News
Index
Working with MUMIE as author
- Initial steps:
- Articles:
- Problems:
- Programming with Python
- Visualizations with JSXGraph
- Media Documents:
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
You're not logged in
Working with MUMIE as author
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
The following example shows a input.number question:
12345678910111213141516171819 \begin{question}
\begin{variables}
\randdouble{a}{1}{2}
\end{variables}
\type{input.number}
\field{real}
\displayprecision{6}
\correctorprecision[rounded]{3}
\text{Round \var{a} to three decimal places.}
\begin{answer}
\text{Answer: }
\solution{a}
\end{answer}
\end{question}
\correctorprecision
determines the amount of digits behind the decimal mark the corrector will be using to determine if the user where answer was correct and \displayprecision
determines the amount of digits behind the decimal mark when displaying a number of type real. The default value for both is set to 2.
There are three options for comparing the real answer and solution.
atleast
(default) : means that the answer must be typed in (rounded) with atleast the given precision. We explain the precise meaning of atleast
in the context of the above example:rounded
: means that the answer must be rounded. If you use this option, make sure you tell the users that they must round the result with the given precision.truncate
: means that the answer should not be rounded, and should just be typed in up to the defined number of decimal digits.Display precision has to be bigger or equal than corrector precision.
123 \displayprecision{4}
% Real numbers will be shown with 4 digits behind the decimal mark,
% but correct with only 2 (default).
123 \correctorprecision{4}
% The following is NOT allowed,
% since displayprecision (default 2) is now smaller than the correctorprecision
\function[calculate, <number>]{<var>}{<expression>}
will calculate the <expression>
and round the result according to the value of <number>
. The option <number>
, should only be used when you want to display the result of the calculated function on the screen. If <number>
is not provided calculate will result in a number with an accuracy of up to 16 digits (default) behind the decimal mark.
Alternatively, if you want to display numbers calculated from a function rounded to smaller digits than the corrector precision, you can use the floor function to achieve that.
Example
Let's say corrector precision is 2, but you want the number a displayed truncated or rounded without any
decimal places. You can do the following: (two options)
123 \randdouble{a}{0}{10}
\function[calculate]{a1}{floor(a)} % truncated
\function[calculate]{a2}{floor(a+0.5)} % rounded to integers
Updated by Michael Heimann, 1 year, 7 months ago – 6b15628