Difference between revisions of "PeriodicAnswers1"

From WeBWorK_wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
<h2>Periodic Answers</h2>
 
<h2>Periodic Answers</h2>
   
<!-- Header for these sections -- no modification needed -->
 
  +
[[File:PeriodicAnswers1.png|300px|thumb|right|Click to enlarge]]
 
 
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;">
 
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;">
 
This PG code shows how to check student answers that are periodic.
 
This PG code shows how to check student answers that are periodic.
<ul>
 
<li>Download file: [[File:PeriodicAnswers1.txt]] (change the file extension from txt to pg when you save it)</li>
 
<li>File location in NPL: <code>NationalProblemLibrary/FortLewis/Authoring/Templates/Trig/PeriodicAnswers1.pg</code></li>
 
</ul>
 
 
</p>
 
</p>
  +
* Download file: [[File:PeriodicAnswers1.txt]] (change the file extension from txt to pg when you save it)
  +
* File location in NPL: <code>FortLewis/Authoring/Templates/Trig/PeriodicAnswers1.pg</code>
  +
   
  +
<br clear="all" />
 
<p style="text-align:center;">
 
<p style="text-align:center;">
 
[[SubjectAreaTemplates|Templates by Subject Area]]
 
[[SubjectAreaTemplates|Templates by Subject Area]]

Revision as of 16:17, 2 December 2010

Periodic Answers

Click to enlarge

This PG code shows how to check student answers that are periodic.

  • Download file: File:PeriodicAnswers1.txt (change the file extension from txt to pg when you save it)
  • File location in NPL: FortLewis/Authoring/Templates/Trig/PeriodicAnswers1.pg



Templates by Subject Area

PG problem file Explanation

Problem tagging data

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
The cosine of an angle is zero when 
the angle is an integer multiple of \( \pi \).
END_SOLUTION
Context()->normalStrings;

ENDDOCUMENT();

Solution:

Templates by Subject Area