PeriodicAnswers1: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
<th> PG problem file </th> | <th> PG problem file </th> | ||
<th> Explanation </th> | <th> Explanation </th> | ||
</tr> | |||
<!-- Problem tagging section --> | |||
<tr valign="top"> | |||
<td style="background-color:#ffdddd;border:black 1px dashed;"> | |||
[http://webwork.maa.org/wiki/Tagging_Problems Problem tagging] | |||
</td> | |||
<td style="background-color:#ffdddd;padding:7px;"> | |||
<p> | |||
<b>Problem tagging:</b> | |||
</p> | |||
</td> | |||
</tr> | </tr> | ||
Line 36: | Line 50: | ||
</pre> | </pre> | ||
</td> | </td> | ||
<td style="background-color:# | <td style="background-color:#ddffdd;padding:7px;"> | ||
<p> | <p> | ||
<b>Initialization:</b> | <b>Initialization:</b> |
Revision as of 22:00, 30 November 2010
Periodic Answers
This PG code shows how to check student answers that are periodic.
File location: NationalProblemLibrary/FortLewis/Authoring/Templates/Trig/PeriodicAnswers1.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "AnswerFormatHelp.pl", ); TEXT(beginproblem()); |
Initialization: |
Context("Numeric"); $answer = Real("pi/2")->with(period=>pi); |
Setup: This is self-explanatory. |
Context()->texStrings; BEGIN_TEXT Enter a solution to \( \cos(\theta) = 0 \). $BR $BR \( \theta = \) \{ ans_rule(10) \} \{ AnswerFormatHelp("angles") \} END_TEXT Context()->normalStrings; |
Main Text: |
$showPartialCorrectAnswers = 1; ANS( $answer->cmp() ); |
Answer Evaluation: |
Context()->texStrings; BEGIN_SOLUTION END_SOLUTION Context()->normalStrings; ENDDOCUMENT(); |
Solution: |