Difference between revisions of "AnswerHints"
(New page: <h2>Answer Hints</h2> <!-- Header for these sections -- no modification needed --> <p style="background-color:#eeeeee;border:black solid 1px;padding:3px;"> <em>This PG code shows how ...) |
|||
(30 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{historical}} |
||
+ | |||
+ | <p style="font-size: 120%;font-weight:bold">This problem has been replaced with [https://openwebwork.github.io/pg-docs/sample-problems/problem-techniques/AnswerHints.html a newer version of this problem]</p> |
||
<h2>Answer Hints</h2> |
<h2>Answer Hints</h2> |
||
<!-- Header for these sections -- no modification needed --> |
<!-- Header for these sections -- no modification needed --> |
||
− | < |
+ | <div style="background-color:#eeeeee;border:black solid 1px;padding:3px;"> |
− | + | This PG code shows how to include three different kinds of answer hints: |
|
+ | <ul type="square"> |
||
+ | <li>General answer hints that help students get started on a problem and are always available via "Knowls".</li> |
||
+ | <li>General answer hints that help students get started on a problem and are made available after a student has submitted an answer at least once (a "Show hints" checkbox appears near the "Submit Answers" button) via a <code>BEGIN_HINT / END_HINT</code> block of text.</li> |
||
+ | <li>Specific, customized answer hints that appear in the answer feedback messages box after a student submits a particular answer that activates a pre-programmed hint via the <code>answerHints.pl</code> macro and a post-filter with answer hints for the answer checker.</li> |
||
+ | </ul> |
||
<br /> |
<br /> |
||
− | <br /> |
||
+ | You may also be interested in [http://webwork.maa.org/wiki/ErrorMessageCustomization ErrorMessageCustomization] |
||
− | See also [http://webwork.maa.org/wiki/ErrorMessageCustomization ErrorMessageCustomization] and [http://webwork.maa.org/wiki/TextHints TextHints] |
||
+ | </div> |
||
− | </em> |
||
− | </p> |
||
<p style="text-align:center;"> |
<p style="text-align:center;"> |
||
− | [[ |
+ | [[Problem_Techniques|Problem Techniques Index]] |
</p> |
</p> |
||
Line 29: | Line 30: | ||
DOCUMENT(); |
DOCUMENT(); |
||
loadMacros( |
loadMacros( |
||
− | "PGstandard.pl", |
+ | "PGstandard.pl", |
− | "MathObjects.pl", |
+ | "MathObjects.pl", |
− | "answerHints.pl", |
+ | "answerHints.pl", |
); |
); |
||
Line 40: | Line 41: | ||
<p> |
<p> |
||
<b>Initialization:</b> |
<b>Initialization:</b> |
||
− | We need to include the macros file <code>MathObjects.pl</code> and <code>answerHints.pl</code>. |
+ | We need to include the macros file <code>MathObjects.pl</code> and <code>answerHints.pl</code>, which only works with MathObjects answer checkers (not old answer checkers). General answer hints only require the standard macros, but specific (customized) answer hints require the <code>answerHints.pl</code> macro. |
</p> |
</p> |
||
</td> |
</td> |
||
Line 60: | Line 61: | ||
<p> |
<p> |
||
<b>Setup:</b> |
<b>Setup:</b> |
||
− | We restrict the variables to |
+ | We restrict the variables to <code>t</code> and <code>u</code> |
</p> |
</p> |
||
</td> |
</td> |
||
Line 73: | Line 74: | ||
BEGIN_TEXT |
BEGIN_TEXT |
||
If \( f(t) = $f \), then \( f(3u) \) = \{ ans_rule(10) \} |
If \( f(t) = $f \), then \( f(3u) \) = \{ ans_rule(10) \} |
||
+ | $BR |
||
+ | $BR |
||
+ | \{ |
||
+ | knowlLink("Click for a hint", |
||
+ | value=>'Substitute 3u wherever you see t in the formula for f.') |
||
+ | \} |
||
END_TEXT |
END_TEXT |
||
+ | |||
+ | $showHint = 5; |
||
+ | BEGIN_TEXT |
||
+ | $PAR |
||
+ | If you don't get this in $showHint tries, you can get a hint. |
||
+ | END_TEXT |
||
+ | BEGIN_HINT |
||
+ | Substitute \( 3u \) wherever you see \( t \) in the |
||
+ | formula for \( f(t) = $f \). |
||
+ | END_HINT |
||
Context()->normalStrings; |
Context()->normalStrings; |
||
</pre> |
</pre> |
||
Line 79: | Line 96: | ||
<p> |
<p> |
||
<b>Main Text:</b> |
<b>Main Text:</b> |
||
− | The problem text section of the file is as we'd expect. |
||
+ | Knowls (little bits of knowledge) provide an always present link to a hint that, when clicked on, expands to reveal the hint or, when clicked on again, retracts to hide the hint. The <code>value</code> of a knowl should be plain text (math mode may cause problems, as it did for me using ww 2.9). It is possible to get math to display, but it requires using a few escape tricks: <code>value=>escapeSolutionHTML(EV3P('Substitute \\(3u\\) ...')), base64=>1)</code>. In particular, note the use of <code>escapeSolutionHTML(EV3P())</code> to do extra interpretation of the string formatting and also note the use of double backslashes <code>\\( \\)</code> for the math mode delimiters. No special macros are needed for Knowls. |
||
+ | </p> |
||
+ | <p> |
||
+ | For hints that are revealed to students only after a certain number of submissions, we set <code>$showHint = 5;</code> and tell the students in the problem text that they will see a hint after 5 attempts. |
||
+ | We include a general answer hint in the block of text between the commands <code>BEGIN_HINT</code> (which is <code>HINT(EV3(<<'END_HINT'));</code> in older versions of WeBWorK) and <code>END_HINT</code>, which must be on their own lines and at the start of a line. The hint will automatically generate the word <b>HINT:</b> before the block of text that is the hint, so you don't need to add it manually. The modification of the context from <code>texStrings</code> and back to <code>normalStrings</code> ensures that MathObjects (formulas, etc.) will be beautifully typset. No special macros are needed for hints inside of <code>BEGIN_HINT</code> and <code>END_HINT</code> text blocks. |
||
</p> |
</p> |
||
</td> |
</td> |
||
Line 91: | Line 112: | ||
$showPartialCorrectAnswers = 1; |
$showPartialCorrectAnswers = 1; |
||
− | ANS($answer->cmp() |
+ | ANS($answer->cmp()->withPostFilter(AnswerHints( |
− | ->withPostFilter(AnswerHints( |
||
Formula("6 t") => "Are you using the correct variable?", |
Formula("6 t") => "Are you using the correct variable?", |
||
Formula("6 u") => "Good work!", |
Formula("6 u") => "Good work!", |
||
− | )) |
+ | ))); |
− | ); |
||
</pre> |
</pre> |
||
<td style="background-color:#eeccff;padding:7px;"> |
<td style="background-color:#eeccff;padding:7px;"> |
||
<p> |
<p> |
||
<b>Answer Evaluation:</b> |
<b>Answer Evaluation:</b> |
||
− | + | To generate specific, customized answer hints for particular answers, we use the <code>AnswerHints</code> postfilter provided by <code>answerHints.pl</code>. The answer hints should be provided by a particular answer, followed by the hash table association operator <code>=></code>, followed by a string that will show up in the messages portion of the answer preview and feedback box when students submit their answers. You may include as many answer and hint pairs as you like, and even use subroutines in them (see [http://webwork.maa.org/pod/pg/macros/answerHints.html answerHints.pl] for more on this). |
|
+ | </p> |
||
+ | <p> |
||
+ | If the same error message should be given for several different answers, you should make a square bracketed list of those answers. For example, if the variables x, t, and u were all in the context, we could use |
||
+ | <pre> |
||
+ | ANS($answer->cmp()->withPostFilter(AnswerHints( |
||
+ | [Compute("6 t"),Compute("6 x")] => |
||
+ | "Are you using the correct variable?", |
||
+ | ))); |
||
+ | </pre> |
||
+ | </p> |
||
+ | <p> |
||
+ | If the MathObjects answer evaluator normally generates a message, the default is not to change a message that is already in place. To override a message generated by a MathObjects answer evaluator, you should set <code>replaceMessage=>1</code> as below. |
||
+ | <pre> |
||
+ | ANS($answer->cmp()->withPostFilter(AnswerHints( |
||
+ | Compute("6 u") => ["Good work!",replaceMessage=>1], |
||
+ | ))); |
||
+ | </pre> |
||
</p> |
</p> |
||
</td> |
</td> |
||
Line 106: | Line 127: | ||
<p style="text-align:center;"> |
<p style="text-align:center;"> |
||
− | [[ |
+ | [[Problem_Techniques|Problem Techniques Index]] |
</p> |
</p> |
||
[[Category:Problem Techniques]] |
[[Category:Problem Techniques]] |
||
+ | |||
+ | |||
+ | |||
+ | <ul> |
||
+ | <li>POD documentation: [http://webwork.maa.org/pod/pg/macros/answerHints.html answerHints.pl]</li> |
||
+ | <li>PG macro code: [http://webwork.maa.org/viewvc/system/trunk/pg/macros/answerHints.pl?view=log answerHints.pl]</li> |
||
+ | </ul> |
||
+ | |||
+ | |||
+ | <ul> |
||
+ | <li>POD documentation: [http://webwork.maa.org/pod/pg/macros/problemPanic.html problemPanic.pl]</li> |
||
+ | <li>PG macro code: [http://webwork.maa.org/viewvc/system/trunk/pg/macros/problemPanic.pl?view=log problemPanic.pl]</li> |
||
+ | </ul> |
Latest revision as of 15:52, 20 June 2023
This problem has been replaced with a newer version of this problem
Answer Hints
This PG code shows how to include three different kinds of answer hints:
- General answer hints that help students get started on a problem and are always available via "Knowls".
- General answer hints that help students get started on a problem and are made available after a student has submitted an answer at least once (a "Show hints" checkbox appears near the "Submit Answers" button) via a
BEGIN_HINT / END_HINT
block of text. - Specific, customized answer hints that appear in the answer feedback messages box after a student submits a particular answer that activates a pre-programmed hint via the
answerHints.pl
macro and a post-filter with answer hints for the answer checker.
You may also be interested in ErrorMessageCustomization
PG problem file | Explanation |
---|---|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "answerHints.pl", ); TEXT(beginproblem()); |
Initialization:
We need to include the macros file |
Context("Numeric"); Context()->variables->are(t=>"Real",u=>"Real"); $f = Formula("2 t"); $answer = Formula("6 u"); |
Setup:
We restrict the variables to |
Context()->texStrings; BEGIN_TEXT If \( f(t) = $f \), then \( f(3u) \) = \{ ans_rule(10) \} $BR $BR \{ knowlLink("Click for a hint", value=>'Substitute 3u wherever you see t in the formula for f.') \} END_TEXT $showHint = 5; BEGIN_TEXT $PAR If you don't get this in $showHint tries, you can get a hint. END_TEXT BEGIN_HINT Substitute \( 3u \) wherever you see \( t \) in the formula for \( f(t) = $f \). END_HINT Context()->normalStrings; |
Main Text:
Knowls (little bits of knowledge) provide an always present link to a hint that, when clicked on, expands to reveal the hint or, when clicked on again, retracts to hide the hint. The
For hints that are revealed to students only after a certain number of submissions, we set |
$showPartialCorrectAnswers = 1; ANS($answer->cmp()->withPostFilter(AnswerHints( Formula("6 t") => "Are you using the correct variable?", Formula("6 u") => "Good work!", ))); |
Answer Evaluation:
To generate specific, customized answer hints for particular answers, we use the If the same error message should be given for several different answers, you should make a square bracketed list of those answers. For example, if the variables x, t, and u were all in the context, we could use ANS($answer->cmp()->withPostFilter(AnswerHints( [Compute("6 t"),Compute("6 x")] => "Are you using the correct variable?", )));
If the MathObjects answer evaluator normally generates a message, the default is not to change a message that is already in place. To override a message generated by a MathObjects answer evaluator, you should set ANS($answer->cmp()->withPostFilter(AnswerHints( Compute("6 u") => ["Good work!",replaceMessage=>1], ))); |
- POD documentation: answerHints.pl
- PG macro code: answerHints.pl
- POD documentation: problemPanic.pl
- PG macro code: problemPanic.pl