NAG Library Routine Document

g01naf (moments_quad_form)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g01naf computes the cumulants and moments of quadratic forms in Normal variates.

2
Specification

Fortran Interface
Subroutine g01naf ( mom, mean, n, a, lda, emu, sigma, ldsig, l, rkum, rmom, wk, ifail)
Integer, Intent (In):: n, lda, ldsig, l
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: a(lda,n), emu(*), sigma(ldsig,n)
Real (Kind=nag_wp), Intent (Inout):: rmom(*)
Real (Kind=nag_wp), Intent (Out):: rkum(l), wk(3*n*(n+1)/2+n)
Character (1), Intent (In):: mom, mean
C Header Interface
#include nagmk26.h
void  g01naf_ (const char *mom, const char *mean, const Integer *n, const double a[], const Integer *lda, const double emu[], const double sigma[], const Integer *ldsig, const Integer *l, double rkum[], double rmom[], double wk[], Integer *ifail, const Charlen length_mom, const Charlen length_mean)

3
Description

Let x have an n-dimensional multivariate Normal distribution with mean μ and variance-covariance matrix Σ. Then for a symmetric matrix A, g01naf computes up to the first 12 moments and cumulants of the quadratic form Q=xTAx. The sth moment (about the origin) is defined as
EQs,  
where E denotes expectation. The sth moment of Q can also be found as the coefficient of ts/s! in the expansion of EeQt. The sth cumulant is defined as the coefficient of ts/s! in the expansion of logEeQt.
The routine is based on the routine CUM written by Magnus and Pesaran (1993a) and based on the theory given by Magnus (1978), Magnus (1979) and Magnus (1986).

4
References

Magnus J R (1978) The moments of products of quadratic forms in Normal variables Statist. Neerlandica 32 201–210
Magnus J R (1979) The expectation of products of quadratic forms in Normal variables: the practice Statist. Neerlandica 33 131–136
Magnus J R (1986) The exact moments of a ratio of quadratic forms in Normal variables Ann. Économ. Statist. 4 95–109
Magnus J R and Pesaran B (1993a) The evaluation of cumulants and moments of quadratic forms in Normal variables (CUM): Technical description Comput. Statist. 8 39–45
Magnus J R and Pesaran B (1993b) The evaluation of moments of quadratic forms and ratios of quadratic forms in Normal variables: Background, motivation and examples Comput. Statist. 8 47–55

5
Arguments

1:     mom – Character(1)Input
On entry: indicates if moments are computed in addition to cumulants.
mom='C'
Only cumulants are computed.
mom='M'
Moments are computed in addition to cumulants.
Constraint: mom='C' or 'M'.
2:     mean – Character(1)Input
On entry: indicates if the mean, μ, is zero.
mean='Z'
μ is zero.
mean='M'
The value of μ is supplied in emu.
Constraint: mean='Z' or 'M'.
3:     n – IntegerInput
On entry: n, the dimension of the quadratic form.
Constraint: n>1.
4:     aldan – Real (Kind=nag_wp) arrayInput
On entry: the n by n symmetric matrix A. Only the lower triangle is referenced.
5:     lda – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which g01naf is called.
Constraint: ldan.
6:     emu* – Real (Kind=nag_wp) arrayInput
Note: the dimension of the array emu must be at least n if mean='M', and at least 1 otherwise.
On entry: if mean='M', emu must contain the n elements of the vector μ.
If mean='Z', emu is not referenced.
7:     sigmaldsign – Real (Kind=nag_wp) arrayInput
On entry: the n by n variance-covariance matrix Σ. Only the lower triangle is referenced.
Constraint: the matrix Σ must be positive definite.
8:     ldsig – IntegerInput
On entry: the first dimension of the array sigma as declared in the (sub)program from which g01naf is called.
Constraint: ldsign.
9:     l – IntegerInput
On entry: the required number of cumulants, and moments if specified.
Constraint: 1l12.
10:   rkuml – Real (Kind=nag_wp) arrayOutput
On exit: the l cumulants of the quadratic form.
11:   rmom* – Real (Kind=nag_wp) arrayOutput
Note: the dimension of the array rmom must be at least l if mom='M', and at least 1 otherwise.
On exit: if mom='M', the l moments of the quadratic form.
12:   wk3×n×n+1/2+n – Real (Kind=nag_wp) arrayWorkspace
13:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, l=value.
Constraint: l1.
On entry, l=value.
Constraint: l12.
On entry, lda=value and n=value.
Constraint: ldan.
On entry, ldsig=value and n=value.
Constraint: ldsign.
On entry, mean=value.
Constraint: mean='Z' or 'M'.
On entry, mom=value.
Constraint: mom='C' or 'M'.
On entry, n=value.
Constraint: n>1.
ifail=2
On entry, sigma is not positive definite.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

In a range of tests the accuracy was found to be a modest multiple of machine precision. See Magnus and Pesaran (1993b).

8
Parallelism and Performance

g01naf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

None.

10
Example

This example is given by Magnus and Pesaran (1993b) and considers the simple autoregression
yt=βyt-1+ut,   t=1,2,n,  
where ut is a sequence of independent Normal variables with mean zero and variance one, and y0 is known. The moments of the quadratic form
Q=t=2nytyt-1  
are computed using g01naf. The matrix A is given by:
Ai+1,i = 12,  i=1,2,n-1; Ai,j = 0,   otherwise.  
The value of Σ can be computed using the relationships
varyt=β2varyt-1+1  
and
covytyt+k=β covytyt+k- 1  
for k0 and vary1=1.
The values of β, y0, n, and the number of moments required are read in and the moments and cumulants printed.

10.1
Program Text

Program Text (g01nafe.f90)

10.2
Program Data

Program Data (g01nafe.d)

10.3
Program Results

Program Results (g01nafe.r)

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