VosejSum

MR-dice-icon.png Download a pdf copy of this help file  here

 

VosejSum(Expression,jStart,jFinish,jIncrement, NonVolatile)image1104.gif

 

 

1Excel_icon.gif Example model

This function calculates the following expression:

image315.gif

for a certain function f(j).

Example

You are expecting BetaBinomial(100,7,32) insurance claims. Each claim follows a Lognormal(25,7) $000 distribution. What is the probability that at least one claim exceeds $100k?

Let j be the number of claims. The probability of having exactly j claims is given by:

VoseBetaBinomialProb(j,100,7,32,0)

The probability that all of these j claims are below $50k is:

VoseLognormalProb(50,25,7,1)^j

Thus the probability that at least one claim exceeds $50k is then given by:

=1-VosejSum("VoseBetaBinomialProb(j,100,7,32,0)*VoseLognormalProb(50,25,7,1)^j",0,100)