WeBWorK Problems

What's wrong with this problem?!

Re: What's wrong with this problem?!

by John Sylvester -
Number of replies: 0
The problem is most likely that $V is too big and $t is too small. Try setting the limits for the variable t to be something like [300,400], that will make expressions like $V + $t significantly different than $V-$t. I'll bet that something like the line below should fix the problem.

Context()->variables->set(t=>{limits=>[300,400]});