Difference between revisions of "ContextLimitedPolynomial"
m (Macro: checkPolynomial moved to CheckPolynomial: Change Title) |
|||
(13 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | {{DISPLAYTITLE:contextLimitedPolynomial}} |
||
{{macro |
{{macro |
||
− | |name=checkPolynomial |
||
+ | |name=contextLimitedPolynomial |
||
− | |category=MathObject |
+ | |category=MathObject Context |
|status=Standard |
|status=Standard |
||
|desc=Allow only entry of polynomials |
|desc=Allow only entry of polynomials |
||
− | |filename= |
+ | |filename=contextLimitedPolynomial.pl |
− | |filepath=contextLimitedPolynomial.pl |
+ | |filepath=/pg/macros/contextLimitedPolynomial.pl |
|download= |
|download= |
||
|docs=http://webwork.maa.org/doc/cvs/pg_HEAD/macros/contextLimitedPolynomial.pl.html |
|docs=http://webwork.maa.org/doc/cvs/pg_HEAD/macros/contextLimitedPolynomial.pl.html |
||
Line 14: | Line 15: | ||
== Purpose of this Macro == |
== Purpose of this Macro == |
||
− | In |
+ | In the <code>LimitedPolynomial</code> context, WeBWorK will require all student answers to be (expanded) polynomials (i.e., sums of multiples of powers of x). This context allows also requiring that there be only one term with each power of x. |
− | |||
== Initialization == |
== Initialization == |
||
− | Enable the context in <code>loadMacros</code>: |
+ | Enable the <code>LimitedPolynomial</code> context in <code>loadMacros</code>: |
<pre> |
<pre> |
||
loadMacros( |
loadMacros( |
||
− | "MathObjects.pl", |
||
+ | "contextLimitedPolynomial.pl", #Automatically loads MathObjects.pl |
||
− | "contextLimitedPolynomial.pl", |
||
− | others, |
||
); |
); |
||
</pre> |
</pre> |
||
Select the context using: |
Select the context using: |
||
+ | |||
Context("LimitedPolynomial"); |
Context("LimitedPolynomial"); |
||
+ | |||
+ | If you set the ``singlePowers'' flag, then only one monomial of each degree can be included in the polynomial: |
||
+ | |||
+ | Context("LimitedPolynomial")->flags->set(singlePowers=>1); |
||
+ | |||
+ | There is also a strict limited context that does not allow operations even within the coefficients. Select it using: |
||
+ | |||
+ | Context("LimitedPolynomial-Strict"); |
||
+ | |||
+ | In addition to disallowing operations within the coefficients, this context does not reduce constant operations (since they are not allowed), and sets the singlePowers flag automatically. In addition, it disables all the functions, though they can be re-enabled, if needed. |
||
== Usage == |
== Usage == |
||
+ | |||
+ | |||
== Bug Reports == |
== Bug Reports == |
||
Line 39: | Line 51: | ||
*[[DisableFunctions]] |
*[[DisableFunctions]] |
||
*[[ModifyingContexts(Advanced)]] |
*[[ModifyingContexts(Advanced)]] |
||
+ | |||
+ | [[Category:Contexts]] |
Latest revision as of 12:57, 21 November 2010
contextLimitedPolynomial Category: MathObject Context | |
---|---|
Status | Standard |
Description | Allow only entry of polynomials |
File Name | contextLimitedPolynomial.pl |
File Path | /pg/macros/contextLimitedPolynomial.pl |
Download | |
Code Docs | http://webwork.maa.org/doc/cvs/pg_HEAD/macros/contextLimitedPolynomial.pl.html |
NPL Example | |
Comments: |
Purpose of this Macro
In the LimitedPolynomial
context, WeBWorK will require all student answers to be (expanded) polynomials (i.e., sums of multiples of powers of x). This context allows also requiring that there be only one term with each power of x.
Initialization
Enable the LimitedPolynomial
context in loadMacros
:
loadMacros( "contextLimitedPolynomial.pl", #Automatically loads MathObjects.pl );
Select the context using:
Context("LimitedPolynomial");
If you set the ``singlePowers flag, then only one monomial of each degree can be included in the polynomial:
Context("LimitedPolynomial")->flags->set(singlePowers=>1);
There is also a strict limited context that does not allow operations even within the coefficients. Select it using:
Context("LimitedPolynomial-Strict");
In addition to disallowing operations within the coefficients, this context does not reduce constant operations (since they are not allowed), and sets the singlePowers flag automatically. In addition, it disables all the functions, though they can be re-enabled, if needed.