ExpandedPolynomial1
This problem has been replaced with a newer version of this problem
Polynomial Multiplication (Expanding)
This PG code shows how to require students to expand polynomial multiplication.
- 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', 'AnswerFormatHelp.pl','PGML.pl','PGcourse.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 |
BEGIN_PGML The quadratic expression [` [$vertexform] `] is written in vertex form. Write the expression in expanded form [` ax^2 + bx + c `]. [_____________________]{$expandedform} [@ helpLink('formulas') @]* END_PGML |
Main Text:
To help students understand how to format their answers, we give an example |
BEGIN_PGML_SOLUTION Solution explanation goes here. END_PGML_SOLUTION ENDDOCUMENT(); |
Solution: |