Previous Up Next

7.4.8  Fonction de répartition de la loi normale : normal_cdf normald_cdf

Lorsqu’une variable aléatoire X suit une loi normale centrée réduite, on a : Proba(Xx)= normal_cdf(x).
Lorsqu’une variable aléatoire X suit une loi normale de moyenne µ et d’écart-type σ, on a : Proba(Xx)= normal_cdf(µ,σ,x).
On tape :

normal_cdf(1.96)

On obtient :

0.975002104852

On tape :

normal_cdf(1,2,1.96)

On obtient :

0.684386303484

Previous Up Next