File:  [LON-CAPA] / loncom / html / adm / help / tex / Tolerance.tex
Revision 1.3: download - view: text, annotated - select for diffs
Thu May 29 20:30:51 2003 UTC (21 years, 1 month ago) by albertel
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_X, version_2_8_99_1, version_2_8_99_0, version_2_8_2, version_2_8_1, version_2_8_0, version_2_7_X, version_2_7_99_1, version_2_7_99_0, version_2_7_1, version_2_7_0, version_2_6_X, version_2_6_99_1, version_2_6_99_0, version_2_6_3, version_2_6_2, version_2_6_1, version_2_6_0, version_2_5_X, version_2_5_99_1, version_2_5_99_0, version_2_5_2, version_2_5_1, version_2_5_0, version_2_4_X, version_2_4_99_0, version_2_4_2, version_2_4_1, version_2_4_0, version_2_3_X, version_2_3_99_0, version_2_3_2, version_2_3_1, version_2_3_0, version_2_2_X, version_2_2_99_1, version_2_2_99_0, version_2_2_2, version_2_2_1, version_2_2_0, version_2_1_X, version_2_1_99_3, version_2_1_99_2, version_2_1_99_1, version_2_1_99_0, version_2_1_3, version_2_1_2, version_2_1_1, version_2_1_0, version_2_11_0_RC1, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, version_2_0_X, version_2_0_99_1, version_2_0_2, version_2_0_1, version_2_0_0, version_1_99_3, version_1_99_2, version_1_99_1_tmcc, version_1_99_1, version_1_99_0_tmcc, version_1_99_0, version_1_3_X, version_1_3_3, version_1_3_2, version_1_3_1, version_1_3_0, version_1_2_X, version_1_2_99_1, version_1_2_99_0, version_1_2_1, version_1_2_0, version_1_1_X, version_1_1_99_5, version_1_1_99_4, version_1_1_99_3, version_1_1_99_2, version_1_1_99_1, version_1_1_99_0, version_1_1_3, version_1_1_2, version_1_1_1, version_1_1_0, version_1_0_99_3, version_1_0_99_2, version_1_0_99_1, version_1_0_99, version_1_0_3, version_1_0_2, version_1_0_1, version_1_0_0, version_0_99_5, version_0_99_4, version_0_99_3, version_0_99_2, version_0_99_1, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, conference_2003, bz6209-base, bz6209, bz5969, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, GCI_2, GCI_1, BZ5971-printing-apage, BZ5434-fox, BZ4492-merge, BZ4492-feature_horizontal_radioresponse
- Fixes Bug #1313

    1: \label{Tolerance}
    2: A \textbf{tolerance\index{tolerance}} parameter determines how closely
    3: the system will require the student's answer to be in order to count it correct.
    4: 
    5: 
    6: For technical reasons, it is almost never a good idea to set this parameter
    7: to zero. Computers can only approximate computations involving real numbers. For instance,
    8: a computer's {[}decimal{]} answer to the simple problem $\frac{1}{3}$ is
    9: {}``0.33333333333333331''. It \emph{should} be an infinite series of 3's,
   10: and there certainly shouldn't be a {}``1'' in the answer, but no computer
   11: can represent an infinitely long, infinitely detailed real number. Therefore,
   12: for any problem where the answer is not a small integer, you \emph{need}
   13: to allow a tolerance factor, or the students will find it nearly impossible
   14: to exactly match the computers idea of the answer. You may find the
   15: default too large for some problems. 
   16: 
   17: There are
   18: three kinds of tolerance. For some answer $A$ and a tolerance $T$,
   19: 
   20: \begin{enumerate}
   21: \item an \textbf{Absolute} tolerance\index{absolute tolerance}\index{tolerance, absolute}
   22: will take anything in the range $A\pm T$. So if $A=10$ and $T=2$, then
   23: anything between 8 and 12 is acceptable.
   24:  Any number in the tolerance field \emph{without} a \textbf{\%} symbol is
   25: an absolute tolerance.
   26: \item a \textbf{Relative} tolerance\index{relative tolerance}\index{tolerance, relative}
   27: will take anything in the range $A\pm aT$, where \emph{T} is interpreted
   28: as a percentage/100. Any number in the tolerance field \emph{followed by} a \textbf{\%}
   29: symbol is a relative tolerance. For example, $a=10$ and $t=10\%$ will accept
   30: anything between 9 and 11. 
   31: 
   32: \item a tolerance that is a calculated variable (identified by \$ sign as
   33: the first character). For example, if an answer is $\$X$,and for a student
   34: possible values range from $-\$X1$ to $+\$X1$, you could choose $T =
   35: \$tolerance = \$2X1/100;$ acceptable answers would then be from
   36: $\$X-\$tolerance$ to $\$X+\$tolerance$. (This is especially useful when answers
   37: close to zero are possible for some students)
   38: 
   39: \end{enumerate}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>