回答:
私は、の定義を提供することから始めましょうcomonotonicityとcountermonotonicityを。次に、2つのランダム変数間の可能な最小および最大相関係数の計算にこれが関連する理由について説明します。そして最後に、対数正規乱数変数およびこれらの境界を計算します。X 2
共単性と反単調性
ランダム変数は、それらのコピュラがフレシェ上限M (u 1、… 、u d)= min (u 1、… 、u d)である場合、共単調であると言われます。最も強いタイプの「正の」依存。
これは、ことを示すことができるX 1、... 、X D
あるcomonotonic場合にのみ
Zは、いくつかのランダムな変数であり、H 1、... 、時間dが増加している機能、および
d =は分布が等しいことを示します。したがって、共単調確率変数は、単一の確率変数の関数にすぎません。
確率変数あると言われているcountermonotonicそのコピュラである場合フレシェ下限W (U 1、U 2)= 最大(0 、U 1 + U 2 - 1 )、「最強の一種であります二変量の場合の負の依存。反単調性は高次元に一般化されません。
それことを示すことができるX 1、X 2は、場合にのみcountermonotonicある
ここで Zはランダム変数であり、 h 1と h 2はそれぞれ増加関数と減少関数、またはその逆です。
達成可能な相関
レッツ及びX 2は、厳密に正の有限差異を持つ2つの確率変数であること、およびlet ρ 分およびρ maxの意味との間の最小および最大の可能な相関係数X 1およびX 2。そして、それはそれを示すことができます
対数正規確率変数のために達成可能な相関
入手するには私たちがしている場合にのみ場合、最大相関が得られるという事実使うX 1及びX 2は comonotonicですが。確率変数X 1 = EとZとX 2 = E σ Z Z 〜N(0 、1 )指数関数(厳密に)増加関数であるのでcomonotonicであるので、ρ maxの = C O R R (。
性質用いて対数正規確率変数を、我々は 、 E(E σ Z)= E σ 2 / 2、 V R(EのZ)= E (E - 1 )、 VをR(E σ Z)= E σ 2(E σ, and the covariance is
Similar computations with yield
Comment
This example shows that it is possible to have a pair of random variable that are strongly dependent — comonotonicity and countermonotonicity are the strongest kind of dependence — but that have a very low correlation.
The following chart shows these bounds as a function of .
This is the R code I used to produce the above chart.
curve((exp(x)-1)/sqrt((exp(1) - 1)*(exp(x^2) - 1)), from = 0, to = 5,
ylim = c(-1, 1), col = 2, lwd = 2, main = "Lognormal attainable correlation",
xlab = expression(sigma), ylab = "Correlation", cex.lab = 1.2)
curve((exp(-x)-1)/sqrt((exp(1) - 1)*(exp(x^2) - 1)), col = 4, lwd = 2, add = TRUE)
legend(x = "bottomright", col = c(2, 4), lwd = c(2, 2), inset = 0.02,
legend = c("Correlation upper bound", "Correlation lower bound"))
abline(h = 0, lty = 2)