Definition
The Bayesian Information Criterion (BIC) is a model selection criterion similar to AIC but with a heavier penalty for model complexity.
where:
- = maximum likelihood
- = number of parameters
- = sample size
Interpretation
- Lower BIC is better
- Penalty increases with sample size:
- Emphasizes consistent model selection
Model Selection
Choose the model with minimum BIC among competing models.
Comparison: AIC vs BIC
| Criterion | Penalty | Best For | Asymptotic Property |
|---|---|---|---|
| AIC | Prediction efficiency | Not consistent (may overfit) | |
| BIC | Consistent selection | Consistent (selects true model) |
Key Differences
- BIC penalty grows with : More data → stronger penalty for complexity
- BIC tends to select simpler models than AIC
- For : BIC penalty exceeds AIC penalty
Practical Guidance
- Use AIC for prediction-oriented tasks
- Use BIC for explanation/interpretation