nag_triplets_test (g08ecc) (PDF version)
g08 Chapter Contents
g08 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_triplets_test (g08ecc)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_triplets_test (g08ecc) performs the triplets test on a sequence of observations from the interval 0,1 .

2  Specification

#include <nag.h>
#include <nagg08.h>
void  nag_triplets_test (Integer n, const double x[], Integer max_count, double *chi, double *df, double *prob, NagError *fail)

3  Description

nag_triplets_test (g08ecc) computes the statistics for performing a triplets test which may be used to investigate deviations from randomness in a sequence of 0,1  observations.
An m  by m  matrix, C , of counts is formed as follows. The element c jkl  of C  is the number of triplets (x i , x i+1 , x i+2 ), for i=1,4,,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 = 1 m c jkl , divided by the number of classes, m 3 .
The χ 2  test statistic used to test the hypothesis of randomness is defined as:
X 2 = j , k , l = 1 m c jkl - e 2 e
where e = j , k , l = 1 m c jkl / m 3 =  expected number of triplets in each class.
The use of the χ 2  distribution as an approximation to the exact distribution of the test statistic, X 2 , improves as the length of the sequence relative to m  increases, 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:     nIntegerInput
On entry: n , the number of observations.
Constraint: n3 .
2:     x[n]const doubleInput
On entry: the sequence of observations.
Constraint: 0.0 x[i-1] 1.0 , for i=1,2,,n.
3:     max_countIntegerInput
On entry: the size of the count matrix to be formed, m .
Constraint: max_count2 .
4:     chidouble *Output
On exit: contains the χ 2  test statistic, X 2 , for testing the null hypothesis of randomness.
5:     dfdouble *Output
On exit: contains the degrees of freedom for the χ 2  statistic.
6:     probdouble *Output
On exit: contains the upper tail probability associated with the χ 2  test statistic, i.e., the significance level.
7:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_G08EC_CELL
The expected value for the counts in each element of the count matrix is less than or equal to 5.0. This implies that the χ 2  distribution may not be a very good approximation to the test statistic.
NE_G08EC_TRIPLETS
No triplets were found because less than 3 observations were provided in total.
NE_INT_ARG_LE
On entry, max_count must not be less than or equal to 1: max_count=value .
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.
NE_REAL_ARRAY_CONS
On entry, x[value] = value.
Constraint: 0 < x[i] < 1.0 , for i=0,1,,n - 1.

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

Not applicable.

9  Further Comments

The time taken by nag_triplets_test (g08ecc) increases with the number of observations, n .

10  Example

The following program performs the pairs test on 10000 pseudorandom numbers from a uniform distribution U 0,1  generated by nag_rand_basic (g05sac). nag_triplets_test (g08ecc) is called with max_count set to 5.

10.1  Program Text

Program Text (g08ecce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (g08ecce.r)


nag_triplets_test (g08ecc) (PDF version)
g08 Chapter Contents
g08 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2014