The Bayesian Information Criterion is defined as:

BIC = kln(N) - 2ln(\hat{L})

where k is the number of parameters estimated by the probability model, N is the number of data points, and \hat{L} is the maximized value of the likelihood function of the probability model i.e. \hat{L} = p(x|\hat{\theta}, M) where \hat{\theta} are the parameter values that maximize the likelihood function, and M is the probability model. 

The log10-normal distribution is described by two parameters: mean and standard deviation. Therefore, k = 2.

In this case, the model parameters that optimize the likelihood function are the same as those computed using Standard Product Moments. Therefore, the maximized likelihood function is simply equal to the PDF of the normal distribution with mean of 5.023 and standard deviation of 0.230.

  • Copy the sheet titled Data and name the new sheet BIC.
  • Compute the PDF, f_Q, of Q where random variable Q (discharge) follows a log10-normal distribution. To find the PDF of Q, differentiate the CDF of Y = log10(Q) and use the change of variable technique. The PDF of discharge Q is shown below and the derivation is shown in the expandable section:
    f_Q(q) = \frac{f_Y[log_1_0(q)]}{qln(10)} where f_Y is the PDF of the normal distribution 

    Y = log_1_0(Q)
    Q = 10^Y
    P(Q \le q) = P(10^Y \le q) = P[Y \le log_1_0(q)] = F_Y[log_1_0(q)]
    \frac{\delta}{\delta x} F_Y[log_1_0(q)] = f_Y[log_1_0(q)]\frac{1}{qln(10)}
    Therefore, the PDF of discharge Q is computed as:
    f_Q(q) = \frac{f_Y[log_1_0(q)]}{qln(10)} where f_Y is the PDF of the normal distribution 

  • Compute the natural log of the likelihood function.
  • Compute the BIC using the equation provided above.

Question: What is the computed Bayesian Information Criterion, BIC?

The computed BIC is 3,046. This matches the value from Distribution Fitting Test 20 in the HEC-SSP Examples.

If time allows, continue to Task 6. Akaike Information Criterion.