Досяжна кореляція для лонормальних випадкових величин


19

Розглянемо лонормальні випадкові величини Х1 і Х2 з журнал(Х1)N(0,1) і журнал(Х2)N(0,σ2) .

ρ min ρ ( X 1 , X 2 )ρмаксρхвρ(Х1,Х2)

ρmax=ρ(exp(Z),exp(σZ)) і ρmin=ρ(exp(Z),exp(σZ)) ,

але вони зробили кілька посилань на комотонічність та контркомонотонність. Я сподівався, що хтось допоможе мені зрозуміти, наскільки вони актуальні. (Я знаю, як отримати це із загального виразу, але хочу конкретно знати, про що говорили частини комотонічності.)


8
Хто вони"?
whuber

Відповіді:


25

Почну, забезпечуючи визначення comonotonicity і countermonotonicity . Потім я зазначу, чому це доречно для обчислення мінімального та максимально можливого коефіцієнта кореляції між двома випадковими змінними. І нарешті, я обчислю ці межі для лонормальних випадкових змінних і X 2X1X2 .

Комонотонність і контрмонотонність
Випадкові величини вважаються комонотонічними, якщо їх копула є верхньою межею Фреше M ( u 1 , , u d ) = min ( u 1 , , u d ) , що є найсильніший тип "позитивної" залежності. Можна показати, що X 1 , , X dX1,,Xd M(u1,,ud)=min(u1,,ud)
X1,,Xd є комотонічними тоді і лише тоді, коли де Z - деяка випадкова величина, h 1 , , h d - функції, що збільшуються, і d =

(X1,,Xd)=d(h1(Z),,hd(Z)),
Zh1,,hd=d позначає рівність розподілу. Отже, комотонічні випадкові величини - це лише функції однієї випадкової змінної.

Випадкові величини вважаються контрмонотонними, якщо їх копула - нижня межа Фреше W ( u 1 , u 2 ) = max ( 0 , u 1 + u 2 - 1 ) , яка є найсильнішим типом " негативна "залежність у біваріантному випадку. Контрмонотонічність не узагальнює вищі виміри. Можна показати, що X 1 , X 2 є контрмонотонними тоді і лише тоді, коли (X1,X2 W(u1,u2)=max(0,u1+u21)
X1,X2 де Z є деякою випадковою величиною, а h 1 і h 2 є відповідно зростаючою і спадаючою функцією, або навпаки.

(X1,X2)=d(h1(Z),h2(Z)),
Zh1h2

Досяжна кореляція
Нехай і X 2 - дві випадкові величини зі строго позитивними та кінцевими відхиленнями, а ρ min і ρ max позначають мінімальний і максимально можливий коефіцієнт кореляції між X 1 і X 2 . Тоді можна показати, щоX1X2ρminρmaxX1X2

  • тоді і тільки тоді, коли X 1 і X 2ρ(X1,X2)=ρminX1X2 є контрмонотонними;
  • тоді і тільки тоді, коли X 1 і X 2ρ(X1,X2)=ρmaxX1X2 є комотонічними.

Досяжна кореляція для лонормальних випадкових величин
Для отримання ми використовуємо той факт, що максимальна кореляція досягається тоді і лише тоді, коли X 1 і X 2 є комотонічними. Випадкові величини X 1 = e Z і X 2 = e σ Z, де Z N ( 0 , 1 ) є комотонічними, оскільки експоненціальна функція є (строго) зростаючою функцією, і таким чином ρ max = c o r r eρmaxX1X2X1=eZX2=eσZZN(0,1)ρmax=corr(eZ,eσZ) .

E(eZ)=e1/2E(eσZ)=eσ2/2var(eZ)=e(e1)var(eσZ)=eσ2(eσ21)

cov(eZ,eσZ)=E(e(σ+1)Z)E(eσZ)E(eZ)=e(σ+1)2/2e(σ2+1)/2=e(σ2+1)/2(eσ1).
Thus,
ρmax=e(σ2+1)/2(eσ1)e(e1)eσ2(eσ21)=(eσ1)(e1)(eσ21).

Similar computations with X2=eσZ yield

ρmin=(eσ1)(e1)(eσ21).

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 σ.

enter image description here

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)

7
(+6) Nice thorough exposition and well illustrated. It is interesting that attempts to confirm your chart through simulation will be doomed when σ is much larger than 3 because the sample correlation coefficient is extremely variable (due to the chance of getting one extremely high value of X2, which will have high leverage). That places a higher value than usual on a solid theoretical analysis.
whuber

5
This exposition is an adaptation of Example 2.1 (pg. 23) of M. Denuit and J. Dhaene (2003), Simple characterizations of comonotonicity and countermonotonicity by extremal correlations, Belgian Actuarial Bulletin, vol. 3, 22-27.
cardinal

3
@cardinal I wasn't aware of this article, thanks. Other potential references include ebooks.cambridge.org/… or McNeil, A. J., Frey, R. and Embrechts, P. (2005). Quantitative Risk Management: Concepts, Techniques and Tools. Princeton: Princeton University Press.
QuantIbex

2
The example goes back to at least R. D. De Veaux (1976), Tight upper and lower bounds for correlation of bivariate distributions arising in air pollution models, Tech. Report 5, Dept. of Statistics, Stanford University. See Section 3 starting on page 6. The underlying tools were known to Hoeffding.
cardinal

@QuantIbex in your proof there's something unclear to me. You first claim that X1 and X2 are comonotonic if and only if their joint distribution is equal to (h1(Z),h2(Z)), for h1,h2 increasing, etc., but when you apply this result to the lognormal random variables, you say that this implies that the random variables themselves are such that X1=eZ and X1=eσZ, i.e., it seems you apply the claim to the random variables themselves, not just their distributions. How is it?
RandomGuy
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.