Information Criteria: AIC and BIC for Model Selection

Graduate Depth 95 in the knowledge graph I know this Set as goal
model-selection information-criteria

Core Idea

The Akaike Information Criterion (AIC) and Bayesian Information Criterion (BIC) provide data-driven methods for comparing non-nested models by balancing goodness-of-fit against parameter count. BIC penalizes complexity more heavily; both help select parsimonious models that generalize well to out-of-sample data.

How It's Best Learned

Apply AIC/BIC to compare multiple specifications of the same relationship and observe how the information criteria penalize additional regressors.

Common Misconceptions

Information criteria values are not interpretable on their own absolute scale—only differences between models matter; lower AIC/BIC is better.

Explainer

Every time you add a variable to a regression, the model fits the sample data better — the residuals shrink and R² rises. But that improvement might be pure noise: the variable captures random patterns in this dataset that won't repeat in new data. Model selection criteria like AIC (Akaike Information Criterion) and BIC (Bayesian Information Criterion) formalize the tradeoff between fit and parsimony. From your work on model specification testing, you already know that overfitting is a real danger. AIC and BIC give you a principled way to penalize it.

Both criteria follow the same logic: start with a measure of fit (typically the log-likelihood from maximum likelihood estimation, which you've already learned) and subtract a penalty proportional to the number of parameters. The formula is AIC = −2 ln(L̂) + 2k and BIC = −2 ln(L̂) + k ln(n), where L̂ is the maximized likelihood, k is the number of parameters, and n is the sample size. The first term rewards fit; the second penalizes complexity. Lower values are better, and you choose the model with the lowest criterion value. Because AIC's penalty is 2k regardless of sample size, while BIC's penalty k ln(n) grows with n, BIC penalizes additional parameters more heavily, especially in large samples — it leans toward simpler models.

The intuition is clearest when comparing two nested models: a restricted model with fewer parameters and an unrestricted one with more. Adding a variable decreases −2 ln(L̂) by some amount. If that decrease exceeds the penalty (2 for AIC, ln(n) for BIC), the richer model wins; otherwise, the simpler model is preferred. In this sense, AIC and BIC are like automatic hypothesis tests, but they don't require a single null hypothesis — you can compare any set of models, including non-nested specifications like different functional forms or different regressor sets, which standard F-tests cannot handle.

One crucial point the Core Idea flags: AIC and BIC values have no meaningful absolute interpretation. A model with AIC = −340 is not "worse" than one with AIC = −200 from a different dataset — the scales are incomparable. What matters is the *difference* between criteria for models estimated on the same data. As a rough rule of thumb, differences in AIC of less than 2 suggest the models are roughly equivalent; differences greater than 10 suggest strong evidence favoring the lower-AIC model. Because AIC favors predictive accuracy while BIC favors the "true" model (under certain assumptions), they will sometimes disagree — when they do, the choice depends on your goal: prediction (use AIC) or identifying the data-generating process (use BIC).

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueReading and Writing DecimalsComparing and Ordering DecimalsAdding and Subtracting DecimalsMultiplying DecimalsDividing DecimalsDividing FractionsMixed Number ArithmeticOrder of OperationsInteger Order of OperationsVariable ExpressionsCombining Like TermsOne-Step EquationsTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionTrigonometric Ratios ReviewRadian MeasureConverting Between Degrees and RadiansThe Unit CircleGraphing Sine and CosineGraphing Tangent and Reciprocal Trigonometric FunctionsDerivatives of Trigonometric FunctionsAntiderivativesIndefinite IntegralsBasic Integration RulesRiemann SumsDefinite Integral DefinitionProbability Density Functions and Continuous DistributionsCumulative Distribution FunctionsContinuous Random VariablesNormal DistributionCentral Limit TheoremConfidence Intervals for MeansZ-Tests and T-Tests for MeansOne-Sample Z-Test for MeansOne-Sample and Two-Sample T-TestsOne-Way ANOVAF-Test and Joint SignificanceR-Squared and Model FitOmitted Variable BiasCausal Inference and the Identification ProblemPotential Outcomes and the Rubin Causal ModelSelection BiasInstrumental VariablesDynamic Panel Models and Arellano-Bond/Blundell-Bond EstimationDynamic Panel Models: Arellano-Bond EstimatorFirst-Difference Estimator for Panel DataWithin Estimator (Fixed Effects) for Panel DataBetween and Random Effects Estimators for Panel DataHausman Test: Fixed Effects Versus Random EffectsHausman Test: Fixed Effects vs. Random EffectsAdjusted R-Squared for Model ComparisonInformation Criteria: AIC and BIC for Model Selection

Longest path: 96 steps · 554 total prerequisite topics

Prerequisites (4)

Leads To (0)

No topics depend on this one yet.