Specialized contexts
Revision as of 09:17, 21 November 2010 by Gage (talk | contribs) (→Specialized Context Macro files)
Specialized Contexts
Using advanced methods one can customize Contexts to control the possible student responses that are allowed
and the feedback given to students if their response has incorrect syntax.
These customizations can be placed in a macro file for reuse which by convention is given a
name starting with "context" -- e.g. contextYourContextHere.pl
.
- ModifyingContexts(Advanced) contains information on the techniques and commands for tweaking the contexts for your task.
- SpecializedParsers covers the other advanced method for modifying the behavior of MathObjects. These files modify the parser which translates "TI calculator" formulae into MathObjects.
- Examples are provided in the files listed below.
Specialized Context Macro files
Here is a partial list of contexts.
Check the POD documentation for more examples.
Use loadMacros("contextABCD.pl");
to make the context available for a WeBWorK question.
- contextABCD.pl
Context("ABCD");
Context("ABCD-List");
- Contexts for matching problems. Adds strings A, B, C, D as allowable entries.
- contextCurrency.pl
Context("Currency");
- Context for entering numbers with currency symbols and commas.
- contextFraction.pl
- Implements a MathObject class for Fractions.
- Context("Fraction");
- Context("Fraction-NoDecimals");
- Context("LimitedFraction");
- Context("LimitedProperFraction");
- contextInequalities.pl
Context(`Inequalities');
Context(`Inequalities-Only');
- Provides contexts that allow intervals to be specified as inequalities.
- contextIntegerFunctions.pl
Context("IntegerFunctions");
- adds integer related functions C(n,r) and P(n,r).
- contextLimitedComplex.pl
Context("LimitedComplex");
- Allow complex numbers but not complex operations.
- contextLimitedNumeric.pl
- ( [DEPRECATED] -- loadMacros("contextLimitedNumeric.pl") is not needed, these contexts are now standard and defined in
pg/lib/Parser/Legacy/LimitedNumeric.pm
Context("LimitedNumeric");
Context("LimitedNumeric-List");
-- allows lists -- (need contextLimiteNumeric.pl for this)Context("LimitedNumeric-Fraction")
Context("LimitedNumeric-StrictFraction");
-- no decimals- Allows numeric entry but no operations.
- ( [DEPRECATED] -- loadMacros("contextLimitedNumeric.pl") is not needed, these contexts are now standard and defined in
- contextLimitedPoint.pl
Context("LimitedPoint")
- Allow point entry but no point operations.
- contextLimitedPolynomial.pl
Context("LimitedPolynomial");
- Allow only entry of expanded polynomials.
- contextLimitedPowers.pl
LimitedPowers::NoBaseE();
LimitedPowers::OnlyIntegers();
LimitedPowers::OnlyPositiveIntegers();
LimitedPowers::OnlyNonNegativeIntegers();
- Restrict the base or power allowed in exponentials.
- contextLimitedVector.pl
Context("LimitedVector-coordinate");
Context("LimitedVector-ijk");
Context("LimitedVector");
# either one- Allow vector entry but no vector operations.
- contextOrdering.pl
- Parses ordered lists of letters like ``B > A = C > D
- contextPeriodic.pl
- [DEPRECATED] The features in this file are now standard features of the Real and Complex MathObjects classes.
- contextPiecewiseFunction.pl
Context("PiecewiseFuntion");
- Allow usage of piecewise functions.
- contextReaction.pl
Context("Reaction");
- Implements the specification and comparison of chemical reactions formulas.
$R = Formula("4P + 5O_2 --> 2P_2O_5");
- contextScientificNotation.pl
Context("ScientificNotation");
- Allows entry of scientific notation. Tries hard to report useful error messages when student's answer is not in the proper format.
- Experimental: may be renamed to LimitedScientifcNotation
- contextString.pl
- Use this context to allow restricted short answer (no mathematical symbols) questions.
- Feedback is provided if the response contains strings that are not allowed.
- See also parserAutoStrings.pl
- contextTF.pl
Context("TF");