Learn R Programming

Distributacalcul (version 0.2.2)

VaR_norm: Value-at-Risk of the Normal distribution

Description

Value-at-Risk of the Normal distribution with mean \(\mu\) and variance \(\sigma\). Wrapper of qnorm.

Usage

VaR_norm(kap, mean = 0, sd = 1)

Arguments

kap

probability.

mean

mean (location) parameter \(\mu\).

sd

standard deviation \(\sigma\), must be positive.

Value

Function :

Invalid parameter values will return an error detailing which parameter is problematic.

Details

The Normal distribution with mean \(\mu\) and standard deviation \(\sigma\) has density: $$\frac{1}{\sqrt{2\pi}\sigma}\textrm{e}^{-\frac{1}{2}\left(\frac{x - \mu}{\sigma}\right)^2}$$ for \(x \in \mathcal{R}\), \(\mu \in \mathcal{R}, \sigma > 0\).

See Also

Other Normal distribution: E_norm(), Elim_norm(), Etronq_norm(), MGF_norm(), Mexcess_norm(), SL_norm(), TVaR_norm(), V_norm()

Examples

Run this code
# NOT RUN {
VaR_norm(kap = 0.8, mean = 3, sd = 5)

# }

Run the code above in your browser using DataLab