A
AcadiFi
AH
art_history_to_cpa2026-04-10
cfaLevel IIQuantitative Methods

How do AIC, BIC, and HQC differ in penalizing model complexity, and which should I use?

I'm studying information criteria for model selection in CFA quant. All three minimize some function of the log-likelihood plus a penalty for parameters, but the penalties differ. I'm confused about when BIC would select a different model than AIC and what Hannan-Quinn adds to the picture. Can someone clarify the tradeoffs?

117 upvotes
Verified ExpertVerified Expert
AcadiFi Certified Professional

Information criteria balance goodness of fit (log-likelihood) against model complexity (number of parameters). They differ in how severely they penalize additional parameters, which leads to different model selection behavior.

Formulas:

All three have the form: IC = -2 x ln(L) + penalty

  • AIC = -2 ln(L) + 2k
  • BIC = -2 ln(L) + k x ln(n)
  • HQC = -2 ln(L) + 2k x ln(ln(n))

where k is the number of estimated parameters, n is the sample size, and L is the maximized likelihood.

Penalty Comparison:

For a model with k = 5 parameters and sample sizes:

Sample Size (n)AIC PenaltyBIC PenaltyHQC Penalty
501019.5612.51
2001026.4914.61
10001034.5416.27
10,0001046.0518.53

AIC penalty is constant regardless of n. BIC grows with ln(n), becoming increasingly harsh with larger samples. HQC falls between them, growing with ln(ln(n)).

Practical Example:

Analyst Duncan at Greystone Partners evaluates three models for predicting GDP growth:

ModelParameters (k)-2 ln(L)AICBIC (n=120)HQC
AR(1)2185.4189.4191.0189.9
AR(2) + Inflation4178.2186.2189.3187.2
Kitchen Sink (8 vars)9170.8188.8198.9192.0

AIC selects the AR(2) + Inflation model (186.2 is lowest). BIC also selects AR(2) + Inflation (189.3). But notice the Kitchen Sink model has the best fit (lowest -2 ln(L)) yet ranks last on all criteria because the penalty for 9 parameters outweighs its marginal fit improvement.

When They Disagree:

  • BIC tends to select more parsimonious models, especially with large n
  • AIC can overfit by selecting models with too many parameters
  • BIC is consistent (selects the true model as n approaches infinity) if the true model is among the candidates
  • AIC is efficient (minimizes prediction error) even if the true model is not among candidates
  • HQC is consistent like BIC but penalizes less aggressively

CFA Exam Guidance: For the exam, know that BIC penalizes more heavily than AIC, leading to simpler model selection. Lower values are always preferred. Use AIC when prediction accuracy matters most; use BIC when you want the most parsimonious model.

Practice information criteria problems in our CFA Quantitative Methods question bank.

📊

Master Level II with our CFA Course

107 lessons · 200+ hours· Expert instruction

#aic#bic#hqc#information-criterion#model-selection#parsimony