Difference between revisions of "FunctionDecomposition1"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
This PG code shows how to check student answers that are a composition of functions. |
This PG code shows how to check student answers that are a composition of functions. |
||
<ul> |
<ul> |
||
− | <li>Download file: [[File:FunctionDecomposition1.txt]] (change the file extension from txt to pg)</li> |
+ | <li>Download file: [[File:FunctionDecomposition1.txt]] (change the file extension from txt to pg when you save it)</li> |
− | <li>File location in NPL: <code>NationalProblemLibrary/FortLewis/Authoring/Templates/Precalc</code></li> |
+ | <li>File location in NPL: <code>NationalProblemLibrary/FortLewis/Authoring/Templates/Precalc/FunctionDecomposition1.pg</code></li> |
</ul> |
</ul> |
||
</p> |
</p> |
||
Line 67: | Line 67: | ||
<pre> |
<pre> |
||
Context("Numeric"); |
Context("Numeric"); |
||
− | Context()->variables-> |
+ | Context()->variables->add(u=>"Real"); |
$a = random(2,9,1); |
$a = random(2,9,1); |
Revision as of 00:41, 1 December 2010
Function Decomposition
This PG code shows how to check student answers that are a composition of functions.
- Download file: File:FunctionDecomposition1.txt (change the file extension from txt to pg when you save it)
- File location in NPL:
NationalProblemLibrary/FortLewis/Authoring/Templates/Precalc/FunctionDecomposition1.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "answerComposition.pl", "AnswerFormatHelp.pl", ); TEXT(beginproblem()); |
Initialization:
We need to include the macros file |
Context("Numeric"); Context()->variables->add(u=>"Real"); $a = random(2,9,1); $f = Formula("sqrt(u)"); $g = Formula("x^2+$a"); |
Setup: |
Context()->texStrings; BEGIN_TEXT Express the function \( y = \sqrt{ x^2 + $a } \) as a composition \( y = f(g(x)) \) of two simpler functions \( y = f(u) \) and \( u = g(x) \). $BR $BR \( f(u) \) = \{ ans_rule(20) \} \{ AnswerFormatHelp("formulas") \} $BR \( g(x) \) = \{ ans_rule(20) \} \{ AnswerFormatHelp("formulas") \} END_TEXT Context()->normalStrings; |
Main Text: |
$showPartialCorrectAnswers = 1; COMPOSITION_ANS( $f, $g, vars=>['u','x'], showVariableHints=>1); |
Answer Evaluation:
We use the |
Context()->texStrings; BEGIN_SOLUTION ${PAR}SOLUTION:${PAR} Solution explanation goes here. END_SOLUTION Context()->normalStrings; COMMENT('MathObject version.'); ENDDOCUMENT(); |
Solution: |