A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Autoregressive (AR) Models and Order Selection

College Depth 115 in the knowledge graph I know this Set as goal
4topics build on this
865prerequisites beneath it
See this on the map →
Unit Roots and Testing for StationarityARIMA Models and Time Series ForecastingModeling Time-Varying Volatility with GARCH+1 more
time-series ar-models stationary

Core Idea

An AR(p) model regresses a series on its own p lags: yₜ = c + φ₁yₜ₋₁ + ... + φₚyₜ₋ₚ + εₜ. Order p is chosen using ACF/PACF plots or information criteria; AR models capture temporal dependence and form the basis for ARMA and ARIMA extensions.

Explainer

You already know from stationarity that a well-behaved time series has statistical properties that don't drift over time. An AR model exploits exactly this property: if a series is stationary, its past values contain genuine predictive information about its current value. An autoregressive model of order p, written AR(p), formalizes this by regressing yₜ — today's value — on its own p most recent lags: yₜ = c + φ₁yₜ₋₁ + φ₂yₜ₋₂ + ... + φₚyₜ₋ₚ + εₜ. Think of GDP growth, which tends to persist: a strong quarter is more likely to be followed by another strong quarter than by a contraction. The φ coefficients capture exactly that persistence.

The trickiest part of AR modeling is choosing p — how many lags to include. Two diagnostic tools guide this. The autocorrelation function (ACF) measures the correlation between yₜ and yₜ₋ₖ for various lags k; it shows total correlation including indirect effects. The partial autocorrelation function (PACF) strips out those indirect effects and shows the unique contribution of each lag after controlling for shorter lags. For an AR(p) process, the PACF cuts off sharply after lag p while the ACF decays gradually. This contrast is your diagnostic: if the PACF drops to near zero after lag 2 and the ACF declines slowly, you're likely looking at an AR(2).

For a more formal approach, information criteria like AIC (Akaike) and BIC (Bayesian) balance fit against parsimony — BIC penalizes complexity more heavily than AIC. You fit models of various orders and choose the p that minimizes the criterion. The practical advice: start with the PACF plot to get a ballpark, then confirm with AIC/BIC, and prefer lower-order models unless higher-order ones show substantial improvement.

The stability of an AR model depends critically on the φ coefficients. You learned about unit roots when studying stationarity: if φ₁ = 1 in an AR(1), the series has a unit root and is nonstationary — past shocks never die out, and standard inference breaks down. For a stationary AR(p), all roots of the characteristic polynomial must lie outside the unit circle. In practice, this means the φ coefficients must be constrained appropriately. This is why stationarity testing comes before AR modeling — an AR model fitted to a nonstationary series produces spurious, uninterpretable results. Once you confirm stationarity (or difference to achieve it), AR models become powerful forecasting workhorses, forming the AR component of the more general ARIMA framework you'll encounter next.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication 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 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-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 IntroductionSine, Cosine, and Tangent RatiosTrigonometric 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 VariablesProbability Density FunctionsExpected ValueWeak Law of Large NumbersProbability Axioms and RulesConditional ProbabilityIndependence of EventsSampling DistributionsStandard Error of EstimatorsHypothesis Testing: Framework and LogicP-values and Statistical SignificanceEffect Size and Practical SignificanceHypothesis Testing: Framework and LogicZ-Tests and T-Tests for MeansOne-Sample Z-Test for MeansOne-Sample and Two-Sample T-TestsInference in Linear RegressionPrediction Intervals in RegressionLinear Regression BasicsResiduals and Goodness of Fit (R²)Simple (Bivariate) OLS RegressionClassical OLS Assumptions (Gauss-Markov)Multiple RegressionInterpreting Regression CoefficientsHypothesis Testing in RegressionF-Test and Joint SignificanceChow Test and Detection of Structural BreaksUnit Roots and Testing for StationarityAutoregressive (AR) Models and Order Selection

Longest path: 116 steps · 865 total prerequisite topics

Prerequisites (1)

Leads To (3)