Difference between revisions of "ExpandedPolynomial1"
Paultpearson (talk | contribs) (Add link to PGML version in OPL) |
|||
Line 90: | Line 90: | ||
</pre> |
</pre> |
||
The strict version does not allow any mathematical operations within coefficients, so <code>(5+3)x</code> must be simplified to <code>8x</code>. |
The strict version does not allow any mathematical operations within coefficients, so <code>(5+3)x</code> must be simplified to <code>8x</code>. |
||
− | For more details, see [http://webwork.maa.org/pod/ |
+ | For more details, see [http://webwork.maa.org/pod/pg/macros/contextLimitedPolynomial.html contextLimitedPolynomial.pl] |
</p> |
</p> |
||
<p> |
<p> |
Revision as of 16:56, 7 April 2021
Polynomial Multiplication (Expanding)
This PG code shows how to require students to expand polynomial multiplication.
- File location in OPL: FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1.pg
- PGML location in OPL: FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1_PGML.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "contextLimitedPolynomial.pl", ); TEXT(beginproblem()); |
Initialization:
We must load |
# # Vertex form # Context("Numeric"); $h = 3; $k = 5; $vertexform = Compute("(x-$h)^2-$k"); # # Expanded form # Context("LimitedPolynomial-Strict"); $b = -2 * $h; $c = $h**2 - $k; $expandedform = Formula("x^2 + $b x + $c")->reduce(); |
Setup:
The macro Context("LimitedPolynomial"); Context("LimitedPolynomial-Strict"); The strict version does not allow any mathematical operations within coefficients, so
We use the |
Context()->texStrings; BEGIN_TEXT The quadratic expression \( $vertexform \) is written in vertex form. Write the expression in expanded form \( ax^2 + bx + c \). $BR $BR \{ ans_rule(30) \} END_TEXT Context()->normalStrings; |
Main Text:
To help students understand how to format their answers, we give an example |
$showPartialCorrectAnswers = 1; ANS( $expandedform->cmp() ); |
Answer Evaluation: |
Context()->texStrings; BEGIN_SOLUTION ${PAR}SOLUTION:${PAR} Solution explanation goes here. END_SOLUTION Context()->normalStrings; COMMENT('MathObject version.'); ENDDOCUMENT(); |
Solution: |