InequalityAnswer1
Revision as of 00:16, 4 December 2010 by Pearson (talk | contribs) (Created page with '<h2>Answer is an Inequality</h2> 300px|thumb|right|Click to enlarge <p style="background-color:#f9f9f9;border:black solid 1px;padding:3px;"> This …')
Answer is an Inequality
This PG code shows a question whose answer is an inequality.
- Download file: File:InequalityAnswer1.txt (change the file extension from txt to pg when you save it)
- File location in NPL:
FortLewis/Authoring/Templates/Algebra/InequalityAnswer1.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "contextInequalities.pl", "AnswerFormatHelp.pl", ); TEXT(beginproblem()); |
Initialization:
We must load |
Context("Inequalities-Only"); $a = random(3,9,1); $ineq = "-$a x <= 10"; $answer = Compute("x >= -10 / $a"); |
Setup:
We require students to use inequalities by using |
Context()->texStrings; BEGIN_TEXT Solve the inequality \( \displaystyle $ineq \). Enter your answer using inequality notation. $BR $BR \{ ans_rule(40) \} \{ AnswerFormatHelp("inequalities") \} END_TEXT Context()->normalStrings; |
Main Text: |
$showPartialCorrectAnswers = 1; ANS( $answer->cmp() ); |
Answer Evaluation: |
Context()->texStrings; BEGIN_SOLUTION ${PAR}SOLUTION:${PAR} Solution explanation goes here. END_SOLUTION Context()->normalStrings; COMMENT("MathObject version."); ENDDOCUMENT(); |
Solution: |