Computation of the Aggregate Claim Amount Distribution Using R and actuar. Vincent Goulet, Ph.D.

Size: px
Start display at page:

Download "Computation of the Aggregate Claim Amount Distribution Using R and actuar. Vincent Goulet, Ph.D."

Transcription

1 Computation of the Aggregate Claim Amount Distribution Using R and actuar Vincent Goulet, Ph.D.

2 Actuarial Risk Modeling Process 1 Model costs at the individual level Modeling of loss distributions 2 Aggregate risks at the collective level Risk theory 3 Determine revenue streams Ratemaking 4 Evaluate solvability of insurance portfolio Ruin theory

3 What actuar Is A package providing additional Actuarial Science functionality to the R statistical system Distributed through the Comprehensive R Archive Network (CRAN) Currently provides: 17 additional probability distributions loss modeling facilities aggregate claim amount calculation fitting of credibility models ruin probabilities and related quantities simulation of compound hierarchical models

4 Yes But... Why R? Compare x <- matrix(2, 3, 10:15) vs x _ Multi-platform Interactive State-of-the-art statistical procedures, random number generators and graphics

5 Collective Risk Model Let We have the random sum We want to find S : aggregate claim amount N : number of claims (frequency) C j : amount of claim j (severity) F S (x) = Pr[S x] S = C C N = Pr[S x N = n] Pr[N = n] n=0 = F n C (x) Pr[N = n] n=0

6 Collective Risk Model Let We have the random sum We want to find S : aggregate claim amount N : number of claims (frequency) C j : amount of claim j (severity) F S (x) = Pr[S x] S = C C N = Pr[S x N = n] Pr[N = n] n=0 = F n C (x) Pr[N = n] n=0

7 Collective Risk Model Let We have the random sum We want to find S : aggregate claim amount N : number of claims (frequency) C j : amount of claim j (severity) F S (x) = Pr[S x] S = C C N = Pr[S x N = n] Pr[N = n] n=0 = F n C (x) Pr[N = n] n=0

8 What actuar Tries Not To Be Magic! (Clueless user)

9 What actuar Tries Not To Be Magic! (Clueless user)

10 What actuar Tries Not To Be Magic! (Clueless user)

11 What actuar Tries Not To Be Magic! (Clueless user)

12 What actuar Tries Not To Be Magic! (Clueless user)

13 What actuar Tries Not To Be Magic! (Clueless user)

14 What We re Presenting Here Today (Insightful user) aggregatedist() F S (x)

15 How We Can Tackle the Problem 1 Carry out the convolutions FC k (x) for k = 0, 1, 2,... 2 Use a Normal approximation ( ) x µs F S (x) Φ 3 Use the Normal Power II approximation ( ) F S (x) Φ x µ S γ S γ S σ S γ 2 S σ S 4 Use simulation: F S (x) F n (x) = 1 n n j=1 I{x j x}

16 How We Can Tackle the Problem 1 Carry out the convolutions FC k (x) for k = 0, 1, 2,...! 2 Use a Normal approximation ( ) x µs F S (x) Φ 3 Use the Normal Power II approximation ( ) F S (x) Φ x µ S γ S γ S σ S γ 2 S σ S 4 Use simulation: F S (x) F n (x) = 1 n n j=1 I{x j x}

17 How We Can Tackle the Problem 1 Carry out the convolutions FC k (x) for k = 0, 1, 2,...! 2 Use a Normal approximation! ( ) x µs F S (x) Φ 3 Use the Normal Power II approximation ( ) F S (x) Φ x µ S γ S γ S σ S γ 2 S σ S 4 Use simulation: F S (x) F n (x) = 1 n n j=1 I{x j x}

18 How We Can Tackle the Problem 1 Carry out the convolutions FC k (x) for k = 0, 1, 2,...! 2 Use a Normal approximation! ( ) x µs F S (x) Φ 3 Use the Normal Power II approximation! ( ) F S (x) Φ x µ S γ S γ S σ S γ 2 S σ S 4 Use simulation: F S (x) F n (x) = 1 n n j=1 I{x j x}

19 How We Can Tackle the Problem 1 Carry out the convolutions FC k (x) for k = 0, 1, 2,...! 2 Use a Normal approximation! ( ) x µs F S (x) Φ 3 Use the Normal Power II approximation! ( ) F S (x) Φ x µ S γ S γ S σ S 4 Use simulation: γ 2 S F S (x) F n (x) = 1 n σ S n j=1 I{x j x}!

20 Most Commonly Used Method 5 Recursive method (Panjer algorithm): [ 1 f S (x) = (p 1 (a + b)p 0 )f C (x) 1 af C (0) min(x,m) ] + (a + by/x)f C (y)f S (x y) with y=1 f S (0) = P N (f C (0))

21 Most Commonly Used Method 5 Recursive method (Panjer algorithm):! [ 1 f S (x) = (p 1 (a + b)p 0 )f C (x) 1 af C (0) min(x,m) ] + (a + by/x)f C (y)f S (x y) with y=1 f S (0) = P N (f C (0))

22 Discretization of Continuous Distributions > discretize(pgamma(x, 2, 1), from = 0, to = 5, method = "upper") pgamma(x, 2, 1) x

23 Discretization of Continuous Distributions > discretize(pgamma(x, 2, 1), from = 0, to = 5, method = "lower") pgamma(x, 2, 1) x

24 Discretization of Continuous Distributions > discretize(pgamma(x, 2, 1), from = 0, to = 5, method = "rounding") pgamma(x, 2, 1) x

25 Discretization of Continuous Distributions > discretize(pgamma(x, 2, 1), from = 0, to = 5, method = "unbiased", lev = levgamma(x, 2, 1)) pgamma(x, 2, 1) x

26 Computing the Aggregate Claim Amount Distribution aggregatedist() is the unified interface to all 5 supported methods Computer intensive calculations are done in C Output is a function to compute F S (x) in any x R methods to plot and compute related quantities

27 Example Assume N Poisson(10) C Gamma(2, 1) > fx <- discretize(pgamma(x, 2, 1), from = 0, to = 22, step = 2, method = "unbiased", lev = levgamma(x, 2, 1)) > Fs <- aggregatedist("recursive", model.freq = "poisson", model.sev = fx, lambda = 10, x.scale = 2)

28 Example (continued) > plot(fs) Aggregate Claim Amount Distribution Recursive method approximation F S (x) x

29 Example (continued) > summary(fs) Aggregate Claim Amount Empirical CDF: Min. 1st Qu. Median Mean 3rd Qu. Max > knots(fs) [1] [18] [35] > Fs(c(10, 15, 20, 70)) [1]

30 Example (continued) > mean(fs) [1] > VaR(Fs) 90% 95% 99% > TVaR(Fs) 90% 95% 99%

31 One more thing...

32 What If Recursions Do Not Start? For example, in the Compound Poisson case f S (0) = e λ(1 f C(0)) If λ is large, f S (0) = 0 numerically One solution: 1 divide λ by 2 n 2 convolve resulting distribution n times with itself

33 Example > Fsc <- aggregatedist("recursive", model.freq = "poisson", model.sev = fx, lambda = 5, convolve = 1, x.scale = 2) > summary(fsc) Aggregate Claim Amount Empirical CDF: Min. 1st Qu. Median Mean 3rd Qu Max

34 Concluding Remarks See cran.r-project.org/package=actuar for the package Package vignettes provide complete documentation Please cite the software in publications: > citation(package = "actuar") To cite actuar in publications use: C. Dutang, V. Goulet and M. Pigeon (2008). actuar: An R Package for Actuarial Science. Journal of Statistical Software, vol. 25, no. 7, URL [...] Contribute!

Aggregate Loss Models

Aggregate Loss Models Aggregate Loss Models Chapter 9 Stat 477 - Loss Models Chapter 9 (Stat 477) Aggregate Loss Models Brian Hartman - BYU 1 / 22 Objectives Objectives Individual risk model Collective risk model Computing

More information

Package actuar. July 22, 2015

Package actuar. July 22, 2015 Type Package Package actuar July 22, 2015 Title Actuarial Functions and Heavy Tailed Distributions Version 1.1-10 Date 2015-07-21 Author Vincent Goulet, Sébastien Auclair, Christophe Dutang, Xavier Milhaud,

More information

Approximation of Aggregate Losses Using Simulation

Approximation of Aggregate Losses Using Simulation Journal of Mathematics and Statistics 6 (3): 233-239, 2010 ISSN 1549-3644 2010 Science Publications Approimation of Aggregate Losses Using Simulation Mohamed Amraja Mohamed, Ahmad Mahir Razali and Noriszura

More information

12.5: CHI-SQUARE GOODNESS OF FIT TESTS

12.5: CHI-SQUARE GOODNESS OF FIT TESTS 125: Chi-Square Goodness of Fit Tests CD12-1 125: CHI-SQUARE GOODNESS OF FIT TESTS In this section, the χ 2 distribution is used for testing the goodness of fit of a set of data to a specific probability

More information

Past and present trends in aggregate claims analysis

Past and present trends in aggregate claims analysis Past and present trends in aggregate claims analysis Gordon E. Willmot Munich Re Professor of Insurance Department of Statistics and Actuarial Science University of Waterloo 1st Quebec-Ontario Workshop

More information

An Internal Model for Operational Risk Computation

An Internal Model for Operational Risk Computation An Internal Model for Operational Risk Computation Seminarios de Matemática Financiera Instituto MEFF-RiskLab, Madrid http://www.risklab-madrid.uam.es/ Nicolas Baud, Antoine Frachot & Thierry Roncalli

More information

Lloyd Spencer Lincoln Re

Lloyd Spencer Lincoln Re AN OVERVIEW OF THE PANJER METHOD FOR DERIVING THE AGGREGATE CLAIMS DISTRIBUTION Lloyd Spencer Lincoln Re Harry H. Panjer derives a recursive method for deriving the aggregate distribution of claims in

More information

Exploratory Data Analysis

Exploratory Data Analysis Exploratory Data Analysis Johannes Schauer johannes.schauer@tugraz.at Institute of Statistics Graz University of Technology Steyrergasse 17/IV, 8010 Graz www.statistics.tugraz.at February 12, 2008 Introduction

More information

Institute of Actuaries of India Subject CT3 Probability and Mathematical Statistics

Institute of Actuaries of India Subject CT3 Probability and Mathematical Statistics Institute of Actuaries of India Subject CT3 Probability and Mathematical Statistics For 2015 Examinations Aim The aim of the Probability and Mathematical Statistics subject is to provide a grounding in

More information

1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some

1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some Section 3.1: First Derivative Test Definition. Let f be a function with domain D. 1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some open interval containing c. The number

More information

INSURANCE RISK THEORY (Problems)

INSURANCE RISK THEORY (Problems) INSURANCE RISK THEORY (Problems) 1 Counting random variables 1. (Lack of memory property) Let X be a geometric distributed random variable with parameter p (, 1), (X Ge (p)). Show that for all n, m =,

More information

A LOGNORMAL MODEL FOR INSURANCE CLAIMS DATA

A LOGNORMAL MODEL FOR INSURANCE CLAIMS DATA REVSTAT Statistical Journal Volume 4, Number 2, June 2006, 131 142 A LOGNORMAL MODEL FOR INSURANCE CLAIMS DATA Authors: Daiane Aparecida Zuanetti Departamento de Estatística, Universidade Federal de São

More information

Graphs. Exploratory data analysis. Graphs. Standard forms. A graph is a suitable way of representing data if:

Graphs. Exploratory data analysis. Graphs. Standard forms. A graph is a suitable way of representing data if: Graphs Exploratory data analysis Dr. David Lucy d.lucy@lancaster.ac.uk Lancaster University A graph is a suitable way of representing data if: A line or area can represent the quantities in the data in

More information

2WB05 Simulation Lecture 8: Generating random variables

2WB05 Simulation Lecture 8: Generating random variables 2WB05 Simulation Lecture 8: Generating random variables Marko Boon http://www.win.tue.nl/courses/2wb05 January 7, 2013 Outline 2/36 1. How do we generate random variables? 2. Fitting distributions Generating

More information

Modeling Individual Claims for Motor Third Party Liability of Insurance Companies in Albania

Modeling Individual Claims for Motor Third Party Liability of Insurance Companies in Albania Modeling Individual Claims for Motor Third Party Liability of Insurance Companies in Albania Oriana Zacaj Department of Mathematics, Polytechnic University, Faculty of Mathematics and Physics Engineering

More information

GLMs: Gompertz s Law. GLMs in R. Gompertz s famous graduation formula is. or log µ x is linear in age, x,

GLMs: Gompertz s Law. GLMs in R. Gompertz s famous graduation formula is. or log µ x is linear in age, x, Computing: an indispensable tool or an insurmountable hurdle? Iain Currie Heriot Watt University, Scotland ATRC, University College Dublin July 2006 Plan of talk General remarks The professional syllabus

More information

Introduction to Data Visualization

Introduction to Data Visualization Introduction to Data Visualization STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat/stat133 Course web: gastonsanchez.com/teaching/stat133 Graphics

More information

Statistical Analysis of Life Insurance Policy Termination and Survivorship

Statistical Analysis of Life Insurance Policy Termination and Survivorship Statistical Analysis of Life Insurance Policy Termination and Survivorship Emiliano A. Valdez, PhD, FSA Michigan State University joint work with J. Vadiveloo and U. Dias Session ES82 (Statistics in Actuarial

More information

Package SHELF. February 5, 2016

Package SHELF. February 5, 2016 Type Package Package SHELF February 5, 2016 Title Tools to Support the Sheffield Elicitation Framework (SHELF) Version 1.1.0 Date 2016-01-29 Author Jeremy Oakley Maintainer Jeremy Oakley

More information

EXAM 3, FALL 003 Please note: On a one-time basis, the CAS is releasing annotated solutions to Fall 003 Examination 3 as a study aid to candidates. It is anticipated that for future sittings, only the

More information

A Uniform Asymptotic Estimate for Discounted Aggregate Claims with Subexponential Tails

A Uniform Asymptotic Estimate for Discounted Aggregate Claims with Subexponential Tails 12th International Congress on Insurance: Mathematics and Economics July 16-18, 2008 A Uniform Asymptotic Estimate for Discounted Aggregate Claims with Subexponential Tails XUEMIAO HAO (Based on a joint

More information

Fundamentals of Actuarial Mathematics. 3rd Edition

Fundamentals of Actuarial Mathematics. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2866022/ Fundamentals of Actuarial Mathematics. 3rd Edition Description: - Provides a comprehensive coverage of both the deterministic

More information

A revisit of the hierarchical insurance claims modeling

A revisit of the hierarchical insurance claims modeling A revisit of the hierarchical insurance claims modeling Emiliano A. Valdez Michigan State University joint work with E.W. Frees* * University of Wisconsin Madison Statistical Society of Canada (SSC) 2014

More information

Example of the Glicko-2 system

Example of the Glicko-2 system Example of the Glicko-2 system Professor Mark E. Glickman Boston University November 30, 203 Every player in the Glicko-2 system has a rating, r, a rating deviation, RD, and a rating volatility σ. The

More information

Dongfeng Li. Autumn 2010

Dongfeng Li. Autumn 2010 Autumn 2010 Chapter Contents Some statistics background; ; Comparing means and proportions; variance. Students should master the basic concepts, descriptive statistics measures and graphs, basic hypothesis

More information

α α λ α = = λ λ α ψ = = α α α λ λ ψ α = + β = > θ θ β > β β θ θ θ β θ β γ θ β = γ θ > β > γ θ β γ = θ β = θ β = θ β = β θ = β β θ = = = β β θ = + α α α α α = = λ λ λ λ λ λ λ = λ λ α α α α λ ψ + α =

More information

Computational Foundations of Cognitive Science

Computational Foundations of Cognitive Science Computational Foundations of Cognitive Science Lecture 15: Convolutions and Kernels Frank Keller School of Informatics University of Edinburgh keller@inf.ed.ac.uk February 23, 2010 Frank Keller Computational

More information

Notes on the Negative Binomial Distribution

Notes on the Negative Binomial Distribution Notes on the Negative Binomial Distribution John D. Cook October 28, 2009 Abstract These notes give several properties of the negative binomial distribution. 1. Parameterizations 2. The connection between

More information

Pricing Alternative forms of Commercial Insurance cover

Pricing Alternative forms of Commercial Insurance cover Pricing Alternative forms of Commercial Insurance cover Prepared by Andrew Harford Presented to the Institute of Actuaries of Australia Biennial Convention 23-26 September 2007 Christchurch, New Zealand

More information

Modern Optimization Methods for Big Data Problems MATH11146 The University of Edinburgh

Modern Optimization Methods for Big Data Problems MATH11146 The University of Edinburgh Modern Optimization Methods for Big Data Problems MATH11146 The University of Edinburgh Peter Richtárik Week 3 Randomized Coordinate Descent With Arbitrary Sampling January 27, 2016 1 / 30 The Problem

More information

For a partition B 1,..., B n, where B i B j = for i. A = (A B 1 ) (A B 2 ),..., (A B n ) and thus. P (A) = P (A B i ) = P (A B i )P (B i )

For a partition B 1,..., B n, where B i B j = for i. A = (A B 1 ) (A B 2 ),..., (A B n ) and thus. P (A) = P (A B i ) = P (A B i )P (B i ) Probability Review 15.075 Cynthia Rudin A probability space, defined by Kolmogorov (1903-1987) consists of: A set of outcomes S, e.g., for the roll of a die, S = {1, 2, 3, 4, 5, 6}, 1 1 2 1 6 for the roll

More information

AGGREGATE CLAIMS, SOLVENCY AND REINSURANCE. David Dickson, Centre for Actuarial Studies, University of Melbourne. Cherry Bud Workshop

AGGREGATE CLAIMS, SOLVENCY AND REINSURANCE. David Dickson, Centre for Actuarial Studies, University of Melbourne. Cherry Bud Workshop AGGREGATE CLAIMS, SOLVENCY AND REINSURANCE David Dickson, Centre for Actuarial Studies, University of Melbourne Cherry Bud Workshop Keio University, 27 March 2006 Basic General Insurance Risk Model where

More information

Portfolio Replication Variable Annuity Case Study. Curt Burmeister Senior Director Algorithmics

Portfolio Replication Variable Annuity Case Study. Curt Burmeister Senior Director Algorithmics Portfolio Replication Variable Annuity Case Study Curt Burmeister Senior Director Algorithmics What is Portfolio Replication? To find a portfolio of assets whose value is equal to the value of a liability

More information

Statistical Data analysis With Excel For HSMG.632 students

Statistical Data analysis With Excel For HSMG.632 students 1 Statistical Data analysis With Excel For HSMG.632 students Dialog Boxes Descriptive Statistics with Excel To find a single descriptive value of a data set such as mean, median, mode or the standard deviation,

More information

Asymptotics of discounted aggregate claims for renewal risk model with risky investment

Asymptotics of discounted aggregate claims for renewal risk model with risky investment Appl. Math. J. Chinese Univ. 21, 25(2: 29-216 Asymptotics of discounted aggregate claims for renewal risk model with risky investment JIANG Tao Abstract. Under the assumption that the claim size is subexponentially

More information

A Log-Robust Optimization Approach to Portfolio Management

A Log-Robust Optimization Approach to Portfolio Management A Log-Robust Optimization Approach to Portfolio Management Dr. Aurélie Thiele Lehigh University Joint work with Ban Kawas Research partially supported by the National Science Foundation Grant CMMI-0757983

More information

Monte Carlo Simulation for Software Cost Estimation. Pete MacDonald Fatma Mili, PhD.

Monte Carlo Simulation for Software Cost Estimation. Pete MacDonald Fatma Mili, PhD. Monte Carlo Simulation for Software Cost Estimation Pete MacDonald Fatma Mili, PhD. Definition Software Maintenance - The activities involved in implementing a set of relatively small changes to an existing

More information

STT315 Chapter 4 Random Variables & Probability Distributions KM. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables

STT315 Chapter 4 Random Variables & Probability Distributions KM. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables Discrete vs. continuous random variables Examples of continuous distributions o Uniform o Exponential o Normal Recall: A random

More information

Optimal order placement in a limit order book. Adrien de Larrard and Xin Guo. Laboratoire de Probabilités, Univ Paris VI & UC Berkeley

Optimal order placement in a limit order book. Adrien de Larrard and Xin Guo. Laboratoire de Probabilités, Univ Paris VI & UC Berkeley Optimal order placement in a limit order book Laboratoire de Probabilités, Univ Paris VI & UC Berkeley Outline 1 Background: Algorithm trading in different time scales 2 Some note on optimal execution

More information

UNIT I: RANDOM VARIABLES PART- A -TWO MARKS

UNIT I: RANDOM VARIABLES PART- A -TWO MARKS UNIT I: RANDOM VARIABLES PART- A -TWO MARKS 1. Given the probability density function of a continuous random variable X as follows f(x) = 6x (1-x) 0

More information

Exponential Distribution

Exponential Distribution Exponential Distribution Definition: Exponential distribution with parameter λ: { λe λx x 0 f(x) = 0 x < 0 The cdf: F(x) = x Mean E(X) = 1/λ. f(x)dx = Moment generating function: φ(t) = E[e tx ] = { 1

More information

Questions and Answers

Questions and Answers GNH7/GEOLGG9/GEOL2 EARTHQUAKE SEISMOLOGY AND EARTHQUAKE HAZARD TUTORIAL (6): EARTHQUAKE STATISTICS Question. Questions and Answers How many distinct 5-card hands can be dealt from a standard 52-card deck?

More information

How to assess the risk of a large portfolio? How to estimate a large covariance matrix?

How to assess the risk of a large portfolio? How to estimate a large covariance matrix? Chapter 3 Sparse Portfolio Allocation This chapter touches some practical aspects of portfolio allocation and risk assessment from a large pool of financial assets (e.g. stocks) How to assess the risk

More information

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Proceedings of the 2009 Industrial Engineering Research Conference Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Yasin Unlu, Manuel D. Rossetti Department of

More information

Supplement to Call Centers with Delay Information: Models and Insights

Supplement to Call Centers with Delay Information: Models and Insights Supplement to Call Centers with Delay Information: Models and Insights Oualid Jouini 1 Zeynep Akşin 2 Yves Dallery 1 1 Laboratoire Genie Industriel, Ecole Centrale Paris, Grande Voie des Vignes, 92290

More information

Integer Programming: Algorithms - 3

Integer Programming: Algorithms - 3 Week 9 Integer Programming: Algorithms - 3 OPR 992 Applied Mathematical Programming OPR 992 - Applied Mathematical Programming - p. 1/12 Dantzig-Wolfe Reformulation Example Strength of the Linear Programming

More information

Inventory Models for Special Cases: A & C Items and Challenges

Inventory Models for Special Cases: A & C Items and Challenges CTL.SC1x -Supply Chain & Logistics Fundamentals Inventory Models for Special Cases: A & C Items and Challenges MIT Center for Transportation & Logistics Inventory Management by Segment A Items B Items

More information

DEPARTMENT OF ACTUARIAL STUDIES RESEARCH PAPER SERIES

DEPARTMENT OF ACTUARIAL STUDIES RESEARCH PAPER SERIES DEPARTMENT OF ACTUARIAL STUDIES RESEARCH PAPER SERIES The Predictive Distribution for a Poisson Claims Model by Glen Barnett and Angela Tong Queries to gbarnett@efs.mq.edu.au Research Paper No. 2008/01

More information

Stats on the TI 83 and TI 84 Calculator

Stats on the TI 83 and TI 84 Calculator Stats on the TI 83 and TI 84 Calculator Entering the sample values STAT button Left bracket { Right bracket } Store (STO) List L1 Comma Enter Example: Sample data are {5, 10, 15, 20} 1. Press 2 ND and

More information

An introduction to catastrophe models

An introduction to catastrophe models An introduction to catastrophe models Alessandro Bonazzi Senior Catastrophe Modeller Bringing Science to the Art of Underwriting What are they? Catastrophe models are loss estimation tools used to analyzing

More information

Asset and Liability Composition in Participating Life Insurance: The Impact on Shortfall Risk and Shareholder Value

Asset and Liability Composition in Participating Life Insurance: The Impact on Shortfall Risk and Shareholder Value Asset and Liability Composition in Participating Life Insurance: The Impact on Shortfall Risk and Shareholder Value 7th Conference in Actuarial Science & Finance on Samos June 1, 2012 Alexander Bohnert1,

More information

On the Optimality of Multiline Excess of Loss Covers. Jean-Frangois Walhin

On the Optimality of Multiline Excess of Loss Covers. Jean-Frangois Walhin On the Optimality of Multiline Excess of Loss Covers Jean-Frangois Walhin 231 ON THE OPTIMALITY OF MULTILINE EXCESS OF LOSS COVERS J.F. WALHIN lnstitut des Sciences Actuarielles, Universitd Catholique

More information

A survey on click modeling in web search

A survey on click modeling in web search A survey on click modeling in web search Lianghao Li Hong Kong University of Science and Technology Outline 1 An overview of web search marketing 2 An overview of click modeling 3 A survey on click models

More information

Stochastic Loss Reserving with the Collective Risk Model

Stochastic Loss Reserving with the Collective Risk Model Glenn Meyers, FCAS, MAAA, Ph.D. Abstract This paper presents a Bayesian stochastic loss reserve model with the following features. 1. The model for expected loss payments depends upon unknown parameters

More information

Binomial random variables

Binomial random variables Binomial and Poisson Random Variables Solutions STAT-UB.0103 Statistics for Business Control and Regression Models Binomial random variables 1. A certain coin has a 5% of landing heads, and a 75% chance

More information

Gamma Distribution Fitting

Gamma Distribution Fitting Chapter 552 Gamma Distribution Fitting Introduction This module fits the gamma probability distributions to a complete or censored set of individual or grouped data values. It outputs various statistics

More information

Lecture 5 : The Poisson Distribution

Lecture 5 : The Poisson Distribution Lecture 5 : The Poisson Distribution Jonathan Marchini November 10, 2008 1 Introduction Many experimental situations occur in which we observe the counts of events within a set unit of time, area, volume,

More information

Maximum Likelihood Estimation

Maximum Likelihood Estimation Math 541: Statistical Theory II Lecturer: Songfeng Zheng Maximum Likelihood Estimation 1 Maximum Likelihood Estimation Maximum likelihood is a relatively simple method of constructing an estimator for

More information

Chapter 9 Monté Carlo Simulation

Chapter 9 Monté Carlo Simulation MGS 3100 Business Analysis Chapter 9 Monté Carlo What Is? A model/process used to duplicate or mimic the real system Types of Models Physical simulation Computer simulation When to Use (Computer) Models?

More information

Lecture Notes on Elasticity of Substitution

Lecture Notes on Elasticity of Substitution Lecture Notes on Elasticity of Substitution Ted Bergstrom, UCSB Economics 210A March 3, 2011 Today s featured guest is the elasticity of substitution. Elasticity of a function of a single variable Before

More information

Asymptotics for ruin probabilities in a discrete-time risk model with dependent financial and insurance risks

Asymptotics for ruin probabilities in a discrete-time risk model with dependent financial and insurance risks 1 Asymptotics for ruin probabilities in a discrete-time risk model with dependent financial and insurance risks Yang Yang School of Mathematics and Statistics, Nanjing Audit University School of Economics

More information

Aachen Summer Simulation Seminar 2014

Aachen Summer Simulation Seminar 2014 Aachen Summer Simulation Seminar 2014 Lecture 07 Input Modelling + Experimentation + Output Analysis Peer-Olaf Siebers pos@cs.nott.ac.uk Motivation 1. Input modelling Improve the understanding about how

More information

MATH4427 Notebook 2 Spring 2016. 2 MATH4427 Notebook 2 3. 2.1 Definitions and Examples... 3. 2.2 Performance Measures for Estimators...

MATH4427 Notebook 2 Spring 2016. 2 MATH4427 Notebook 2 3. 2.1 Definitions and Examples... 3. 2.2 Performance Measures for Estimators... MATH4427 Notebook 2 Spring 2016 prepared by Professor Jenny Baglivo c Copyright 2009-2016 by Jenny A. Baglivo. All Rights Reserved. Contents 2 MATH4427 Notebook 2 3 2.1 Definitions and Examples...................................

More information

2. Illustration of the Nikkei 225 option data

2. Illustration of the Nikkei 225 option data 1. Introduction 2. Illustration of the Nikkei 225 option data 2.1 A brief outline of the Nikkei 225 options market τ 2.2 Estimation of the theoretical price τ = + ε ε = = + ε + = + + + = + ε + ε + ε =

More information

VI. Real Business Cycles Models

VI. Real Business Cycles Models VI. Real Business Cycles Models Introduction Business cycle research studies the causes and consequences of the recurrent expansions and contractions in aggregate economic activity that occur in most industrialized

More information

The Ergodic Theorem and randomness

The Ergodic Theorem and randomness The Ergodic Theorem and randomness Peter Gács Department of Computer Science Boston University March 19, 2008 Peter Gács (Boston University) Ergodic theorem March 19, 2008 1 / 27 Introduction Introduction

More information

Department of Civil Engineering-I.I.T. Delhi CEL 899: Environmental Risk Assessment Statistics and Probability Example Part 1

Department of Civil Engineering-I.I.T. Delhi CEL 899: Environmental Risk Assessment Statistics and Probability Example Part 1 Department of Civil Engineering-I.I.T. Delhi CEL 899: Environmental Risk Assessment Statistics and Probability Example Part Note: Assume missing data (if any) and mention the same. Q. Suppose X has a normal

More information

Joint Exam 1/P Sample Exam 1

Joint Exam 1/P Sample Exam 1 Joint Exam 1/P Sample Exam 1 Take this practice exam under strict exam conditions: Set a timer for 3 hours; Do not stop the timer for restroom breaks; Do not look at your notes. If you believe a question

More information

UCSF Academic Research Systems

UCSF Academic Research Systems Research Electronic Data Capture (REDCap) 102 REDCap Tutorial 102 UCSF Academic Research Systems Presented by Warren.Steele@ucsf.edu 415 476 9830 ARS Services MyResearch Secure, HIPAA compliant web-based

More information

Credibility and Pooling Applications to Group Life and Group Disability Insurance

Credibility and Pooling Applications to Group Life and Group Disability Insurance Credibility and Pooling Applications to Group Life and Group Disability Insurance Presented by Paul L. Correia Consulting Actuary paul.correia@milliman.com (207) 771-1204 May 20, 2014 What I plan to cover

More information

Calculating VaR. Capital Market Risk Advisors CMRA

Calculating VaR. Capital Market Risk Advisors CMRA Calculating VaR Capital Market Risk Advisors How is VAR Calculated? Sensitivity Estimate Models - use sensitivity factors such as duration to estimate the change in value of the portfolio to changes in

More information

Monte Carlo Simulation

Monte Carlo Simulation 1 Monte Carlo Simulation Stefan Weber Leibniz Universität Hannover email: sweber@stochastik.uni-hannover.de web: www.stochastik.uni-hannover.de/ sweber Monte Carlo Simulation 2 Quantifying and Hedging

More information

CHAPTER 6: Continuous Uniform Distribution: 6.1. Definition: The density function of the continuous random variable X on the interval [A, B] is.

CHAPTER 6: Continuous Uniform Distribution: 6.1. Definition: The density function of the continuous random variable X on the interval [A, B] is. Some Continuous Probability Distributions CHAPTER 6: Continuous Uniform Distribution: 6. Definition: The density function of the continuous random variable X on the interval [A, B] is B A A x B f(x; A,

More information

Chapter 3 RANDOM VARIATE GENERATION

Chapter 3 RANDOM VARIATE GENERATION Chapter 3 RANDOM VARIATE GENERATION In order to do a Monte Carlo simulation either by hand or by computer, techniques must be developed for generating values of random variables having known distributions.

More information

Controller Design in Frequency Domain

Controller Design in Frequency Domain ECSE 4440 Control System Engineering Fall 2001 Project 3 Controller Design in Frequency Domain TA 1. Abstract 2. Introduction 3. Controller design in Frequency domain 4. Experiment 5. Colclusion 1. Abstract

More information

Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes

Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes Simcha Pollack, Ph.D. St. John s University Tobin College of Business Queens, NY, 11439 pollacks@stjohns.edu

More information

STAT 830 Convergence in Distribution

STAT 830 Convergence in Distribution STAT 830 Convergence in Distribution Richard Lockhart Simon Fraser University STAT 830 Fall 2011 Richard Lockhart (Simon Fraser University) STAT 830 Convergence in Distribution STAT 830 Fall 2011 1 / 31

More information

Chapter 4 Statistical Inference in Quality Control and Improvement. Statistical Quality Control (D. C. Montgomery)

Chapter 4 Statistical Inference in Quality Control and Improvement. Statistical Quality Control (D. C. Montgomery) Chapter 4 Statistical Inference in Quality Control and Improvement 許 湘 伶 Statistical Quality Control (D. C. Montgomery) Sampling distribution I a random sample of size n: if it is selected so that the

More information

Optimal reinsurance with ruin probability target

Optimal reinsurance with ruin probability target Optimal reinsurance with ruin probability target Arthur Charpentier 7th International Workshop on Rare Event Simulation, Sept. 2008 http ://blogperso.univ-rennes1.fr/arthur.charpentier/ 1 Ruin, solvency

More information

Probability and Random Variables. Generation of random variables (r.v.)

Probability and Random Variables. Generation of random variables (r.v.) Probability and Random Variables Method for generating random variables with a specified probability distribution function. Gaussian And Markov Processes Characterization of Stationary Random Process Linearly

More information

Web-based Supplementary Materials for Bayesian Effect Estimation. Accounting for Adjustment Uncertainty by Chi Wang, Giovanni

Web-based Supplementary Materials for Bayesian Effect Estimation. Accounting for Adjustment Uncertainty by Chi Wang, Giovanni 1 Web-based Supplementary Materials for Bayesian Effect Estimation Accounting for Adjustment Uncertainty by Chi Wang, Giovanni Parmigiani, and Francesca Dominici In Web Appendix A, we provide detailed

More information

Lecture 8: More Continuous Random Variables

Lecture 8: More Continuous Random Variables Lecture 8: More Continuous Random Variables 26 September 2005 Last time: the eponential. Going from saying the density e λ, to f() λe λ, to the CDF F () e λ. Pictures of the pdf and CDF. Today: the Gaussian

More information

. (3.3) n Note that supremum (3.2) must occur at one of the observed values x i or to the left of x i.

. (3.3) n Note that supremum (3.2) must occur at one of the observed values x i or to the left of x i. Chapter 3 Kolmogorov-Smirnov Tests There are many situations where experimenters need to know what is the distribution of the population of their interest. For example, if they want to use a parametric

More information

Representing Uncertainty by Probability and Possibility What s the Difference?

Representing Uncertainty by Probability and Possibility What s the Difference? Representing Uncertainty by Probability and Possibility What s the Difference? Presentation at Amsterdam, March 29 30, 2011 Hans Schjær Jacobsen Professor, Director RD&I Ballerup, Denmark +45 4480 5030

More information

The Exponential Distribution

The Exponential Distribution 21 The Exponential Distribution From Discrete-Time to Continuous-Time: In Chapter 6 of the text we will be considering Markov processes in continuous time. In a sense, we already have a very good understanding

More information

Arena 9.0 Basic Modules based on Arena Online Help

Arena 9.0 Basic Modules based on Arena Online Help Arena 9.0 Basic Modules based on Arena Online Help Create This module is intended as the starting point for entities in a simulation model. Entities are created using a schedule or based on a time between

More information

An Extension Model of Financially-balanced Bonus-Malus System

An Extension Model of Financially-balanced Bonus-Malus System An Extension Model of Financially-balanced Bonus-Malus System Other : Ratemaking, Experience Rating XIAO, Yugu Center for Applied Statistics, Renmin University of China, Beijing, 00872, P.R. China Phone:

More information

Operational Value-at-Risk in Case of Zero-inflated Frequency

Operational Value-at-Risk in Case of Zero-inflated Frequency Operational Value-at-Risk in Case of Zero-inflated Frequency 1 Zurich Insurance, Casablanca, Morocco Younès Mouatassim 1, El Hadj Ezzahid 2 & Yassine Belasri 3 2 Mohammed V-Agdal University, Faculty of

More information

Notes on Continuous Random Variables

Notes on Continuous Random Variables Notes on Continuous Random Variables Continuous random variables are random quantities that are measured on a continuous scale. They can usually take on any value over some interval, which distinguishes

More information

Point Biserial Correlation Tests

Point Biserial Correlation Tests Chapter 807 Point Biserial Correlation Tests Introduction The point biserial correlation coefficient (ρ in this chapter) is the product-moment correlation calculated between a continuous random variable

More information

The New NCCI Hazard Groups

The New NCCI Hazard Groups The New NCCI Hazard Groups Greg Engl, PhD, FCAS, MAAA National Council on Compensation Insurance CAS Reinsurance Seminar June, 2006 Workers Compensation Session Agenda History of previous work Impact of

More information

This document is published at www.agner.org/random, Feb. 2008, as part of a software package.

This document is published at www.agner.org/random, Feb. 2008, as part of a software package. Sampling methods by Agner Fog This document is published at www.agner.org/random, Feb. 008, as part of a software package. Introduction A C++ class library of non-uniform random number generators is available

More information

Digital Imaging and Multimedia. Filters. Ahmed Elgammal Dept. of Computer Science Rutgers University

Digital Imaging and Multimedia. Filters. Ahmed Elgammal Dept. of Computer Science Rutgers University Digital Imaging and Multimedia Filters Ahmed Elgammal Dept. of Computer Science Rutgers University Outlines What are Filters Linear Filters Convolution operation Properties of Linear Filters Application

More information

Real Time Scheduling Basic Concepts. Radek Pelánek

Real Time Scheduling Basic Concepts. Radek Pelánek Real Time Scheduling Basic Concepts Radek Pelánek Basic Elements Model of RT System abstraction focus only on timing constraints idealization (e.g., zero switching time) Basic Elements Basic Notions task

More information

5. Continuous Random Variables

5. Continuous Random Variables 5. Continuous Random Variables Continuous random variables can take any value in an interval. They are used to model physical characteristics such as time, length, position, etc. Examples (i) Let X be

More information

Probability and Statistics Prof. Dr. Somesh Kumar Department of Mathematics Indian Institute of Technology, Kharagpur

Probability and Statistics Prof. Dr. Somesh Kumar Department of Mathematics Indian Institute of Technology, Kharagpur Probability and Statistics Prof. Dr. Somesh Kumar Department of Mathematics Indian Institute of Technology, Kharagpur Module No. #01 Lecture No. #15 Special Distributions-VI Today, I am going to introduce

More information

STAT 315: HOW TO CHOOSE A DISTRIBUTION FOR A RANDOM VARIABLE

STAT 315: HOW TO CHOOSE A DISTRIBUTION FOR A RANDOM VARIABLE STAT 315: HOW TO CHOOSE A DISTRIBUTION FOR A RANDOM VARIABLE TROY BUTLER 1. Random variables and distributions We are often presented with descriptions of problems involving some level of uncertainty about

More information

Java Modules for Time Series Analysis

Java Modules for Time Series Analysis Java Modules for Time Series Analysis Agenda Clustering Non-normal distributions Multifactor modeling Implied ratings Time series prediction 1. Clustering + Cluster 1 Synthetic Clustering + Time series

More information