NAG Library Routine Document
G01SFF
Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
1 Purpose
G01SFF returns a number of lower or upper tail probabilities for the gamma distribution.
2 Specification
SUBROUTINE G01SFF (
LTAIL,
TAIL,
LG,
G,
LA,
A,
LB,
B,
P,
IVALID,
IFAIL)
INTEGER
LTAIL, LG, LA, LB, IVALID(*), IFAIL
REAL (KIND=nag_wp)
G(LG), A(LA), B(LB), P(*)
CHARACTER(1)
TAIL(LTAIL)
3 Description
The lower tail probability for the gamma distribution with parameters
and
,
, is defined by:
The mean of the distribution is
and its variance is
. The transformation
is applied to yield the following incomplete gamma function in normalized form,
This is then evaluated using
S14BAF.
The input arrays to this routine are designed to allow maximum flexibility in the supply of vector parameters by re-using elements of any arrays that are shorter than the total number of evaluations required. See
Section 2.6 in the G01 Chapter Introduction for further information.
4 References
Hastings N A J and Peacock J B (1975) Statistical Distributions Butterworth
5 Parameters
- 1: LTAIL – INTEGERInput
On entry: the length of the array
TAIL.
Constraint:
.
- 2: TAIL(LTAIL) – CHARACTER(1) arrayInput
On entry: indicates whether a lower or upper tail probability is required. For
, for
:
- The lower tail probability is returned, i.e., .
- The upper tail probability is returned, i.e., .
Constraint:
or , for .
- 3: LG – INTEGERInput
On entry: the length of the array
G.
Constraint:
.
- 4: G(LG) – REAL (KIND=nag_wp) arrayInput
On entry: , the value of the gamma variate with , .
Constraint:
, for .
- 5: LA – INTEGERInput
On entry: the length of the array
A.
Constraint:
.
- 6: A(LA) – REAL (KIND=nag_wp) arrayInput
On entry: the parameter of the gamma distribution with , .
Constraint:
, for .
- 7: LB – INTEGERInput
On entry: the length of the array
B.
Constraint:
.
- 8: B(LB) – REAL (KIND=nag_wp) arrayInput
On entry: the parameter of the gamma distribution with , .
Constraint:
, for .
- 9: P() – REAL (KIND=nag_wp) arrayOutput
-
Note: the dimension of the array
P
must be at least
.
On exit: , the probabilities of the beta distribution.
- 10: IVALID() – INTEGER arrayOutput
-
Note: the dimension of the array
IVALID
must be at least
.
On exit:
indicates any errors with the input arguments, with
- No error.
-
On entry, invalid value supplied in
TAIL when calculating
.
-
On entry, .
-
On entry, ,
or .
- The solution did not converge in iterations, see S14BAF for details. The probability returned should be a reasonable approximation to the solution.
- 11: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
-
On entry, at least one value of
G,
A,
B or
TAIL was invalid, or the solution did not converge.
Check
IVALID for more information.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
Dynamic memory allocation failed.
7 Accuracy
The result should have a relative accuracy of machine precision. There are rare occasions when the relative accuracy attained is somewhat less than machine precision but the error should not exceed more than or decimal places.
The time taken by G01SFF to calculate each probability varies slightly with the input parameters , and .
9 Example
This example reads in values from a number of gamma distributions and computes the associated lower tail probabilities.
9.1 Program Text
Program Text (g01sffe.f90)
9.2 Program Data
Program Data (g01sffe.d)
9.3 Program Results
Program Results (g01sffe.r)