Difference between revisions of "FactoredPolynomial1"
Line 1: | Line 1: | ||
<h2>Polynomial Factoring</h2> |
<h2>Polynomial Factoring</h2> |
||
+ | [[File:FactoredPolynomial1.png|300px|thumb|right|Click to enlarge]] |
||
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;"> |
<p style="background-color:#eeeeee;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> |
||
+ | * Download file: [[File:FactoredPolynomial1.txt]] (change the file extension from txt to pg when you save it) |
||
+ | * File location in NPL: <code>FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1.pg</code> |
||
+ | |||
+ | <br clear="all" /> |
||
<p style="text-align:center;"> |
<p style="text-align:center;"> |
||
[[SubjectAreaTemplates|Templates by Subject Area]] |
[[SubjectAreaTemplates|Templates by Subject Area]] |
Revision as of 15:00, 2 December 2010
Polynomial Factoring
This PG code shows how to require students to factor a polynomial.
- Download file: File:FactoredPolynomial1.txt (change the file extension from txt to pg when you save it)
- File location in NPL:
FortLewis/Authoring/Templates/Algebra/FactoredPolynomial1.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "contextPolynomialFactors.pl", "contextLimitedPowers.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 |
Context()->texStrings; BEGIN_TEXT Write the quadratic expression \( $poly \) in factored form \( k(ax+b)(cx+d) \). $BR $BR \{ ans_rule(30)\} END_TEXT Context()->normalStrings; |
Main Text:
We should explicitly tell students to enter answers in the form |
$showPartialCorrectAnswers = 1; ANS( $factored->cmp() ); |
Answer Evaluation: |
Context()->texStrings; BEGIN_SOLUTION ${PAR}SOLUTION:${PAR} Solution explanation goes here. END_SOLUTION Context()->normalStrings; COMMENT('MathObject version.'); ENDDOCUMENT(); |
Solution: |