Difference between revisions of "Eval()vs.substitute()"

From WeBWorK_wiki
Jump to navigation Jump to search
m (Changed 2nd "eval" to "substitute")
Line 10: Line 10:
   
 
$f = Compute(sqrt(3x + 1);
 
$f = Compute(sqrt(3x + 1);
$fx = $f->eval(x=>"3");
+
$fx = $f->substitute(x=>"3");
 
displays (3.16228)
 
displays (3.16228)
   

Revision as of 17:29, 7 July 2011

The aim of this page is to demonstrate the difference between eval() and substitute.

Note:PGLabs is an efficient way to check code.

$f = Compute(sqrt(3x + 1);
$fx = $f->eval(x=>"3");
displays 3.16228

The correct answer is a number.

$f = Compute(sqrt(3x + 1);
$fx = $f->substitute(x=>"3");
displays (3.16228)

The correct answer is a formula (hence the parenthesis)

One of the biggest differences between eval() and substitute is when they are used in conjunction with flags such as reduceConstants and reduceConstantFunctions, which is described in more detail at:FormattingCorrectAnswers:_NumbersAndFormulas