Equations
- Risk.RiskLevel = { α : ℚ // Risk.IsRiskLevel α }
Instances For
Equations
- Risk.FinVaRSet P X α = {t ∈ Finset.image X Finset.univ | ℙ[X<ᵣt//P] ≤ ↑α}
Instances For
Value-at-Risk of X at level α: VaR_α(X) = min { t ∈ X(Ω) | P[X ≤ t] ≥ α }. If we assume 0 ≤ α < 1, then the "else 0" branch is never used.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Value v is the Value at Risk at α of X and probability P
Equations
- Risk.IsVaR_Q P X α v = IsGreatest (Statistic.Quantile P X ↑α) v
Instances For
A simpler, equivalent definition of Value at Risk
Equations
- Risk.IsVaR P X α v = IsGreatest (Statistic.QuantileLower P X ↑α) v
Instances For
theorem
Risk.varq_is_quantile
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
{v : ℚ}
:
IsVaR_Q P X α v → Statistic.IsQuantile P X (↑α) v
theorem
Risk.varq_is_quantilelower
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
{v : ℚ}
:
IsVaR_Q P X α v → Statistic.IsQuantileLower P X (↑α) v
theorem
Risk.var_is_quantilelower
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
{v : ℚ}
:
IsVaR P X α v → Statistic.IsQuantileLower P X (↑α) v
theorem
Risk.var_is_quantile
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
{v : ℚ}
:
IsVaR P X α v → Statistic.IsQuantile P X (↑α) v
theorem
Risk.quantile_nonempty
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
:
(Statistic.Quantile P X ↑α).Nonempty
theorem
Risk.isquantilelower_le_isquantile
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
:
IsCofinalFor (Statistic.QuantileLower P X ↑α) (Statistic.Quantile P X ↑α)
theorem
Risk.isquantile_le_isquantilelower
{n : ℕ}
{P : Findist n}
{X : FinRV n ℚ}
{α : RiskLevel}
:
IsCofinalFor (Statistic.Quantile P X ↑α) (Statistic.QuantileLower P X ↑α)