Cookbook of Distributions

Total Page:16

File Type:pdf, Size:1020Kb

Cookbook of Distributions Appendix A Cookbook of Distributions We’ve a first-class assortment of magic; And for raising a posthumous shade With effects that are comic or tragic, Theres no cheaper house in the trade. —from the opera The Sorcerer by W.S. Gilbert and Arthur Sullivan This appendix gives the definitions and properties of a variety of typical distributions for random variables. Most of these distributions are discussed elsewhere in the text, but having the definitions in a central location can be useful for reference. The notation used here is the same as can be found in other standard references, except where indicated otherwise. A.1 Bernoulli Distribution This is a discrete distribution where the random variable takes the value of 1 with probability p and the value of 0 with probability 1 − p. If we consider the toss of a fair coin, and we assign the outcome of heads the value of x = 1 and tails x = 0, then x is Bernoulli distributed with p = 0.5. For simplicity we also define q = 1 − p. A.1.1 Probability Mass Function (PMF) − px= f(x|p) = 1 0 px= 1 © Springer Nature Switzerland AG 2018 323 R. G. McClarren, Uncertainty Quantification and Predictive Computational Science, https://doi.org/10.1007/978-3-319-99525-0 324 A Cookbook of Distributions A.1.2 Cumulative Distribution Function (CDF) ⎧ ⎪ ⎨⎪0 x<0 F(x|p) = − p ≤ x< ⎪1 0 1 ⎩⎪ 1 x ≥ 1 A.1.3 Properties • Mean: E[x]=p • Median: ⎧ ⎪ ⎨⎪0 q>p = . q = p Median ⎪0 5 ⎩⎪ 1 q<p. • Mode: ⎧ ⎪ ⎨⎪0 q>p = { , } q = p Mode ⎪ 0 1 ⎩⎪ 1 q<p. • Variance: pq = p(1 − p) • Skewness: 1 − 2p γ = √ 1 pq • Excess kurtosis: − pq = 1 6 Kurt pq A.2 Binomial Distribution The binomial distribution is a discrete distribution that gives the number of binary events that are successes (i.e., the outcome is 1), out of n ∈ N trials when each trial has probability p of success. As an example, if I flip a fair coin (p = 0.5) ten times (n = 10), then the number of heads, x, in those ten tosses will be binomially A Cookbook of Distributions 325 distributed. The Bernoulli distribution is a special case of the binomial distribution with n = 1. A.2.1 PMF n f(x|n, p) = px( − p)n−x, x 1 where the binomial coefficient is given by n n! = . x x!(n − x)! A.2.2 CDF n 1−p n−x−1 x F(x|n, p) = I1−p(n − x,1 + x) = (n − x) t (1 − t) dt, x 0 where I1−p is the regularized incomplete beta function. A.2.3 Properties • Mean: E[x]=np • The median for a binomial distribution does not have a simple formula but it lies between the integer part of np and the value of np rounded up to the nearest integer, i.e., the median is in between np and np . • Mode: ⎧ ⎪ ⎨⎪(n + 1)p (n + 1)p is 0 or a noninteger = (n + )p (n + )p− (n + )p ∈{ ,...,n}, mode ⎪ 1 and 1 1 1 1 ⎩⎪ n(n+ 1)p = n + 1 • Variance: np(1 − p) • Skewness: 1 − 2p γ1 = √ np(1 − p) • Excess kurtosis: 326 A Cookbook of Distributions 1 − 6p(1 − p) Kurt = np(1 − p) A.3 Poisson Distribution The Poisson distribution is a discrete distribution on the non-negative integers that has a single parameter λ>0 that gives the probability of an event occurring x times, if the events occur independently and at a known average rate. A.3.1 PMF λxe−x f(x|λ) = x! A.3.2 CDF x λi F(x|λ) = e−λ i! i=0 A.3.3 Properties • Mean: E[x]=λ λ − λ + 1 • The median is greater than or equal to log 2 and less than 3 . • There are two modes: λ and λ −1. • Variance: λ • Skewness: γ = √1 1 λ • Excess kurtosis: − Kurt = λ 1 A Cookbook of Distributions 327 A.4 Normal Distribution, Gaussian Distribution The normal, or Gaussian, distribution is the most well known continuous distri- bution. It has two parameters, μ ∈ R and σ 2 > 0, that correspond to the mean and variance for the distribution. We write a random variable x that is normally distributed with parameters μ and σ 2 as x ∼ N (μ, σ 2). A.4.1 Probability Density Function (PDF) 1 − (x−μ)2 f(x|μ, σ 2) = √ e 2σ2 2πσ2 A.4.2 CDF 1 x − μ F(x|μ, σ 2) = 1 + erf √ 2 σ 2 where the error function erf(x) is defined as x 2 −t2 erf(x) = √ e dt. π 0 A.4.3 Properties • The mean, median, and mode is μ • The variance is σ 2 • The skewness and excess kurtosis are 0. The standard normal distribution has μ = 0 and σ = 1. Any normal distribution can be transformed into a standard normal by centering and scaling. If x ∼ N (μ, σ 2) then z ∼ N (0, 1) with x − μ z = . σ 328 A Cookbook of Distributions A.5 Multivariate Normal Distribution The multivariate normal distribution is multidimensional generalization of the T normal distribution. Here x is a k-dimensional vector, x = (x1,x2,...,xk) , µ is a vector of the expected value, or mean of each of the random variables Xi: T T µ = (E[x1],E[x2],...,E[xk]) = (μ1,μ2,...,μk) , the covariance matrix Σ is a symmetric positive definite matrix with the determinant of the matrix written as |Σ|. A vector that is distributed as a multivariate normal with mean vector µ and covariance matrix Σ is written as x ∼ N (µ,Σ). A.5.1 Probability Density Function (PDF) 1 1 − f(x|µ,Σ)= exp − (x − µ)TΣ 1(x − µ) . (2π)k|Σ| 2 A.5.2 CDF There is no closed form expression for the CDF. A.5.3 Properties • The mean and mode is µ. • The variance is the diagonal of Σ. A.6 Student’s t-Distribution, t-Distribution The t-distribution (also known as Student’s t-distribution1). This distribution resem- bles a standard normal distribution but it has an additional, positive, real parameter ν>0. In the limit ν →∞the distribution limits to a standard normal. The parameter ν is often called the number of degrees of freedom. With ν = 1, the 1This name arises because the distribution was popularized by William Sealy Gosset under the pseudonym “Student” (Student 1908) to hide, for competitive reasons, the fact that it was used on samples from the beer making process at the Guinness brewery in Dublin, Ireland. Brilliant! A Cookbook of Distributions 329 distribution is equivalent to the Cauchy distribution (see below). The smaller the value of ν the thicker the tails in the distribution. Other than the thick tales, the distribution is also used to model the possible errors of having a small number of samples from a normal distribution. Given n samples from a normal distribution, the difference between the sample mean and the true mean of the distribution is a t-distribution with ν = n − 1. A.6.1 Probability Density Function (PDF) Γ ν+1 − ν+1 2 x2 2 f(x|ν) = √ 1 + , νπ Γ ν ν 2 where Γ(x)is the gamma function. A.6.2 CDF F 1 , ν+1 ; 3 ;−x2 1 ν + 1 2 1 2 2 2 ν F(x|ν) = + xΓ × √ πνΓ ν 2 2 2 where 2F1(x) is the hypergeometric function. A.6.3 Properties • The median and mode are 0. The mean is also 0 for ν>1 and undefined for ν ≤ 1 • The variance has three different cases: it can be undefined, infinite, or finite depending on ν: ⎧ ⎪ ⎨⎪Undefined ν ≤ 1 Var = ∞ 1 <ν≤ 2 ⎪ ⎩ ν ν> ν−2 2 • The skewness is 0 for ν>3 and undefined otherwise. • The excess kurtosis is 6(ν − 3) for ν>4 and undefined otherwise. The t-distribution can be changed so that as ν →∞it goes to a normal distribution with mean μ and variance σ 2.Ifz is t-distributed with parameter ν, then x = μ + zσ will be a shifted and rescaled random variable so that it becomes normal with mean μ and variance σ 2 as ν →∞. 330 A Cookbook of Distributions A multivariate t-distribution also exists. In analogous fashion to the multivariate normal, there is a mean vector µ, a positive-definite matrix Σ, and ν>0 parameter. This distribution has PDF −(ν+p)/2 Γ [(ν + p)/2] 1 − f(x|µ,Σ,ν)= 1 + (x − µ)TΣ 1(x − µ) . Γ(ν/2)νp/2π p/2 |Σ|1/2 ν As ν →∞, this distribution goes to a multivariate normal with mean vector µ and covariance matrix Σ. A.7 Logistic Distribution The logistic distribution resembles a normal distribution but it has thicker tails (i.e., the excess kurtosis is not zero). The distribution gets its name from the fact that its CDF is the logistic function. The logistic distribution has two parameters, the real-valued μ and the positive, real s. A.7.1 Probability Density Function (PDF) − x−μ e s 1 x − μ f(x|μ, s) = = sech2 . − x−μ 2 4s 2s 1 + e s s A.7.2 CDF 1 1 1 x − μ F(x|μ, s) = = + tanh . − x−μ s 1 + e s 2 2 2 A.7.3 Properties • The mean, median, and mode are μ. • The variance is proportional to s: π 2 Var = s2 3 • The skewness is 0.
Recommended publications
  • Extreme Value Theory and Backtest Overfitting in Finance
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Bowdoin College Bowdoin College Bowdoin Digital Commons Honors Projects Student Scholarship and Creative Work 2015 Extreme Value Theory and Backtest Overfitting in Finance Daniel C. Byrnes [email protected] Follow this and additional works at: https://digitalcommons.bowdoin.edu/honorsprojects Part of the Statistics and Probability Commons Recommended Citation Byrnes, Daniel C., "Extreme Value Theory and Backtest Overfitting in Finance" (2015). Honors Projects. 24. https://digitalcommons.bowdoin.edu/honorsprojects/24 This Open Access Thesis is brought to you for free and open access by the Student Scholarship and Creative Work at Bowdoin Digital Commons. It has been accepted for inclusion in Honors Projects by an authorized administrator of Bowdoin Digital Commons. For more information, please contact [email protected]. Extreme Value Theory and Backtest Overfitting in Finance An Honors Paper Presented for the Department of Mathematics By Daniel Byrnes Bowdoin College, 2015 ©2015 Daniel Byrnes Acknowledgements I would like to thank professor Thomas Pietraho for his help in the creation of this thesis. The revisions and suggestions made by several members of the math faculty were also greatly appreciated. I would also like to thank the entire department for their support throughout my time at Bowdoin. 1 Contents 1 Abstract 3 2 Introduction4 3 Background7 3.1 The Sharpe Ratio.................................7 3.2 Other Performance Measures.......................... 10 3.3 Example of an Overfit Strategy......................... 11 4 Modes of Convergence for Random Variables 13 4.1 Random Variables and Distributions...................... 13 4.2 Convergence in Distribution..........................
    [Show full text]
  • Parametric (Theoretical) Probability Distributions. (Wilks, Ch. 4) Discrete
    6 Parametric (theoretical) probability distributions. (Wilks, Ch. 4) Note: parametric: assume a theoretical distribution (e.g., Gauss) Non-parametric: no assumption made about the distribution Advantages of assuming a parametric probability distribution: Compaction: just a few parameters Smoothing, interpolation, extrapolation x x + s Parameter: e.g.: µ,σ population mean and standard deviation Statistic: estimation of parameter from sample: x,s sample mean and standard deviation Discrete distributions: (e.g., yes/no; above normal, normal, below normal) Binomial: E = 1(yes or success); E = 0 (no, fail). These are MECE. 1 2 P(E ) = p P(E ) = 1− p . Assume N independent trials. 1 2 How many “yes” we can obtain in N independent trials? x = (0,1,...N − 1, N ) , N+1 possibilities. Note that x is like a dummy variable. ⎛ N ⎞ x N − x ⎛ N ⎞ N ! P( X = x) = p 1− p , remember that = , 0!= 1 ⎜ x ⎟ ( ) ⎜ x ⎟ x!(N x)! ⎝ ⎠ ⎝ ⎠ − Bernouilli is the binomial distribution with a single trial, N=1: x = (0,1), P( X = 0) = 1− p, P( X = 1) = p Geometric: Number of trials until next success: i.e., x-1 fails followed by a success. x−1 P( X = x) = (1− p) p x = 1,2,... 7 Poisson: Approximation of binomial for small p and large N. Events occur randomly at a constant rate (per N trials) µ = Np . The rate per trial p is low so that events in the same period (N trials) are approximately independent. Example: assume the probability of a tornado in a certain county on a given day is p=1/100.
    [Show full text]
  • Handbook on Probability Distributions
    R powered R-forge project Handbook on probability distributions R-forge distributions Core Team University Year 2009-2010 LATEXpowered Mac OS' TeXShop edited Contents Introduction 4 I Discrete distributions 6 1 Classic discrete distribution 7 2 Not so-common discrete distribution 27 II Continuous distributions 34 3 Finite support distribution 35 4 The Gaussian family 47 5 Exponential distribution and its extensions 56 6 Chi-squared's ditribution and related extensions 75 7 Student and related distributions 84 8 Pareto family 88 9 Logistic distribution and related extensions 108 10 Extrem Value Theory distributions 111 3 4 CONTENTS III Multivariate and generalized distributions 116 11 Generalization of common distributions 117 12 Multivariate distributions 133 13 Misc 135 Conclusion 137 Bibliography 137 A Mathematical tools 141 Introduction This guide is intended to provide a quite exhaustive (at least as I can) view on probability distri- butions. It is constructed in chapters of distribution family with a section for each distribution. Each section focuses on the tryptic: definition - estimation - application. Ultimate bibles for probability distributions are Wimmer & Altmann (1999) which lists 750 univariate discrete distributions and Johnson et al. (1994) which details continuous distributions. In the appendix, we recall the basics of probability distributions as well as \common" mathe- matical functions, cf. section A.2. And for all distribution, we use the following notations • X a random variable following a given distribution, • x a realization of this random variable, • f the density function (if it exists), • F the (cumulative) distribution function, • P (X = k) the mass probability function in k, • M the moment generating function (if it exists), • G the probability generating function (if it exists), • φ the characteristic function (if it exists), Finally all graphics are done the open source statistical software R and its numerous packages available on the Comprehensive R Archive Network (CRAN∗).
    [Show full text]
  • Multivariate Non-Normally Distributed Random Variables in Climate Research – Introduction to the Copula Approach Christian Schoelzel, P
    Multivariate non-normally distributed random variables in climate research – introduction to the copula approach Christian Schoelzel, P. Friederichs To cite this version: Christian Schoelzel, P. Friederichs. Multivariate non-normally distributed random variables in cli- mate research – introduction to the copula approach. Nonlinear Processes in Geophysics, European Geosciences Union (EGU), 2008, 15 (5), pp.761-772. cea-00440431 HAL Id: cea-00440431 https://hal-cea.archives-ouvertes.fr/cea-00440431 Submitted on 10 Dec 2009 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Nonlin. Processes Geophys., 15, 761–772, 2008 www.nonlin-processes-geophys.net/15/761/2008/ Nonlinear Processes © Author(s) 2008. This work is licensed in Geophysics under a Creative Commons License. Multivariate non-normally distributed random variables in climate research – introduction to the copula approach C. Scholzel¨ 1,2 and P. Friederichs2 1Laboratoire des Sciences du Climat et l’Environnement (LSCE), Gif-sur-Yvette, France 2Meteorological Institute at the University of Bonn, Germany Received: 28 November 2007 – Revised: 28 August 2008 – Accepted: 28 August 2008 – Published: 21 October 2008 Abstract. Probability distributions of multivariate random nature can be found in e.g. Lorenz (1964); Eckmann and Ru- variables are generally more complex compared to their uni- elle (1985).
    [Show full text]
  • Maxima of Independent, Non-Identically Distributed
    Bernoulli 21(1), 2015, 38–61 DOI: 10.3150/13-BEJ560 Maxima of independent, non-identically distributed Gaussian vectors SEBASTIAN ENGELKE1,2, ZAKHAR KABLUCHKO3 and MARTIN SCHLATHER4 1Institut f¨ur Mathematische Stochastik, Georg-August-Universit¨at G¨ottingen, Goldschmidtstr. 7, D-37077 G¨ottingen, Germany. E-mail: [email protected] 2Facult´edes Hautes Etudes Commerciales, Universit´ede Lausanne, Extranef, UNIL-Dorigny, CH-1015 Lausanne, Switzerland 3Institut f¨ur Stochastik, Universit¨at Ulm, Helmholtzstr. 18, D-89069 Ulm, Germany. E-mail: [email protected] 4Institut f¨ur Mathematik, Universit¨at Mannheim, A5, 6, D-68131 Mannheim, Germany. E-mail: [email protected] d Let Xi,n, n ∈ N, 1 ≤ i ≤ n, be a triangular array of independent R -valued Gaussian random vectors with correlation matrices Σi,n. We give necessary conditions under which the row-wise maxima converge to some max-stable distribution which generalizes the class of H¨usler–Reiss distributions. In the bivariate case, the conditions will also be sufficient. Using these results, new models for bivariate extremes are derived explicitly. Moreover, we define a new class of stationary, max-stable processes as max-mixtures of Brown–Resnick processes. As an application, we show that these processes realize a large set of extremal correlation functions, a natural dependence measure for max-stable processes. This set includes all functions ψ(pγ(h)), h ∈ Rd, where ψ is a completely monotone function and γ is an arbitrary variogram. Keywords: extremal correlation function; Gaussian random vectors; H¨usler–Reiss distributions; max-limit theorems; max-stable distributions; triangular arrays 1.
    [Show full text]
  • Gumbel-Weibull Distribution: Properties and Applications Raid Al-Aqtash Marshall University, [email protected]
    Journal of Modern Applied Statistical Methods Volume 13 | Issue 2 Article 11 11-2014 Gumbel-Weibull Distribution: Properties and Applications Raid Al-Aqtash Marshall University, [email protected] Carl Lee Central Michigan University, [email protected] Felix Famoye Central Michigan University, [email protected] Follow this and additional works at: http://digitalcommons.wayne.edu/jmasm Part of the Applied Statistics Commons, Social and Behavioral Sciences Commons, and the Statistical Theory Commons Recommended Citation Al-Aqtash, Raid; Lee, Carl; and Famoye, Felix (2014) "Gumbel-Weibull Distribution: Properties and Applications," Journal of Modern Applied Statistical Methods: Vol. 13 : Iss. 2 , Article 11. DOI: 10.22237/jmasm/1414815000 Available at: http://digitalcommons.wayne.edu/jmasm/vol13/iss2/11 This Regular Article is brought to you for free and open access by the Open Access Journals at DigitalCommons@WayneState. It has been accepted for inclusion in Journal of Modern Applied Statistical Methods by an authorized editor of DigitalCommons@WayneState. Journal of Modern Applied Statistical Methods Copyright © 2014 JMASM, Inc. November 2014, Vol. 13, No. 2, 201-225. ISSN 1538 − 9472 Gumbel-Weibull Distribution: Properties and Applications Raid Al-Aqtash Carl Lee Felix Famoye Marshall University Central Michigan University Central Michigan University Huntington, WV Mount Pleasant, MI Mount Pleasant, MI Some properties of the Gumbel-Weibull distribution including the mean deviations and modes are studied. A detailed discussion of regions of unimodality and bimodality is given. The method of maximum likelihood is proposed for estimating the distribution parameters and a simulation is conducted to study the performance of the method. Three tests are given for testing the significance of a distribution parameter.
    [Show full text]
  • Likelihood Based Inference for High-Dimensional Extreme Value Distributions
    Likelihood based inference for high-dimensional extreme value distributions Alexis BIENVENÜE and Christian Y. ROBERT Université de Lyon, Université Lyon 1, Institut de Science Financière et d’Assurances, 50 Avenue Tony Garnier, F-69007 Lyon, France December 30, 2014 Abstract Multivariate extreme value statistical analysis is concerned with observations on several variables which are thought to possess some degree of tail-dependence. In areas such as the modeling of financial and insurance risks, or as the modeling of spatial variables, extreme value models in high dimensions (up to fifty or more) with their statistical inference procedures are needed. In this paper, we consider max-stable models for which the spectral random vectors have absolutely continuous distributions. For random samples with max-stable distributions we provide quasi-explicit analytical expressions of the full likelihoods. When the full likelihood becomes numerically intractable because of a too large dimension, it is however necessary to split the components into subgroups and to consider a composite likelihood approach. For random samples in the max-domain of attraction of a max-stable distribution, two approaches that use simpler likelihoods are possible: (i) a threshold approach that is combined with a censoring scheme, (ii) a block maxima approach that exploits the information on the occurrence times of the componentwise maxima. The asymptotic properties of the estimators are given and the utility of the methods is examined via simulation. The estimators are also compared with those derived from the pairwise composite likelihood method which has been previously proposed in the spatial extreme value literature. Keywords: Composite likelihood methods; High-dimensional extreme value distributions; High thresholding; Likelihood and simulation-based likelihood inference; Spatial max-stable processes 1 Introduction Technological innovations have had deep impact on scientific research by allowing to collect massive amount of data with relatively low cost.
    [Show full text]
  • EVA, Extreme Value Analysis, Technical Reference And
    EVA Extreme Value Analysis Technical Reference and Documentation MIKE 2017 2 EVA - © DHI PLEASE NOTE COPYRIGHT This document refers to proprietary computer software which is pro- tected by copyright. All rights are reserved. Copying or other repro- duction of this manual or the related programs is prohibited without prior written consent of DHI. For details please refer to your 'DHI Software Licence Agreement'. LIMITED LIABILITY The liability of DHI is limited as specified in Section III of your 'DHI Software Licence Agreement': 'IN NO EVENT SHALL DHI OR ITS REPRESENTATIVES (AGENTS AND SUPPLIERS) BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR DAMAGES FOR LOSS OF BUSINESS PROFITS OR SAVINGS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMA- TION OR OTHER PECUNIARY LOSS ARISING OUT OF THE USE OF OR THE INABILITY TO USE THIS DHI SOFTWARE PRODUCT, EVEN IF DHI HAS BEEN ADVISED OF THE POSSI- BILITY OF SUCH DAMAGES. THIS LIMITATION SHALL APPLY TO CLAIMS OF PERSONAL INJURY TO THE EXTENT PERMIT- TED BY LAW. SOME COUNTRIES OR STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSE- QUENTIAL, SPECIAL, INDIRECT, INCIDENTAL DAMAGES AND, ACCORDINGLY, SOME PORTIONS OF THESE LIMITATIONS MAY NOT APPLY TO YOU. BY YOUR OPENING OF THIS SEALED PACKAGE OR INSTALLING OR USING THE SOFT- WARE, YOU HAVE ACCEPTED THAT THE ABOVE LIMITATIONS OR THE MAXIMUM LEGALLY APPLICABLE SUBSET OF THESE LIMITATIONS APPLY TO YOUR PURCHASE OF THIS SOFT- WARE.' 3 4 EVA - © DHI CONTENTS 5 1 Introduction . 9 2 Extreme value models . 11 2.1 Basic probabilistic concepts .
    [Show full text]
  • Use of Gumbel and Weibull Functions to Model Extreme Values of Diameter Distributions in Forest Stands J
    Use of Gumbel and Weibull functions to model extreme values of diameter distributions in forest stands J. Javier Gorgoso-Varela, Alberto Rojo-Alboreca To cite this version: J. Javier Gorgoso-Varela, Alberto Rojo-Alboreca. Use of Gumbel and Weibull functions to model extreme values of diameter distributions in forest stands. Annals of Forest Science, Springer Nature (since 2011)/EDP Science (until 2010), 2014, 71 (7), pp.741-750. 10.1007/s13595-014-0369-1. hal- 01102773 HAL Id: hal-01102773 https://hal.archives-ouvertes.fr/hal-01102773 Submitted on 13 Jan 2015 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Annals of Forest Science (2014) 71:741–750 DOI 10.1007/s13595-014-0369-1 ORIGINAL PAPER Use of Gumbel and Weibull functions to model extreme values of diameter distributions in forest stands J. Javier Gorgoso-Varela & Alberto Rojo-Alboreca Received: 10 January 2014 /Accepted: 27 February 2014 /Published online: 19 March 2014 # INRA and Springer-Verlag France 2014 Abstract & Results In general, the Weibull distribution was the most & Context Families of the Gumbel (type I), Fréchet (type II) suitable model for describing the maximum diameters.
    [Show full text]
  • Application of Generalized Pareto Distribution to Constrain Uncertainty in Low-Probability Peak Ground Accelerations Luc Huyse,1 Rui Chen,2 John A
    - -- -- - -- NRC Form 390A U.S. NUCLEAR REGULATORY COMMISSION (12 2003) NRCMD 3 9 RELEASE TO PUBLISH UNCLASSIFIED NRC CONTRACTOR SPEECHES, PAPERS, AND JOURNAL ARTICLES (Please type or prrnt) 1 TITLE (State in lull as it rlppeers on the speech, paper, or journal article) I Aaalication of Gener#slizedPareto Distribution to Constrain Uncertainty in Low-Probability Peak Ground Accelerations 2. AUTHOR(s) Luc Huyse, Rui Cheri, and John A. Stamatakos 3. NAME OF CONFERENCE. LOCATION. AND DATE@) NIA (Journal Article) 4. NAME OF PUBLICATION Bulletin of Seismological Society of America 5. NAME AND ADDRESS 01: THE PUBLISHER TELEPHONE NUMBER OF THE PUBLISHER Bulletin of Seismological Society of America PO BOX1268 (541) 549-2203 221 West Cascade - Suite #C Sister, Oregon 97759 - - 6 CONTRACTOR NAME AND COMPLETE MAILING ADDRESS (Include ZIP code) TELEPHONE NUMBER OF THE CONTRACTOR James R Wlnterle Center for Nuclear Waste Regulatory Analyses (210) 522-5249 6220 Culebra Road San Antonlo. TX 78238 7. CERTlFlCATlON (ANSWER ALL QUESTIONS) A. COPYRIGHTED MATERIAL - Does this speech, paper, or journal article contain copyrighted material? If ves, attach a letter of release from the source that holds the copvriaht. B. PATENT CLEARANCE - Does this speech, paper, or journal art~clerequire patent clearance? If yes, the NRC Patent Counsel must signify clearance by signing below COUNSEL (Type or SIGNATURE DATE C. REFERENCE AVAILABILITY - Is all material referenced in this speech, paper, or journal article available to the public either through a public library, the Government Printing Office, the National Technical Information Service, or the NRC Public Document Room? If no, list below the specific availability of each referenced document.
    [Show full text]
  • Actuarial Modelling of Extremal Events Using Transformed Generalized Extreme Value Distributions and Generalized Pareto Distributions
    ACTUARIAL MODELLING OF EXTREMAL EVENTS USING TRANSFORMED GENERALIZED EXTREME VALUE DISTRIBUTIONS AND GENERALIZED PARETO DISTRIBUTIONS A Thesis Presented in Partial Fulfillment of the Requirements for the Degree Doctor of Philosophy in the Graduate School of the Ohio State University By Zhongxian Han, B.S., M.A.S. ***** The Ohio State University 2003 Doctoral Examination Committee: Bostwick Wyman, Advisor Approved by Peter March Gerald Edgar Advisor Department of Mathematics ABSTRACT In 1928, Extreme Value Theory (EVT) originated in work of Fisher and Tippett de- scribing the behavior of maximum of independent and identically distributed random variables. Various applications have been implemented successfully in many fields such as: actuarial science, hydrology, climatology, engineering, and economics and finance. This paper begins with introducing examples that extreme value theory comes to encounter. Then classical results from EVT are reviewed and the current research approaches are introduced. In particular, statistical methods are emphasized in detail for the modeling of extremal events. A case study of hurricane damages over the last century is presented using the \excess over threshold" (EOT) method. In most actual cases, the range of the data collected is finite with an upper bound while the fitted Generalized Extreme Value (GEV) and Generalized Pareto (GPD) distributions have infinite tails. Traditionally this is treated as trivial based on the assumption that the upper bound is so large that no significant result is affected when it is replaced by infinity. However, in certain circumstances, the models can be im- proved by implementing more specific techniques. Different transforms are introduced to rescale the GEV and GPD distributions so that they have finite supports.
    [Show full text]
  • Generalized Logistic Distribution and Its Regression Model Mohammad A
    Aljarrah et al. Journal of Statistical Distributions and Applications (2020) 7:7 https://doi.org/10.1186/s40488-020-00107-8 RESEARCH Open Access Generalized logistic distribution and its regression model Mohammad A. Aljarrah1*, Felix Famoye2 and Carl Lee2 * Correspondence: aljarrah@ymail. com Abstract 1Department of Mathematics, Tafila Technical University, Tafila 66110, A new generalized asymmetric logistic distribution is defined. In some cases, existing Jordan three parameter distributions provide poor fit to heavy tailed data sets. The Full list of author information is proposed new distribution consists of only three parameters and is shown to fit a available at the end of the article much wider range of heavy left and right tailed data when compared with various existing distributions. The new generalized distribution has logistic, maximum and minimum Gumbel distributions as sub-models. Some properties of the new distribution including mode, skewness, kurtosis, hazard function, and moments are studied. We propose the method of maximum likelihood to estimate the parameters and assess the finite sample size performance of the method. A generalized logistic regression model, based on the new distribution, is presented. Logistic-log-logistic regression, Weibull-extreme value regression and log-Fréchet regression are special cases of the generalized logistic regression model. The model is applied to fit failure time of a new insulation technique and the survival of a heart transplant study. Keywords: Beta-family, Symmetric distribution, Hazard function, Moments, Censored data 2010 Mathematics subject classification: 62E15, 62F10, 62 J12, 62P10 Introduction The use of logistic distribution in various disciplines can be found in (Johnson et al.
    [Show full text]