NAG C Library Function Document

nag_prob_non_central_chi_sq (g01gcc)

1
Purpose

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

2
Specification

#include <nag.h>
#include <nagg01.h>
double  nag_prob_non_central_chi_sq (double x, double df, double lambda, double tol, Integer max_iter, NagError *fail)

3
Description

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

4
References

NIST Digital Library of Mathematical Functions

5
Arguments

1:     x doubleInput
On entry: the deviate from the noncentral χ2-distribution with ν degrees of freedom and noncentrality parameter λ.
Constraint: x0.0.
2:     df doubleInput
On entry: ν, the degrees of freedom of the noncentral χ2-distribution.
Constraint: df0.0.
3:     lambda doubleInput
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 doubleInput
On entry: the required accuracy of the solution. If nag_prob_non_central_chi_sq (g01gcc) is entered with tol greater than or equal to 1.0 or less than 10×machine precision (see nag_machine_precision (X02AJC)), the value of 10×machine precision is used instead.
5:     max_iter IntegerInput
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 3.7 in How to Use the NAG Library and its Documentation).

6
Error Indicators and Warnings

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 2.3.1.2 in How to Use the NAG Library and its Documentation 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 2.7.6 in How to Use the NAG Library and its Documentation for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 2.7.5 in How to Use the NAG Library and its Documentation 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

nag_prob_non_central_chi_sq (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:
(i) The rate at which the Poisson weights tend to zero. This will be slower for larger values of λ.
(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)