Difference between revisions of "ExpandedPolynomial1"
(switch to PGML and remove answerFormatHelp.pl macro) |
(add historical tag and give links to newer problems.) |
||
Line 1: | Line 1: | ||
+ | {{historical}} |
||
+ | |||
+ | <p style="font-size: 120%;font-weight:bold">This problem has been replaced with [https://openwebwork.github.io/pg-docs/sample-problems/Algebra/ExpandedPolynomial.html a newer version of this problem]</p> |
||
+ | |||
+ | |||
<h2>Polynomial Multiplication (Expanding)</h2> |
<h2>Polynomial Multiplication (Expanding)</h2> |
||
Latest revision as of 04:47, 18 July 2023
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: |