NAG CL Interface
g01gcc (prob_​chisq_​noncentral)

Settings help

CL Name Style:


1 Purpose

g01gcc returns the probability associated with the lower tail of the noncentral χ2-distribution.

2 Specification

#include <nag.h>
double  g01gcc (double x, double df, double lambda, double tol, Integer max_iter, NagError *fail)
The function may be called by the names: g01gcc, nag_stat_prob_chisq_noncentral or nag_prob_non_central_chi_sq.

3 Description

The lower tail probability of the noncentral χ2-distribution with ν degrees of freedom and noncentrality parameter λ, P(Xx:ν;λ), is defined by
P(Xx:ν;λ)=j=0e-λ/2(λ/2)jj! P(Xx:ν+2j;0), (1)
where P(Xx:ν+2j;0) is a central χ2-distribution with ν+2j degrees of freedom.
The value of j at which the Poisson weight, e-λ/2 (λ/2)jj! , is greatest is determined and the summation (1) is made forward and backward from that value of j.
The recursive relationship:
P(Xx:a+2;0)=P(Xx:a;0)-(xa/2)e-x/2 Γ(a+1) (2)
is used during the summation in (1).

4 References

NIST Digital Library of Mathematical Functions

5 Arguments

1: x double Input
On entry: the deviate from the noncentral χ2-distribution with ν degrees of freedom and noncentrality parameter λ.
Constraint: x0.0.
2: df double Input
On entry: ν, the degrees of freedom of the noncentral χ2-distribution.
Constraint: df0.0.
3: lambda double Input
On entry: λ, the noncentrality parameter of the noncentral χ2-distribution.
Constraint: lambda0.0 if df>0.0 or lambda>0.0 if df=0.0.
4: tol double Input
On entry: the required accuracy of the solution. If g01gcc is entered with tol greater than or equal to 1.0 or less than 10×machine precision (see X02AJC), the value of 10×machine precision is used instead.
5: max_iter Integer Input
On entry: the maximum number of iterations to be performed.
Suggested value: 100. See Section 9 for further discussion.
Constraint: max_iter1.
6: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

If on exit fail.code= NE_2_REAL_ARG_CONS, NE_CHI_PROB, NE_INT_ARG_LT, NE_POISSON_WEIGHT, NE_REAL_ARG_LT or NE_TERM_LARGE, then g01gcc returns 0.0.
NE_2_REAL_ARG_CONS
On entry, df=0.0 and lambda=0.0.
Constraint: lambda>0.0 if df=0.0.
NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_CHI_PROB
The calculations for the central chi-square probability has failed to converge. A larger value of tol should be used.
NE_CONV
The solution has failed to converge in value iterations. Consider increasing max_iter or tol.
NE_INT_ARG_LT
On entry, max_iter=value.
Constraint: max_iter1.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_POISSON_WEIGHT
The initial value of the Poisson weight used in the summation of (1) (see Section 3) was too small to be calculated. The computed probability is likely to be zero.
NE_REAL_ARG_LT
On entry, df=value.
Constraint: df0.0.
On entry, lambda=value.
Constraint: lambda0.0.
On entry, x=value.
Constraint: x0.0.
NE_TERM_LARGE
The value of a term required in (2) (see Section 3) is too large to be evaluated accurately. The most likely cause of this error is both x and lambda are too large.

7 Accuracy

The summations described in Section 3 are made until an upper bound on the truncation error relative to the current summation value is less than tol.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g01gcc is not threaded in any implementation.

9 Further Comments

The number of terms in (1) required for a given accuracy will depend on the following factors:
  1. (i)The rate at which the Poisson weights tend to zero. This will be slower for larger values of λ.
  2. (ii)The rate at which the central χ2 probabilities tend to zero. This will be slower for larger values of ν and x.

10 Example

This example reads values from various noncentral χ2-distributions, calculates the lower tail probabilities and prints all these values until the end of data is reached.

10.1 Program Text

Program Text (g01gcce.c)

10.2 Program Data

Program Data (g01gcce.d)

10.3 Program Results

Program Results (g01gcce.r)