DomainRange1: Difference between revisions
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
<tr valign="top"> | <tr valign="top"> | ||
<th> PG problem file </th> | <th style="width: 40%"> PG problem file </th> | ||
<th> Explanation </th> | <th> Explanation </th> | ||
</tr> | </tr> | ||
Line 43: | Line 43: | ||
loadMacros( | loadMacros( | ||
'PGstandard.pl', | |||
'MathObjects.pl', | |||
'contextInequalities.pl', | |||
'PGML.pl', | |||
'PGcourse.pl' | |||
); | ); | ||
Line 66: | Line 67: | ||
<td style="background-color:#ffffdd;border:black 1px dashed;"> | <td style="background-color:#ffffdd;border:black 1px dashed;"> | ||
<pre> | <pre> | ||
$f = Compute('sqrt(x-4)'); | |||
$ | Context('Inequalities-Only')->variables->are(x=>'Real'); | ||
Context()->flags->set(formatStudentAnswer=>'parsed'); | |||
$domain = Compute('x >= 4'); | |||
Context( | # the context needs to change for the range | ||
Context('Inequalities-Only')->variables->are(y=>'Real'); | |||
Context()->flags->set(formatStudentAnswer=>'parsed'); | Context()->flags->set(formatStudentAnswer=>'parsed'); | ||
$range = Compute('y >= 0'); | |||
$ | |||
</pre> | </pre> | ||
</td> | </td> | ||
<td style="background-color:#ffffcc;padding:7px;"> | <td style="background-color:#ffffcc;padding:7px;"> | ||
<p> | <p> | ||
<b>Setup | <b>Setup:</b> | ||
We specify the context in a way that requires students to enter their answer using inequalities and the variable x. If we had used <code>Context("Inequalities")</code> instead, then students would also be able to enter answers using interval notation. For more details, please see [http://webwork.maa.org/pod/pg/macros/contextInequalities.html contextInequalities.pl] | We specify the context in a way that requires students to enter their answer using inequalities and the variable x. If we had used <code>Context("Inequalities")</code> instead, then students would also be able to enter answers using interval notation. For more details, please see [http://webwork.maa.org/pod/pg/macros/contextInequalities.html contextInequalities.pl] | ||
</p> | </p> | ||
Line 84: | Line 88: | ||
We use <code>formatStudentAnswer=>'parsed'</code> and <code>Compute()</code> so that the student's answer are left as fractions rather than reduced to decimals. | We use <code>formatStudentAnswer=>'parsed'</code> and <code>Compute()</code> so that the student's answer are left as fractions rather than reduced to decimals. | ||
</p> | </p> | ||
<p>For the domain, since the variable is now <tt>y</tt>, we must reset the context and the variable so that students must enter the variable y in their answer.</p> | |||
</td> | </td> | ||
</tr> | </tr> | ||
Line 92: | Line 97: | ||
<td style="background-color:#ffdddd;border:black 1px dashed;"> | <td style="background-color:#ffdddd;border:black 1px dashed;"> | ||
<pre> | <pre> | ||
BEGIN_PGML | |||
Suppose [` f(x) = [$f] `]. Enter inequalities for the | |||
Suppose | domain and range of [` f `]. | ||
domain and range of | |||
- Domain: [_______]{$domain} | |||
- Range: [_________________]{$range} | |||
[@ helpLink('inequalities') @]* | |||
END_PGML | |||
</pre> | </pre> | ||
<td style="background-color:#ffcccc;padding:7px;"> | <td style="background-color:#ffcccc;padding:7px;"> | ||
<p> | <p> | ||
<b>Main Text | <b>Main Text:</b> | ||
</p> | </p> | ||
</td> | </td> | ||
</tr> | </tr> | ||
Line 190: | Line 121: | ||
<td style="background-color:#ddddff;border:black 1px dashed;"> | <td style="background-color:#ddddff;border:black 1px dashed;"> | ||
<pre> | <pre> | ||
BEGIN_PGML_SOLUTION | |||
Solution explanation goes here. | Solution explanation goes here. | ||
END_PGML_SOLUTION | |||
</pre> | </pre> | ||
<td style="background-color:#ddddff;padding:7px;"> | <td style="background-color:#ddddff;padding:7px;"> |
Revision as of 17:56, 10 March 2023
Domain and Range of a Function

This PG code shows how to evaluate answers that are inequalities which use different variables.
- File location in OPL: FortLewis/Authoring/Templates/Precalc/DomainRange1.pg
- PGML location in OPL: FortLewis/Authoring/Templates/Precalc/DomainRange1_PGML.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( 'PGstandard.pl', 'MathObjects.pl', 'contextInequalities.pl', 'PGML.pl', 'PGcourse.pl' ); TEXT(beginproblem()); |
Initialization:
We must load |
$f = Compute('sqrt(x-4)'); Context('Inequalities-Only')->variables->are(x=>'Real'); Context()->flags->set(formatStudentAnswer=>'parsed'); $domain = Compute('x >= 4'); # the context needs to change for the range Context('Inequalities-Only')->variables->are(y=>'Real'); Context()->flags->set(formatStudentAnswer=>'parsed'); $range = Compute('y >= 0'); |
Setup:
We specify the context in a way that requires students to enter their answer using inequalities and the variable x. If we had used
We use For the domain, since the variable is now y, we must reset the context and the variable so that students must enter the variable y in their answer. |
BEGIN_PGML Suppose [` f(x) = [$f] `]. Enter inequalities for the domain and range of [` f `]. - Domain: [_______]{$domain} - Range: [_________________]{$range} [@ helpLink('inequalities') @]* END_PGML |
Main Text: |
BEGIN_PGML_SOLUTION Solution explanation goes here. END_PGML_SOLUTION |
Solution: |