WeBWorK Problems

Using "limits" for test points

Re: Using "limits" for test points

by Davide Cervone -
Number of replies: 0
Usually you want to use a domain that is reasonably large, but that says away from where the function has zeros or where it gets too large. If the domain is too small, you can easily get functions marked correct that aren't, since they only have to match in a small region.

In your case, the function blows up near the zeros of the denominator, which are when cos(x) = 0 or 1-3tan(x) = 0. The first is at -pi/2, pi/2, etc. while the second is when tan(x) = 1/3, which is approximately .322 (and other values). So a range between -pi/2 and .322 would be good. Of course, near these endpoints, the function gets very large, so perhaps [-1.2,.2] would be sufficient.

Of course, the problem may adjust the coefficients, so you might need to adjust that for different random values, but that's the idea.

I would not recommend [.01,1] as that includes a discontinuity of the function, and so you may get numeric instability as the values get very large in magnitude near that point.