ExpandedPolynomial1: Difference between revisions
Paultpearson (talk | contribs) (Add link to PGML version in OPL) |
(add historical tag and give links to newer problems.) |
||
(2 intermediate revisions by 2 users not shown) | |||
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> | ||
Line 5: | Line 10: | ||
This PG code shows how to require students to expand polynomial multiplication. | This PG code shows how to require students to expand polynomial multiplication. | ||
</p> | </p> | ||
* File location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1.pg FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1.pg] | <!--* File location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1.pg FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1.pg] --> | ||
* PGML location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1_PGML.pg FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1_PGML.pg] | * PGML location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1_PGML.pg FortLewis/Authoring/Templates/Algebra/ExpandedPolynomial1_PGML.pg] | ||
Line 16: | Line 21: | ||
<tr valign="top"> | <tr valign="top"> | ||
<th> PG problem file </th> | <th style="width: 50%"> PG problem file </th> | ||
<th> Explanation </th> | <th> Explanation </th> | ||
</tr> | </tr> | ||
Line 42: | Line 47: | ||
DOCUMENT(); | DOCUMENT(); | ||
loadMacros( | loadMacros('PGstandard.pl','MathObjects.pl','contextLimitedPolynomial.pl', | ||
'AnswerFormatHelp.pl','PGML.pl','PGcourse.pl'); | |||
); | |||
TEXT(beginproblem()); | TEXT(beginproblem()); | ||
Line 90: | Line 92: | ||
</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> | ||
Line 103: | Line 105: | ||
<td style="background-color:#ffdddd;border:black 1px dashed;"> | <td style="background-color:#ffdddd;border:black 1px dashed;"> | ||
<pre> | <pre> | ||
BEGIN_PGML | |||
The quadratic expression [` [$vertexform] `] | |||
The quadratic expression | is written in vertex form. Write the | ||
is written in vertex form. Write the | expression in expanded form [` ax^2 + bx + c `]. | ||
expression in expanded form | |||
[_____________________]{$expandedform} | |||
$ | [@ helpLink('formulas') @]* | ||
END_PGML | |||
</pre> | </pre> | ||
<td style="background-color:#ffcccc;padding:7px;"> | <td style="background-color:#ffcccc;padding:7px;"> | ||
Line 122: | Line 122: | ||
</td> | </td> | ||
</tr> | </tr> | ||
<!-- Solution section --> | <!-- Solution section --> | ||
Line 146: | Line 128: | ||
<td style="background-color:#ddddff;border:black 1px dashed;"> | <td style="background-color:#ddddff;border:black 1px dashed;"> | ||
<pre> | <pre> | ||
BEGIN_PGML_SOLUTION | |||
Solution explanation goes here. | Solution explanation goes here. | ||
END_PGML_SOLUTION | |||
ENDDOCUMENT(); | ENDDOCUMENT(); |
Latest revision as of 09: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: |