PeriodicAnswers1: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 21: | Line 21: | ||
</tr> | </tr> | ||
<!-- | |||
<!-- Initialization section --> | |||
<tr valign="top"> | <tr valign="top"> | ||
Line 41: | Line 42: | ||
</td> | </td> | ||
</tr> | </tr> | ||
<!-- Setup section --> | <!-- Setup section --> | ||
Line 60: | Line 62: | ||
</tr> | </tr> | ||
<!-- | <!-- Main text section --> | ||
<tr valign="top"> | <tr valign="top"> | ||
Line 83: | Line 85: | ||
</tr> | </tr> | ||
<!-- Answer section --> | <!-- Answer evaluation section --> | ||
<tr valign="top"> | <tr valign="top"> | ||
Line 102: | Line 104: | ||
<tr valign="top"> | <tr valign="top"> | ||
<td style="background-color:# | <td style="background-color:#ddddff;border:black 1px dashed;"> | ||
<pre> | <pre> | ||
Line 112: | Line 114: | ||
ENDDOCUMENT(); | ENDDOCUMENT(); | ||
</pre> | </pre> | ||
<td style="background-color:# | <td style="background-color:#ddddff;padding:7px;"> | ||
<p> | <p> | ||
<b>Solution:</b> | <b>Solution:</b> |
Revision as of 21:57, 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 |
---|---|
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: |