1 / 22

Non-life insurance mathematics

Non-life insurance mathematics. Nils F. Haavardsson, University of Oslo and DNB Skadeforsikring. Solvency. Financial control of liabilities under nearly worst-case scenarios Target: the reserve which is the upper percentile of the portfolio liability

chesna
Télécharger la présentation

Non-life insurance mathematics

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Non-lifeinsurancemathematics Nils F. Haavardsson, University of Oslo and DNB Skadeforsikring

  2. Solvency • Financial controlofliabilities under nearlyworst-case scenarios • Target: thereserve • which is theupperpercentileoftheportfolioliability • Modelling has beencovered (Risk premiumcalculations) • The issuenow is computation • Monte Carlo is the general tool • Some problems can be handled by simpler, Gaussianapproximations

  3. 10.2 Portfolioliabilities by simple approximation • The portfolio loss for independent risks becomeGaussian as J tends to infinity. • Assumethat policy risks X1,…,XJarestochastically independent • Mean and variance for theportfolio total arethen which is averageexpectation and variance. Then • as J tends to infinfity • Note that risk is underestimated for smallportfolios and in brancheswith large claims

  4. Normal approximations

  5. The ruleof double variance Let X and Y be arbitraryrandom variables for which Thenwe have theimportantidentities Poisson Somenotions Ruleof double expectation Ruleof double variance Examples Random intensities

  6. The ruleof double variance Portfolio risk in general insurance Poisson Elementaryrules for random sums imply Somenotions Examples Random intensities

  7. The ruleof double variance This leads to the true percentileqepsilonbeingapproximated by Where phi epsilon is theupperepsilonpercentileofthe standard normal distribution Poisson Somenotions Examples Random intensities

  8. Fire data from DNB

  9. Normal approximations in R z=scan("C:/Users/wenche_adm/Desktop/Nils/uio/Exercises/Branntest.txt"); # removes negatives nyz=ifelse(z>1,z,1.001); mu=0.0065; T=1; ksiZ=mean(nyz); sigmaZ=sd(nyz); a0 = mu*T*ksiZ; a1 = sqrt(mu*T)*sqrt(sigmaZ^2+ksiZ^2); J=5000; qepsNO95=a0*J+a1*qnorm(.95)*sqrt(J); qepsNO99=a0*J+a1*qnorm(.99)*sqrt(J); qepsNO9997=a0*J+a1*qnorm(.9997)*sqrt(J); c(qepsNO95,qepsNO99,qepsNO9997);

  10. The normal powerapproximation ny3hat = 0; n=length(nyz); for (i in 1:n) { ny3hat = ny3hat + (nyz[i]-mean(nyz))**3 } ny3hat = ny3hat/n; LargeKsihat=ny3hat/(sigmaZ**3); a2 = (LargeKsihat*sigmaZ**3+3*ksiZ*sigmaZ**2+ksiZ**3)/(sigmaZ^2+ksiZ^2); qepsNP95=a0*J+a1*qnorm(.95)*sqrt(J)+a2*(qnorm(.95)**2-1)/6; qepsNP99=a0*J+a1*qnorm(.99)*sqrt(J)+a2*(qnorm(.99)**2-1)/6; qepsNP9997=a0*J+a1*qnorm(.9997)*sqrt(J)+a2*(qnorm(.9997)**2-1)/6; c(qepsNP95,qepsNP99,qepsNP9997);

  11. Portfolioliabilities by simulation • Monte Carlo simulation • Advantages • More general (norestrictiononuse) • More versatile (easy to adapt to changingcircumstances) • Better suited for longer time horizons • Disadvantages • Slowcomputationally? • Dependingonclaimsizedistribution?

  12. An algorithm for liabilitiessimulation • Assumeclaimintensities for J policiesarestoredon file • Assume J differentclaimsizedistributions and paymentfunctions H1(z),…,HJ(z) arestored • The program can be organised as follows (Algorithm 10.1)

  13. Non parametric Log-normal, Gamma The Pareto Extreme value Searching

  14. Non parametric Log-normal, Gamma The Pareto Extreme value Searching

  15. Non parametric Log-normal, Gamma The Pareto Extreme value Searching

  16. Searching for themodel • How is the final model for claimsizeselected? • Traditionaltools: QQ plots and criterioncomparisons • Transformationsmayalso be used (see Erik Bølviken’s material) Non parametric Log-normal, Gamma The Pareto Extreme value Searching

  17. Non parametric Log-normal, Gamma The Pareto Extreme value Searching

  18. Results from top 12% modelling Weibull is best in top 12% modelling Non parametric Log-normal, Gamma The Pareto Extreme value Searching

  19. Experiments in R 1. Log normal distribution 2. Gamma on log scale 3. Pareto 4. Weibull 5. Mixeddistribution 1 6. Monte Carlo algorithmfor portfolioliabilities 7. Mixeddistribution 2

  20. Comparisonofresults

  21. Checkout bimodal distributionsonwikipedia

  22. Or…checkoutmixturedistributionsonwikipedia

More Related