g05tgc generates a sequence of variates, each consisting of pseudorandom integers, from the discrete multinomial distribution with outcomes and trials, where the outcomes have probabilities respectively.
The function may be called by the names: g05tgc, nag_rand_int_multinomial or nag_rand_gen_multinomial.
3Description
g05tgc generates a sequence of groups of integers , for and , from a multinomial distribution with trials and outcomes, where the probability of for each is
where
A single trial can have several outcomes () and the probability of achieving each outcome is known (). After trials each outcome will have occurred a certain number of times. The numbers representing the numbers of occurrences for each outcome after trials is then a single sample from the multinomial distribution defined by the parameters , and , for . This function returns such samples.
When this distribution is equivalent to the binomial distribution with parameters and (see g05tac).
The variates can be generated with or without using a search table and index. If a search table is used then it is stored with the index in a reference vector and subsequent calls to g05tgc with the same parameter values can then use this reference vector to generate further variates. The reference array is generated only for the outcome with greatest probability. The number of successes for the outcome with greatest probability is calculated first as for the binomial distribution (see g05tac); the number of successes for other outcomes are calculated in turn for the remaining reduced multinomial distribution; the number of successes for the final outcome is simply calculated to ensure that the total number of successes is .
One of the initialization functions g05kfc (for a repeatable sequence if computed sequentially) or g05kgc (for a non-repeatable sequence) must be called prior to the first call to g05tgc.
4References
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
5Arguments
1: – Nag_OrderTypeInput
On entry: the order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by . See Section 3.1.3 in the Introduction to the NAG Library CL Interface for a more detailed explanation of the use of this argument.
Constraint:
or .
2: – Nag_ModeRNGInput
On entry: a code for selecting the operation to be performed by the function.
Set up reference vector only.
Generate variates using reference vector set up in a prior call to g05tgc.
Set up reference vector and generate variates.
Generate variates without using the reference vector.
Constraint:
, , or .
3: – IntegerInput
On entry: , the number of pseudorandom numbers to be generated.
Constraint:
.
4: – IntegerInput
On entry: , the number of trials of the multinomial distribution.
Constraint:
.
5: – IntegerInput
On entry: , the number of possible outcomes of the multinomial distribution.
Constraint:
.
6: – const doubleInput
On entry: contains the probabilities
, for , of the possible outcomes of the multinomial distribution.
Constraint:
and .
7: – doubleCommunication Array
On entry: if , the reference vector from the previous call to g05tgc.
On entry: contains information on the selected base generator and its current state.
On exit: contains updated information on the state of the generator.
10: – IntegerOutput
Note: the dimension, dim, of the array
x
must be at least
when ;
when .
where appears in this document, it refers to the array element
when ;
when .
On exit: the first rows of each contain pseudorandom numbers representing a -dimensional variate from the specified multinomial distribution.
11: – IntegerInput
On entry: the stride separating row or column elements (depending on the value of order) in the array x.
Constraints:
if ,
;
if , .
12: – NagError *Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).
6Error 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 had an illegal value.
NE_INT
On entry, .
Constraint: .
On entry, lr is too small when or : , minimum length required .
On entry, .
Constraint: .
On entry, .
Constraint: .
NE_INT_2
On entry, and .
Constraint: .
On entry, and .
Constraint: .
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_INVALID_STATE
On entry, state vector has been corrupted or not initialized.
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_PREV_CALL
The value of m or k is not the same as when r was set up in a previous call.
Previous value of and .
Previous value of and .
NE_REAL_ARRAY
On entry, at least one element of the vector p is less than or greater than .
On entry, the sum of the elements of p do not equal one.
NE_REF_VEC
On entry, some of the elements of the array r have been corrupted or have not been initialized.
7Accuracy
Not applicable.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
g05tgc is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
The reference vector for only one outcome can be set up because the conditional distributions cannot be known in advance of the generation of variates. The outcome with greatest probability of success is chosen for the reference vector because it will have the greatest spread of likely values.
10Example
This example prints pseudorandom -dimensional variates from a multinomial distribution with , , , , and , generated by a single call to g05tgc, after initialization by g05kfc.