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 58C68193AE for ; Wed, 13 Apr 2016 14:47:28 +0000 (UTC) Received: (qmail 12098 invoked by uid 500); 13 Apr 2016 14:47:26 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 11963 invoked by uid 500); 13 Apr 2016 14:47:26 -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 11713 invoked by uid 99); 13 Apr 2016 14:47:26 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Apr 2016 14:47:26 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 364EA2C1F5C for ; Wed, 13 Apr 2016 14:47:26 +0000 (UTC) Date: Wed, 13 Apr 2016 14:47:26 +0000 (UTC) From: "Gilles (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (MATH-1356) HypergeometricDistribution probability give NaN result MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/MATH-1356?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15239357#comment-15239357 ] Gilles commented on MATH-1356: ------------------------------ Bug(s) indeed: * failing to check precondition(s) that lead to computing "0 * infinity", and/or * failing to give the correct result in partcular cases (that throw off the implementation) The NaN is created in {{SaddleExpansion.logBinomialProbability}} and {{SaddleExpansion.getDeviancePart}}. Both perform a computation like the above. Case {noformat} double probIT = hgd.probability(0); {noformat} also produces NaN. > HypergeometricDistribution probability give NaN result > ------------------------------------------------------ > > Key: MATH-1356 > URL: https://issues.apache.org/jira/browse/MATH-1356 > Project: Commons Math > Issue Type: Bug > Affects Versions: 3.6.1 > Environment: Windows > Reporter: Lacroix Thomas > Priority: Minor > > Hi, > Unless I am mistaken the HypergeometricDistribution probability method returns NaN for the following cases : > HypergeometricDistribution hgd = new HypergeometricDistribution(11,11,1); > double probIT = hgd.probability(1); > HypergeometricDistribution hgd = new HypergeometricDistribution(11,11,11); > double probIT = hgd.probability(11); > I think it should return 1.0 > Thanks, > Thomas -- This message was sent by Atlassian JIRA (v6.3.4#6332)