美文网首页
[Actuarial] Normal Mean with Nor

[Actuarial] Normal Mean with Nor

作者: Steve_Z | 来源:发表于2018-05-22 03:31 被阅读0次

    If the claim size X follows a normal distribution, that is to say 

        X ~ N(theta, v),

    where theta is the mean and v is the variance, and theta has a normal prior,

        theta ~ N(mu, a),

    where mu is the mean of the prior distribution and a is the variance, the following method can be used to find the posterior mean and variance of theta and X.

    Assume that we observe n claims, and each has a size of x_i ( i in [1,n] ). Then we have a credibility factor

        Z = n*a / (n*a + v),

    and the posterior mean of theta, denoted mu_new, is therefore 

        mu_new = Z * avg(x_i) + (1-Z) * mu = (a*sum(x_i) + v*mu) / (n*a + v).

    The posterior variance of theta, a_new, can be computed using 

        a_new = v*a / (n*a + v).

    The posterior variance of X, v_new, is the sum of the variance of theta and its own variance v, in other words,

        v_new = a_new + v.

    相关文章

      网友评论

          本文标题:[Actuarial] Normal Mean with Nor

          本文链接:https://www.haomeiwen.com/subject/ywmcjftx.html