Difference between revisions of "InequalityAnswer1"

From WeBWorK_wiki
Jump to navigation Jump to search
(4 intermediate revisions by one other user not shown)
Line 5: Line 5:
 
This PG code shows a question whose answer is an inequality.
 
This PG code shows a question whose answer is an inequality.
 
</p>
 
</p>
* Download file: [[File:InequalityAnswer1.txt]] (change the file extension from txt to pg when you save it)
 
  +
* File location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/InequalityAnswer1.pg FortLewis/Authoring/Templates/Algebra/InequalityAnswer1.pg]
* File location in NPL: <code>FortLewis/Authoring/Templates/Algebra/InequalityAnswer1.pg</code>
 
  +
* PGML location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/Algebra/InequalityAnswer1_PGML.pg FortLewis/Authoring/Templates/Algebra/InequalityAnswer1_PGML.pg]
   
 
<br clear="all" />
 
<br clear="all" />
Line 79: Line 79:
 
<p>
 
<p>
 
<b>Setup:</b>
 
<b>Setup:</b>
We require students to use inequalities by using <code>Context("Inequalities-Only")</code>. If we had used <code>Context("Inequalities")</code> instead, then students could also enter their answer using interval notation. For more details, please see [http://webwork.maa.org/pod/pg_TRUNK/macros/contextInequalities.pl.html contextInequalities.pl.html]
+
We require students to use inequalities by using <code>Context("Inequalities-Only")</code>. If we had used <code>Context("Inequalities")</code> instead, then students could also enter their answer using interval notation. For more details, please see [http://webwork.maa.org/pod/pg/macros/contextInequalities.html contextInequalities.pl]
 
</p>
 
</p>
 
<p>
 
<p>
Line 156: Line 156:
   
 
[[Category:Top]]
 
[[Category:Top]]
[[Category:Authors]]
+
[[Category:Sample Problems]]
  +
[[Category:Subject Area Templates]]

Revision as of 17:53, 7 April 2021

Answer is an Inequality

Click to enlarge

This PG code shows a question whose answer is an inequality.


Templates by Subject Area

PG problem file Explanation

Problem tagging data

Problem tagging:

DOCUMENT();

loadMacros(
"PGstandard.pl",
"MathObjects.pl",
"contextInequalities.pl",
"AnswerFormatHelp.pl",
);

TEXT(beginproblem());

Initialization: We must load contextInequalities.pl.

Context("Inequalities-Only");
Context()->flags->set(formatStudentAnswer=>'parsed');

$a = random(3,9,1);

$ineq = "-$a x \leq 10";  # TeX

$answer = Compute("x >= -10 / $a");

Setup: We require students to use inequalities by using Context("Inequalities-Only"). If we had used Context("Inequalities") instead, then students could also enter their answer using interval notation. For more details, please see contextInequalities.pl

We use formatStudentAnswer=>'parsed' and Compute() so that the student's answer are left as fractions rather than reduced to decimals.

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:

Templates by Subject Area