Difference between revisions of "LinearApprox1"

From WeBWorK_wiki
Jump to navigation Jump to search
m
(add historical tag and give links to newer problems.)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
  +
{{historical}}
  +
  +
<p style="font-size: 120%;font-weight:bold">This problem has been replaced with [https://openwebwork.github.io/pg-docs/sample-problems/DiffCalc/LinearApprox.html a newer version of this problem]</p>
  +
  +
 
<h2>Linear Approximation With Answer Hints</h2>
 
<h2>Linear Approximation With Answer Hints</h2>
   
Line 5: Line 10:
 
This PG code shows how to ask a linear approximation question in which the answer is an equation and students receive customized answer hints.
 
This PG code shows how to ask a linear approximation question in which the answer is an equation and students receive customized answer hints.
 
</p>
 
</p>
* Download file: [[File:LinearApprox1.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/DiffCalc/LinearApprox1.pg FortLewis/Authoring/Templates/DiffCalc/LinearApprox1.pg]
* File location in NPL: <code>FortLewis/Authoring/Templates/DiffCalc/LinearApprox1.pg</code>
+
* PGML location in OPL: [https://github.com/openwebwork/webwork-open-problem-library/blob/master/OpenProblemLibrary/FortLewis/Authoring/Templates/DiffCalc/LinearApprox1_PGML.pg FortLewis/Authoring/Templates/DiffCalc/LinearApprox1_PGML.pg]
   
 
<br clear="all" />
 
<br clear="all" />
Line 141: Line 146:
 
Context()->texStrings;
 
Context()->texStrings;
 
BEGIN_SOLUTION
 
BEGIN_SOLUTION
${PAR}SOLUTION:${PAR}
 
 
Solution explanation goes here.
 
Solution explanation goes here.
 
END_SOLUTION
 
END_SOLUTION

Latest revision as of 06:11, 18 July 2023

This article has been retained as a historical document. It is not up-to-date and the formatting may be lacking. Use the information herein with caution.

This problem has been replaced with a newer version of this problem


Linear Approximation With Answer Hints

Click to enlarge

This PG code shows how to ask a linear approximation question in which the answer is an equation and students receive customized answer hints.


Templates by Subject Area

PG problem file Explanation

Problem tagging data

Problem tagging:

DOCUMENT(); 

loadMacros(
"PGstandard.pl",
"MathObjects.pl",
"AnswerFormatHelp.pl",
"answerHints.pl",
"parserAssignment.pl",
);

TEXT(beginproblem());

Initialization: We load parserAssignment.pl to require students to enter their answer as an equation of the form y=.... We load answerHints.pl to provide customized answer hints, particularly for those students who enter the slope of the line instead of the equation of the line.

Context("Numeric")->variables->add(y=>"Real");
parser::Assignment->Allow;

$a = random(2,5,1);
$aa = $a**2;
$a2 = 2 * $a;

$f = Compute("sqrt(x)");

$answer = Compute("y = $a + (1/$a2) * (x-$aa)");

Setup: We have to tell the context that we are allowing the assignment of a variable to a formula.

Context()->texStrings;
BEGIN_TEXT
Find the linear approximation to \( f(x) = $f \)
at \( x = $aa \).  Your answer should be an 
equation in the variables \( x \) and \( y \).
$BR
$BR
\{ ans_rule(20) \}
\{ AnswerFormatHelp("equations") \}
END_TEXT
Context()->normalStrings;

Main Text:

$showPartialCorrectAnswers = 1;

ANS( $answer->cmp() 
->withPostFilter(AnswerHints( 
  [Formula("1/$a2"),Formula("y=1/$a2")] => 
  ["Your answer should be an equation for a non-horizontal line.",
  replaceMessage=>1],
))
);

Answer Evaluation: We use answer hints to remind students to enter an equation for a line, not just the slope of the line.

Context()->texStrings;
BEGIN_SOLUTION
Solution explanation goes here.
END_SOLUTION
Context()->normalStrings;

COMMENT("MathObject version.");

ENDDOCUMENT();

Solution:

Templates by Subject Area