Difference between revisions of "IdentitiesAsAnswers"
Line 76: | Line 76: | ||
it will still appear as the tangent function. (The student will have no clue |
it will still appear as the tangent function. (The student will have no clue |
||
that the tangent function has been redefined.) Of course, we have to choose |
that the tangent function has been redefined.) Of course, we have to choose |
||
− | carefully which functions we would like to redefine |
+ | carefully which functions we would like to redefine, and also redefine them as a |
+ | function that a student is unlikely to type in (such as exchanging a trig function |
||
+ | for an exponential function). |
||
</p> |
</p> |
||
</td> |
</td> |
Revision as of 13:43, 21 March 2010
Trigonometric Identities
This code shows how to prevent students from receiving credit for entering exactly what they were given, while at the same time allowing the correct answer to be entered for credit, even when what the students were given and the correct answer are the same function.
PG problem file | Explanation |
---|---|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "PGcourse.pl", ); TEXT(beginproblem()); |
Initialization: Use MathObjects. |
Context("Numeric"); Context()->functions->remove("tan"); package NewFunc; # this next line makes the function a # function from reals to reals our @ISA = qw(Parser::Function::numeric); sub tan { shift; my $x = shift; return CORE::exp($x*3.1415926535); } package main; # Make it work on formulas as well as numbers sub tan {Parser::Function->call('tan',@_)} # Add the new functions to the Context Context()->functions->add( tan => {class => 'NewFunc', TeX => '\tan'}, ); |
Setup:
We internally redefine the tangent function to be |
BEGIN_TEXT Simplify the expression as much as possible. $BR $BR \( \tan(x) \cos(x) \) = \{ ans_rule(20) \} END_TEXT |
Main Text: The problem text section of the file is as we'd expect. |
$showPartialCorrectAnswers = 1; ANS( Formula("sin(x)")->cmp() ); COMMENT("Prevents students from entering trivial identities (entering what they were given)"); ENDDOCUMENT(); |
Answer Evaluation: We include a comment visible only to instructors when they view the problem via the Library Browser that lets others know that this question won't allow students to enter exactly what they were given and earn credit. |