Qual é a variação do produto de variáveis aleatórias correlacionadas?
fonte
Qual é a variação do produto de variáveis aleatórias correlacionadas?
Mais informações sobre esse tópico do que você provavelmente precisa podem ser encontradas em Goodman (1962): "A variação do produto de K variáveis aleatórias" , que deriva fórmulas para variáveis aleatórias independentes e variáveis aleatórias potencialmente correlacionadas, juntamente com algumas aproximações. Em um artigo anterior ( Goodman, 1960 ), a fórmula para o produto de exatamente duas variáveis aleatórias foi derivada, o que é um pouco mais simples (embora ainda bastante complicado), para que possa ser um lugar melhor para começar se você quiser entender a derivação .
Para ser completo, porém, é assim.
Suponha o seguinte:
Então: ou equivalente:
O artigo de 1960 sugere que este é um exercício para o leitor (que parece ter motivado o artigo de 1962!).
A notação é semelhante, com algumas extensões:
Then, at long last:
See the papers for details and slightly more tractable approximations!
Just to add to the awesome answer of Matt Krause (in fact easily derivable from there). If x, y are independent then,
fonte
In addition to the general formula given by Matt it may be worth noting that there is a somewhat more explicit formula for zero mean Gaussian random variables. It follows from Isserlis' theorem, see also Higher moments for the centered multivariate normal distribution.
Suppose that(x1,…,xk) follows a multivariate normal distribution with mean 0 and covariance matrix Σ . If the number of variables k is odd,
E(∏ixi)=0 and
It is, in fact, possible to implement the general formula. The most difficult part appears to be the computation of the required partitions. In R, this can be done with the functionk=8 , the 34,459,425 partitions for k=9 could also be generated, but not the 654,729,075 partitions for k=10 (on my 16 GB laptop).
setparts
from the packagepartitions
. Using this package it was no problem to generate the 2,027,025 partitions forA couple of other things are worth noting. First, for Gaussian variables with non-zero mean it should be possible to derive an expression as well from Isserlis' theorem. Second, it is unclear (to me) if the above formula is robust against deviations from normality, that is, if it can be used as an approximation even if the variables are not multivariate normally distributed. Third, though the formulas above are correct, it is questionable how much the variance tells about the distribution of the products. Even fork=2 the distribution of the product is quite leptokurtic, and for larger k it quickly becomes extremely leptokurtic.
fonte