NAG CL Interface
g08ecc (randtest_​triplets)

Settings help

CL Name Style:


1 Purpose

g08ecc performs the triplets test on a sequence of observations from the interval [0,1].

2 Specification

#include <nag.h>
void  g08ecc (Integer n, const double x[], Integer max_count, double *chi, double *df, double *prob, NagError *fail)
The function may be called by the names: g08ecc, nag_nonpar_randtest_triplets or nag_triplets_test.

3 Description

g08ecc computes the statistics for performing a triplets test which may be used to investigate deviations from randomness in a sequence, x={xi:i=1,2,,n}, of [0,1] observations.
An m×m matrix, C, of counts is formed as follows. The element cjkl of C is the number of triplets (xi,xi+1,xi+2) for i=1,4,7,,n-2, such that
j-1mxi<jm  
k- 1mxi+ 1< km  
l-1mxi+2< lm.  
Note that all triplets formed are non-overlapping and are thus independent under the assumption of randomness.
Under the assumption that the sequence is random, the expected number of triplets for each class (i.e., each element of the count matrix) is the same; that is, the triplets should be uniformly distributed over the unit cube [0,1]3. Thus the expected number of triplets for each class is just the total number of triplets, j,k,l=1mcjkl, divided by the number of classes, m3.
The χ2 test statistic used to test the hypothesis of randomness is defined as
X2=j,k,l=1m (cjkl-e) 2e,  
where e=j,k,l=1mcjkl/m3= expected number of triplets in each class.
The use of the χ2-distribution as an approximation to the exact distribution of the test statistic, X2, improves as the length of the sequence relative to m increases and hence the expected value, e, increases.

4 References

Dagpunar J (1988) Principles of Random Variate Generation Oxford University Press
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
Morgan B J T (1984) Elements of Simulation Chapman and Hall
Ripley B D (1987) Stochastic Simulation Wiley

5 Arguments

1: n Integer Input
On entry: n, the number of observations.
Constraint: n3.
2: x[n] const double Input
On entry: the sequence of observations.
Constraint: 0.0x[i-1]1.0, for i=1,2,,n.
3: max_count Integer Input
On entry: m, the size of the count matrix to be formed.
Constraint: max_count2.
4: chi double * Output
On exit: contains the χ2 test statistic, X2, for testing the null hypothesis of randomness.
5: df double * Output
On exit: contains the degrees of freedom for the χ2 statistic.
6: prob double * Output
On exit: contains the upper tail probability associated with the χ2 test statistic, i.e., the significance level.
7: 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

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_BAD_PARAM
On entry, argument value had an illegal value.
NE_G08EC_CELL
max_count is too large relative to the number of triplets, therefore, the expected value for at least one cell is less than or equal to 5.0.
This implies that the χ2 distribution may not be a very good approximation to the distribution of the test statistic.
max_count=value, number of triplets =value and expected value=value.
All statistics are returned and may still be of use.
NE_G08EC_TRIPLETS
No triplets were found because less than 3 observations were provided in total.
NE_INT_ARG_LE
On entry, max_count=value.
Constraint: max_count2.
NE_INT_ARG_LT
On entry, n=value.
Constraint: n3.
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_REAL_ARRAY_CONS
On entry, at least one element of x is out of range.
Constraint: 0x[i-1]1, for i=1,2,,n.

7 Accuracy

The computations are believed to be stable. The computations of prob given the values of chi and df will obtain a relative accuracy of five significant figures for most cases.

8 Parallelism and Performance

g08ecc is not threaded in any implementation.

9 Further Comments

The time taken by the function increases with the number of observations n.

10 Example

The following program performs the triplets test on 10000 pseudorandom numbers taken from a uniform distribution U(0,1), generated by g05sac. g08ecc is called with max_count=5.

10.1 Program Text

Program Text (g08ecce.c)

10.2 Program Data

None.

10.3 Program Results

Program Results (g08ecce.r)