Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
It is not correct to use the absolute error with the tolerance
1e-12when results could vary from very small (0) to very large (1e+200) values. In general, the problem is not well-defined because it is impossible to compute limits numerically without any additional knowledge about the tested functions.For example, the reference solution assumes that if
r = f(x)is finite thenrshould be returned. It does not hold in general. Consider the functionf(x) = 1forx != 0andf(0) = 0. The correct value which makes this function continuous atx = 0isr = 1, notr = 0.