The function to approximate the inverse of. It must be monotonically increasing and satisfy f(n) >= n
for all n >= 0
.
The value to approximate the inverse at.
The options for the approximation. See InverseFunctionOptions
An object containing the approximate inverse value "value"
(defaults to the lower bound), the lower bound "lowerBound"
, and the upper bound "upperBound"
, all as Decimal instances.
Approximates the inverse of a function at
n
using the bisection / binary search method. See Decimal.increasingInverse for a more general function.