Mack CL Assumptions
How to check CL 1
plot Cik+1 against Cik and check for linearity
How to check CL 2
test for CY effects -> reserves strengthening or weakening, changes in payment processes, changes in inflation, etc.
How to check CL 3
plot weighted residuals against Cik and check for randomness
sigma^2 for lognormal distribution
ln( 1 + (stderr(R) / R)^2 )
confidence interval for lognormal dist
lower: R * exp(-z * sigma - 0.5 * sigma^2)
upper: R * exp(z * sigma - 0.5 * sigma^2)
Assume the variance of the next incremental loss is a constant for each development age
set up cumulative triangle Cik, Cik^2 triangle, and calculate LDFs as sumproduct(Cik, Cik+1)/sum(Cik^2)
then use those LDFs to project cumulative loss to ultimate
Variance constant -> LDF calc weight is Cik^2
Assume the variance of the next incremental loss is proportional to the losses reported to date
Mack CL assumption - use volume weighted LDFs
Assume the variance of the next incremental loss is proportional to the square of the losses to date
Calculate all the LDFs from the given triangle then take the simple average to make selections
CY Effects Calculation
E[Zj] = n/2 - combin(n-1, m) * n/ 2^n
Var(Zj) = n * (n-1) /4 - combin(n-1,m) * n * (n-1) /2^n + E[Zj] - E[Zj]^2
sigma^2 parameter of normal distribution of overall reserve
s.e.(overall reserve)^2
confidence interval for reserve using normal distribution
Reserve +/- s.e.(Reserve) * z-value
MSE Calculation
Overall MSE Calculation
Calc LDFs, CDFs volume-weighted and project Losses to Ult
(1) For each AY after the first row, calc Ulti * SUM(Ult for AYs in rows below i); final row will be zero
(2) For each AY, calc 2 * alphak^2 / LDFk^2 then divide by sum(CAYk of AYs before curr diagonal; (2) is the sum across dev periods
MSE(Ri) = AY MSE + (1) * (2)
Overall MSE = Sum of MSE(Ri)
s.e.(R) = sqrt(MSE(R))
Correlation of Adjacent LDFs
table: period | n | S_k | T_k | weight
weightk = #AYs in original triangle - k - 1; you can also remember that the last column has a weight of 1 and it increases going back to the first column
T = SUM(weightk * Tk) / sum(weightk)
Var(T) = 1/ [(#AYs in og triangle - 2) * ((#AYs -3)/2) ]
C.I. = 0 +/- z * sqrt(Var(t))
Mack weighted residual
(Ci,k+1 - Ci,k * fhat) / sqrt(Var of Loss)
Loss k+1 - Lossk * LDF / sqrt(Var assumption of Loss)
E[Zj] in CY Effects Calc
n/2 - COMBIN(n-1, m) * n / (2^n)
Var(Zj) in CY Effects Calc
n * (n-1) / 4 - COMBIN(n-1, m) * n * (n-1) / (2^n) + E[Zj] - E[Zj]^2
m in CY Effects Calc
(n-1)/2 rounded down to the nearest whole number
Tk in LDF Correlation Calc
1 - Sk/ (n * (n^2-1)/6)
Var(T) in LDF Correlation Calc
1 / ( (#OG AYs - 2) * (#OG AYs - 3)/2)