Difference between revisions of "FactoredPolynomial1"
(add historical tag and give links to newer problems.) |
|||
(11 intermediate revisions by 4 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/FactoredPolynomial.html a newer version of this problem]</p> |
||
+ | |||
+ | |||
<h2>Polynomial Factoring</h2> |
<h2>Polynomial Factoring</h2> |
||
− | <p style="background-color:#eeeeee;border:black solid 1px;padding:3px;"> |
||
+ | |||
+ | [[File:FactoredPolynomial1.png|300px|thumb|right|Click to enlarge]] |
||
+ | <p style="background-color:#f9f9f9;border:black solid 1px;padding:3px;"> |
||
This PG code shows how to require students to factor a polynomial. |
This PG code shows how to require students to factor a polynomial. |
||
− | <ul> |
||
− | <li>Download file: [[File:FactoredPolynomial1.txt]] (change the file extension from txt to pg when you save it)</li> |
||
− | <li>File location in NPL: <code>NationalProblemLibrary/FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1.pg</code></li> |
||
− | </ul> |
||
</p> |
</p> |
||
+ | <!--* File location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1.pg FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1.pg]--> |
||
+ | * PGML location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1_PGML.pg FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1_PGML.pg] |
||
+ | <br clear="all" /> |
||
<p style="text-align:center;"> |
<p style="text-align:center;"> |
||
[[SubjectAreaTemplates|Templates by Subject Area]] |
[[SubjectAreaTemplates|Templates by Subject Area]] |
||
Line 16: | Line 22: | ||
<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 48: | ||
DOCUMENT(); |
DOCUMENT(); |
||
− | loadMacros( |
||
+ | loadMacros('PGstandard.pl','MathObjects.pl','PGML.pl','PGcourse.pl'); |
||
− | "PGstandard.pl", |
||
− | "MathObjects.pl", |
||
− | "contextPolynomialFactors.pl", |
||
− | "contextLimitedPowers.pl", |
||
− | ); |
||
TEXT(beginproblem()); |
TEXT(beginproblem()); |
||
Line 65: | Line 66: | ||
<td style="background-color:#ffffdd;border:black 1px dashed;"> |
<td style="background-color:#ffffdd;border:black 1px dashed;"> |
||
<pre> |
<pre> |
||
− | # |
||
+ | # Expanded form |
||
− | # Vertex form |
||
+ | Context('Numeric'); |
||
− | # |
||
+ | $poly = Compute('8x^2+28x+12'); |
||
− | Context("Numeric"); |
||
− | $poly = Compute("8x^2+28x+12"); |
||
− | # |
||
# Factored form |
# Factored form |
||
− | # |
||
+ | Context('PolynomialFactors-Strict'); |
||
− | Context("PolynomialFactors-Strict"); |
||
Context()->flags->set(singleFactors=>0); |
Context()->flags->set(singleFactors=>0); |
||
LimitedPowers::OnlyIntegers( |
LimitedPowers::OnlyIntegers( |
||
− | minPower => 0, maxPower => 1, |
+ | minPower => 0, maxPower => 1, |
− | message => |
+ | message => 'either 0 or 1', |
); |
); |
||
− | $factored = Compute( |
+ | $factored = Compute('4(2x+1)(x+3)'); |
</pre> |
</pre> |
||
</td> |
</td> |
||
Line 86: | Line 83: | ||
<p> |
<p> |
||
<b>Setup:</b> |
<b>Setup:</b> |
||
− | <p> |
||
For the factored form we need to change to the <code>PolynomialFactors-Strict</code> context and restrict the allowed powers to either 0 or 1 using the <code>LimitedPowers::OnlyIntegers</code> block of code. Note: restricting all exponents to 0 or 1 means that repeated factors will have to be entered in the form <code>k(ax+b)(ax+b)</code> instead of <code>k(ax+b)^2</code>. Also, restricting all exponents to 0 or 1 means that the polynomial must factor as a product of linear factors (no irreducible quadratic factors can appear). Of course, we could allow exponents to be 0, 1, or 2, but then students would be allowed to enter <i>reducible</i> quadratic factors. There are no restrictions on the coefficients, i.e., the quadratic could have any nonzero leading coefficient. We set <code>singleFactors=>0</code> so that repeated, non-simplified factors do not generate errors. |
For the factored form we need to change to the <code>PolynomialFactors-Strict</code> context and restrict the allowed powers to either 0 or 1 using the <code>LimitedPowers::OnlyIntegers</code> block of code. Note: restricting all exponents to 0 or 1 means that repeated factors will have to be entered in the form <code>k(ax+b)(ax+b)</code> instead of <code>k(ax+b)^2</code>. Also, restricting all exponents to 0 or 1 means that the polynomial must factor as a product of linear factors (no irreducible quadratic factors can appear). Of course, we could allow exponents to be 0, 1, or 2, but then students would be allowed to enter <i>reducible</i> quadratic factors. There are no restrictions on the coefficients, i.e., the quadratic could have any nonzero leading coefficient. We set <code>singleFactors=>0</code> so that repeated, non-simplified factors do not generate errors. |
||
</p> |
</p> |
||
Line 97: | Line 93: | ||
<td style="background-color:#ffdddd;border:black 1px dashed;"> |
<td style="background-color:#ffdddd;border:black 1px dashed;"> |
||
<pre> |
<pre> |
||
− | Context()->texStrings; |
||
+ | BEGIN_PGML |
||
− | BEGIN_TEXT |
||
+ | Write the quadratic expression [` [$poly] `] |
||
− | Write the quadratic expression \( $poly \) |
||
in factored form |
in factored form |
||
− | + | [` k(ax+b)(cx+d) `]. |
|
− | + | ||
− | $ |
+ | [____________________]{$factored} |
− | + | ||
− | + | [@ helpLink('formulas') @]* |
|
− | + | END_PGML |
|
+ | |||
</pre> |
</pre> |
||
<td style="background-color:#ffcccc;padding:7px;"> |
<td style="background-color:#ffcccc;padding:7px;"> |
||
Line 115: | Line 110: | ||
</td> |
</td> |
||
</tr> |
</tr> |
||
− | |||
− | <!-- Answer section --> |
||
− | |||
− | <tr valign="top"> |
||
− | <td style="background-color:#eeddff;border:black 1px dashed;"> |
||
− | <pre> |
||
− | $showPartialCorrectAnswers = 1; |
||
− | |||
− | ANS( $factored->cmp() ); |
||
− | |||
− | </pre> |
||
− | <td style="background-color:#eeccff;padding:7px;"> |
||
− | <p> |
||
− | <b>Answer Evaluation:</b> |
||
− | Everything is as expected. |
||
− | </p> |
||
− | </td> |
||
− | </tr> |
||
− | |||
<!-- Solution section --> |
<!-- Solution section --> |
||
Line 141: | Line 117: | ||
<pre> |
<pre> |
||
− | Context()->texStrings; |
||
+ | BEGIN_PGML_SOLUTION |
||
− | BEGIN_SOLUTION |
||
− | ${PAR}SOLUTION:${PAR} |
||
Solution explanation goes here. |
Solution explanation goes here. |
||
− | END_SOLUTION |
||
+ | END_PGML_SOLUTION |
||
− | Context()->normalStrings; |
||
− | |||
− | COMMENT('MathObject version.'); |
||
ENDDOCUMENT(); |
ENDDOCUMENT(); |
||
Line 165: | Line 136: | ||
[[Category:Top]] |
[[Category:Top]] |
||
− | [[Category: |
+ | [[Category:Sample Problems]] |
+ | [[Category:Subject Area Templates]] |
Latest revision as of 04:48, 18 July 2023
This problem has been replaced with a newer version of this problem
Polynomial Factoring
This PG code shows how to require students to factor a polynomial.
- PGML location in OPL: FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1_PGML.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros('PGstandard.pl','MathObjects.pl','PGML.pl','PGcourse.pl'); TEXT(beginproblem()); |
Initialization:
We require additional contexts provided by |
# Expanded form Context('Numeric'); $poly = Compute('8x^2+28x+12'); # Factored form Context('PolynomialFactors-Strict'); Context()->flags->set(singleFactors=>0); LimitedPowers::OnlyIntegers( minPower => 0, maxPower => 1, message => 'either 0 or 1', ); $factored = Compute('4(2x+1)(x+3)'); |
Setup:
For the factored form we need to change to the |
BEGIN_PGML Write the quadratic expression [` [$poly] `] in factored form [` k(ax+b)(cx+d) `]. [____________________]{$factored} [@ helpLink('formulas') @]* END_PGML |
Main Text:
We should explicitly tell students to enter answers in the form |
BEGIN_PGML_SOLUTION Solution explanation goes here. END_PGML_SOLUTION ENDDOCUMENT(); |
Solution: |