Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B64B5D0FF for ; Sun, 25 Nov 2012 23:38:58 +0000 (UTC) Received: (qmail 68349 invoked by uid 500); 25 Nov 2012 23:38:58 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 68188 invoked by uid 500); 25 Nov 2012 23:38:58 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 68180 invoked by uid 99); 25 Nov 2012 23:38:58 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Nov 2012 23:38:58 +0000 Date: Sun, 25 Nov 2012 23:38:58 +0000 (UTC) From: "Patrick Meyer (JIRA)" To: issues@commons.apache.org Message-ID: <1543210504.21693.1353886738381.JavaMail.jiratomcat@arcas> Subject: [jira] [Created] (MATH-909) FDistribution NoBracketingException in BrentSolver MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Patrick Meyer created MATH-909: ---------------------------------- Summary: FDistribution NoBracketingException in BrentSolver Key: MATH-909 URL: https://issues.apache.org/jira/browse/MATH-909 Project: Commons Math Issue Type: Bug Affects Versions: 3.0 Reporter: Patrick Meyer I get an exception when running the code below. the exception is=20 {code} function values at endpoints do not have different signs, endpoints: [0, 1.= 002], values: [-0.025, -=E2=88=9E] {code} The problematic code: {code} double df1 =3D 10675; double df2 =3D 501725; FDistribution fDist =3D new FDistribution(df1, df2); System.out.print= ln(fDist.inverseCumulativeProbability(0.025));//NoBracketingException {code} However, R returns the value 0.9733505. The R code is: {code} qf(p=3D.025, df1=3D10675, df2=3D501725) {code} I don't know enough about the FDistribution class to know the solution to t= he exception, but I thought I would report it. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira