hypergeomatrix
Evaluation of the hypergeometric function of a matrix argument (Koev & Edelman's algorithm)
Let and be two vectors of real or
complex numbers, possibly empty, and a real symmetric or a
complex Hermitian matrix.
The corresponding hypergeometric function of a matrix argument is defined by
The inner sum is over the integer partitions of (which we also
denote by ). The symbol is the
generalized Pochhammer symbol, defined by
when .
Finally, is a Jack function.
Given an integer partition and , and a
real symmetric or complex Hermitian matrix of order ,
the Jack function
is a symmetric homogeneous polynomial of degree in the
eigen values , , of .
The series defining the hypergeometric function does not always converge.
See the references for a discussion about the convergence.
The inner sum in the definition of the hypergeometric function is over
all partitions but actually
when , the number of non-zero
entries of , is strictly greater than .
For , is a Schur polynomial and it is
a zonal polynomial for .
In random matrix theory, the hypergeometric function appears for
and is omitted from the notation, implicitely assumed to be .
Koev and Edelman (2006) provided an efficient algorithm for the evaluation
of the truncated series
Hereafter, is called the truncation weight of the summation
(because is called the weight of ), the vector
is called the vector of upper parameters while
the vector is called the vector of lower parameters.
The user has to supply the vector of the eigenvalues
of .
For example, to compute
you have to enter
hypergeomat 15 2 [3.0, 4.0], [5.0, 6.0, 7.0] [0.1, 0.4]
We said that the hypergeometric function is defined for a real symmetric
matrix or a complex Hermitian matrix . Thus the eigenvalues of
are real. However we do not impose this restriction in hypergeomatrix
.
The user can enter any list of real or complex numbers for the eigenvalues.
Gaussian rational numbers
The library allows to use Gaussian rational numbers, i.e. complex numbers
with a rational real part and a rational imaginary part. The Gaussian rational
number is obtained with a +: b
, e.g. (2%3) +: (5%2)
. The imaginary
unit usually denoted by is represented by e(4)
:
ghci> import Math.HypergeoMatrix
ghci> import Data.Ratio
ghci> alpha = 2%1
ghci> a = (2%7) +: (1%2)
ghci> b = (1%2) +: (0%1)
ghci> c = (2%1) +: (3%1)
ghci> x1 = (1%3) +: (1%4)
ghci> x2 = (1%5) +: (1%6)
ghci> hypergeomat 3 alpha [a, b] [c] [x1, x2]
26266543409/25159680000 + 155806638989/3698472960000*e(4)
Univariate case
For , the hypergeometric function of a matrix argument is known as the
generalized hypergeometric function.
It does not depend on . The case of is the most known,
this is the Gauss hypergeometric function. Let's check a value. It is known that
Since is close to , the convergence is slow. We compute the truncated series below
for .
ghci> h <- hypergeomat 300 2 [1/4, 1/2] [3/4] [80/81]
ghci> h
1.7990026528192298
References
-
Plamen Koev and Alan Edelman.
The efficient evaluation of the hypergeometric function of a matrix argument.
Mathematics of computation, vol. 75, n. 254, 833-846, 2006.
-
Robb Muirhead.
Aspects of multivariate statistical theory.
Wiley series in probability and mathematical statistics.
Probability and mathematical statistics.
John Wiley & Sons, New York, 1982.
-
A. K. Gupta and D. K. Nagar.
Matrix variate distributions.
Chapman and Hall, 1999.