Willys Flashcards Download
Become an ActuaryExamsFlashcardsExam SRM › Time Series Practice
Exam SRM · practice

Exam SRM — Time Series Practice Flashcards

Thirty exam-realistic multiple-choice problems on SOA Exam SRM time series — white noise and stationarity, trend and seasonal adjustment, the random walk and its growing variance, AR(1) mean/variance/autocorrelation and forecasting, moving-average and exponential smoothing, and forecast-accuracy measures (MAE, MAPE, MSE) — each with a fully worked solution.

8 free sample30 total · in appFree · fact-checked · LaTeX math
Tap card or press Space to flip
Answer

Unlock the full set

You're studying a free 8-problem sample. All 30 Time Series practice problems — plus every other Exam SRM subject and spaced-repetition scheduling — are built into the Willys AI Flashcards & Quizzes app. 14-day free trial, then $14.99.

Every deck is built into the Willys app

All of these decks — including the full practice problem banks — come built into Willys AI Flashcards & Quizzes for iPhone & iPad (Mac version coming soon), with FSRS + SM-2 spaced repetition, streaks, and exam-date cram mode. 14-day free trial, then $14.99. To load a deck in the app: Settings → Library → Browse, then pick your exam and deck.

More Exam SRM decks:

Clustering & KNN Clustering & KNN Practice Decision Trees & Ensembles Decision Trees & Ensembles Practice Generalized Linear Models Generalized Linear Models Practice

← All Exam SRM decks

Browse all 30 problems as a list
  1. Stationarity & white noise
    Which of the following processes is weakly (covariance) stationary? (A) A random walk $Y_t=Y_{t-1}+\epsilon_t$ (B) A series with a linear deterministic trend $Y_t=3+0.5t+\epsilon_t$ (C) White noise $\epsilon_t$ with mean $0$ and variance $\sigma^2$ (D) A random walk with drift $Y_t=2+Y_{t-1}+\epsilon_t$ (E) Quarterly sales with a strong repeating seasonal pattern
    **Answer: (C).** Weak stationarity requires a constant mean, a constant variance, and an autocovariance that depends only on the lag $k$, not on $t$. White noise satisfies all three: $E[\epsilon_t]=0$, $\text{Var}(\epsilon_t)=\sigma^2$, and $\text{Cov}(\epsilon_t,\epsilon_s)=0$ for $t\neq s$. The others fail: a random walk has $\text{Var}(Y_t)=t\sigma^2$ (grows with $t$); a deterministic trend has $E[Y_t]=3+0.5t$ (mean changes); a random walk with drift fails on both mean and variance; a seasonal series has a mean that changes with the season. Choosing (B) reflects the common error of thinking a fixed, predictable trend is "stable" enough to be stationary — but a changing mean alone breaks stationarity.
  2. Stationarity & white noise
    A process $\{\epsilon_t\}$ is claimed to be white noise. Which single property, if violated, is the clearest evidence that it is NOT white noise? (A) $E[\epsilon_t]=0$ for all $t$ (B) $\text{Var}(\epsilon_t)=\sigma^2$ constant for all $t$ (C) $\text{Cov}(\epsilon_t,\epsilon_{t-1})=0.4\sigma^2$ (D) The values are normally distributed (E) $\rho_5=0$
    **Answer: (C).** White noise requires zero autocorrelation: $\text{Cov}(\epsilon_t,\epsilon_s)=0$ for all $t\neq s$. A non-zero lag-1 autocovariance of $0.4\sigma^2$ directly violates this — the series carries serial dependence, so it is not white noise. (A) and (B) are properties white noise should *have*, so satisfying them is consistent with white noise, not evidence against it. (D) normality is not required (white noise need not be Gaussian). (E) $\rho_5=0$ is exactly what white noise predicts, so it is consistent, not contradictory. The trap is picking a property that white noise is supposed to satisfy; only (C) is an actual violation.
  3. Stationarity & white noise
    For the short series $5,\,7,\,6,\,8,\,4$ (mean $\bar Y=6$), compute the lag-1 sample autocorrelation $\hat\rho_1$ using $\hat\rho_1=\dfrac{\sum_{t=2}^{n} d_t d_{t-1}}{\sum_{t=1}^{n} d_t^2}$ with $d_t=Y_t-\bar Y$. (A) $-0.50$ (B) $-0.30$ (C) $0.00$ (D) $0.30$ (E) $0.50$
    **Answer: (A).** Deviations $d_t=Y_t-\bar Y$: $-1,\,1,\,0,\,2,\,-2$. Numerator $\sum_{t=2}^{5} d_t d_{t-1}=(1)(-1)+(0)(1)+(2)(0)+(-2)(2)=-1+0+0-4=-5$. Denominator $\sum_{t=1}^{5} d_t^2=1+1+0+4+4=10$. $\hat\rho_1=\dfrac{-5}{10}=-0.50$. The negative value reflects the up-down zig-zag of the series. Forgetting the sign on the last cross-product $(-2)(2)$ — counting it as $+4$ instead of $-4$ — gives numerator $+3$ and the wrong $+0.30$ distractor (D).
  4. Stationarity & white noise
    A time series shows a clear changing variance that grows over time but no trend in the mean. Which remedy most directly addresses the non-stationarity? (A) First differencing $\nabla Y_t=Y_t-Y_{t-1}$ (B) A log or power transform of $Y_t$ (C) Subtracting a fitted linear trend line (D) Seasonal differencing $Y_t-Y_{t-s}$ (E) Increasing the moving-average window $k$
    **Answer: (B).** The three classic remedies target different defects: differencing removes a stochastic *trend* (changing mean from a unit root); detrending removes a deterministic *trend*; seasonal differencing removes a repeating *seasonal* pattern. None of those fix a non-constant *variance*. A variance that grows with the level is stabilized by a **variance-stabilizing transform** — a log or power (Box-Cox) transform — applied before any differencing. Choosing (A) or (C) confuses a variance problem with a mean/trend problem; those leave the changing spread untouched.
  5. Trend & seasonality
    A linear-trend regression on $n=8$ quarters yields $\hat\beta_0=12.0$ and $\hat\beta_1=2.5$ (with $t=1,2,\dots$). Forecast the value at $t=11$. (A) $27.5$ (B) $30.0$ (C) $37.5$ (D) $39.5$ (E) $42.0$
    **Answer: (D).** The fitted trend line is $\hat Y_t=\hat\beta_0+\hat\beta_1 t=12.0+2.5t$. At $t=11$: $\hat Y_{11}=12.0+2.5(11)=12.0+27.5=39.5$. Reporting only the slope term $2.5(11)=27.5$ and forgetting the intercept gives distractor (A). Plugging in the number of periods *ahead of the last observation* ($11-8=3$) instead of the absolute time index, $12.0+2.5(3)=19.5$, is another common slip; the correct input is the absolute $t=11$.
  6. Trend & seasonality
    Quarterly demand has a multiplicative seasonal index of $0.80$ for Q1. The trend forecast for next Q1 is $500$ units. Give the seasonally adjusted forecast. (A) $400$ (B) $420$ (C) $500$ (D) $580$ (E) $625$
    **Answer: (A).** In a multiplicative model the seasonal forecast multiplies the trend by the seasonal index: $\hat Y=\text{trend}\times S_q=500\times 0.80=400$. Dividing instead of multiplying, $\dfrac{500}{0.80}=625$, gives distractor (E) — that operation is *deseasonalizing* an actual, not forecasting. Treating the index as additive, $500-80=420$ (reading $0.80$ as $-80$), gives (B). With an index below $1$, Q1 is a below-average quarter, so the seasonal forecast should sit below the trend of $500$.
  7. Trend & seasonality
    An additive seasonal model has raw average deviations from trend of $+15,\,-6,\,-13,\,+8$ for the four quarters. After normalizing so the indices sum to $0$, what is the adjusted Q1 index? (A) $+13.0$ (B) $+14.0$ (C) $+14.5$ (D) $+15.0$ (E) $+16.0$
    **Answer: (B).** Additive seasonal indices must sum to $0$. The raw deviations sum to $15-6-13+8=4$, so each index is reduced by the mean $\dfrac{4}{4}=1$. Adjusted Q1 index $=15-1=14.0$. Check: $14-7-14+7=0$. Forgetting to normalize and reporting the raw $15$ gives distractor (D); adding instead of subtracting the correction, $15+1=16$, gives (E). Only the normalized $14.0$ keeps the indices summing to zero.
  8. Trend & seasonality
    A monthly series is modeled as multiplicative $Y_t=T_t\times S_t\times I_t$. The trend for a given month is $240$, the month's seasonal index is $1.20$, and the actual observed value was $312$. Deseasonalize the actual observation. (A) $200$ (B) $260$ (C) $288$ (D) $312$ (E) $374.4$
    **Answer: (B).** To deseasonalize in a multiplicative model, divide the actual by its seasonal index: $\dfrac{312}{1.20}=260$. This strips the seasonal effect, leaving a trend-comparable figure. Multiplying instead, $312\times1.20=374.4$, gives distractor (E) — that is the wrong direction. The trend value $240$ (A-adjacent) and the raw actual $312$ (D) are not the deseasonalized figure. Note $260$ exceeds the trend $240$, indicating this month ran above its own trend even after removing seasonality.