* @throws NumericException if the inverse cumulative probability can not be
* computed.
*/
protected double findInverseCumulativeProbability(final double p,
double lower, double initial, double upper) throws NumericException {
Function f = new Function() {
public double evaluate(double x) throws NumericException {
return cumulativeProbability(x) - p;
}
};