🇺🇸 Casualty Actuarial Society Credentials (ACAS/FCAS) · flashcards
Casualty Actuarial Society Credentials (ACAS/FCAS) MAS-II — Modern Actuarial Statistics II Flashcards
72 question-and-answer cards covering MAS-II — Modern Actuarial Statistics II as it is examined in Casualty Actuarial Society Credentials (ACAS/FCAS). 24 of them are printed below, taken from across the deck — no signup, no paywall on the preview.
24 sample cards from the MAS-II — Modern Actuarial Statistics II deck
Sampled from the end of the deck, so these are different cards from the ones shown on the syllabus page.
How do the ACF and PACF patterns help identify AR($p$) vs MA($q$) models?
AR($p$): ACF tails off (decays gradually), PACF cuts off after lag $p$. MA($q$): ACF cuts off after lag $q$, PACF tails off. ARMA($p,q$): both ACF and PACF tail off gradually.
What does the ARIMA($p,d,q$) notation mean, and what is the role of $d$?
ARIMA combines AutoRegressive (order $p$), Integrated (differencing order $d$), and Moving Average (order $q$) components. $d$ is the number of times the series is differenced ($\nabla X_t = X_t - X_{t-1}$) to remove trend and achieve stationarity before fitting the ARMA($p,q$) part.
Why is differencing used on nonstationary series, and what does the random walk model look like?
Differencing $\nabla X_t = X_t - X_{t-1}$ removes trends and stabilizes the mean, converting many nonstationary series to stationary. The random walk $X_t = X_{t-1} + \varepsilon_t$ is nonstationary (variance grows with $t$), but its first difference $\nabla X_t = \varepsilon_t$ is white noise (stationary).
What is the purpose of a unit root test such as the Augmented Dickey-Fuller (ADF) test?
It tests whether a series has a unit root (i.e., is nonstationary / integrated). The null hypothesis is the presence of a unit root (nonstationary); rejecting it supports stationarity. This guides whether differencing is needed before ARMA modeling.
What is a seasonal ARIMA (SARIMA) model and how is its notation written?
SARIMA extends ARIMA with seasonal AR, differencing, and MA terms at the seasonal period $s$. Notation: $\text{ARIMA}(p,d,q)\times(P,D,Q)_s$, where lowercase terms are the non-seasonal orders and uppercase $(P,D,Q)$ are the seasonal orders applied at lag $s$ (e.g., $s=12$ for monthly data).
Define white noise and explain why residuals of a good time series model should resemble it.
White noise is a sequence with mean zero, constant variance, and zero autocorrelation at all nonzero lags. If a fitted model has captured all structure, the residuals should be white noise — any remaining autocorrelation indicates the model is missing signal. The Ljung-Box test checks for residual autocorrelation.
What is exponential smoothing (simple) and how does it forecast?
Simple exponential smoothing forecasts with a weighted average giving exponentially decreasing weights to older observations: $$\hat{X}_{t+1} = \alpha X_t + (1-\alpha)\hat{X}_t, \quad 0<\alpha<1$$ Larger $\alpha$ weights recent data more. It suits series with no trend or seasonality (Holt and Holt-Winters extend it to trend and seasonality).
Distinguish a point forecast from a prediction interval, and explain why forecast intervals widen with horizon.
A point forecast is a single best-estimate value (e.g., the conditional mean) for a future period; a prediction interval gives a range expected to contain the actual value with stated probability, accounting for forecast uncertainty. Intervals widen with horizon because accumulated future shocks add variance the further ahead you forecast.
How are a regression tree split and prediction determined under CART?
At each node CART chooses the predictor and split point that minimizes the residual sum of squares (RSS) of the two resulting child nodes (recursive binary splitting). The prediction in each terminal (leaf) node is the mean of the training responses falling in that node.
What impurity measures are used to choose splits in a classification tree?
The Gini index $G=\sum_k \hat{p}_k(1-\hat{p}_k)$ and cross-entropy/deviance $-\sum_k \hat{p}_k\ln\hat{p}_k$, where $\hat{p}_k$ is the proportion of class $k$ in a node. Both are minimized by node purity and are preferred over classification error rate for growing trees because they are more sensitive.
Why and how are decision trees pruned?
A fully grown tree overfits. Cost-complexity (weakest-link) pruning minimizes $$\sum_{\text{leaves}} \text{RSS} + \alpha|T|$$ where $|T|$ is the number of terminal nodes and $\alpha\geq 0$ tunes the penalty (chosen by cross-validation). Larger $\alpha$ yields smaller trees, trading fit for simplicity and better generalization.
Contrast bagging, random forests, and boosting as ensemble tree methods.
Bagging fits trees on bootstrap samples and averages them, reducing variance. Random forests add randomness by considering only a random subset of predictors at each split, decorrelating the trees for further variance reduction. Boosting grows trees sequentially, each fitting the residuals/errors of the prior ensemble, slowly reducing bias; it uses small trees and a learning rate.
What is the out-of-bag (OOB) error in bagging and random forests?
Each bootstrap sample omits about $1/3$ of observations (the out-of-bag set). Each observation is predicted using only the trees that did not train on it, and the averaged error over all observations is the OOB error — a built-in estimate of test error that avoids separate cross-validation.
State the K-means clustering objective and algorithm steps.
Objective: minimize within-cluster sum of squares $$\sum_{k=1}^{K}\sum_{i\in C_k}\|x_i-\mu_k\|^2.$$ Steps: (1) initialize $K$ centroids; (2) assign each point to its nearest centroid; (3) recompute centroids as cluster means; (4) repeat 2-3 until assignments stop changing. It converges to a local optimum, so multiple random starts are used.
Compare K-means and hierarchical clustering.
K-means requires choosing $K$ in advance, produces a single flat partition, and is sensitive to initialization. Hierarchical (agglomerative) clustering builds a nested tree (dendrogram) without pre-specifying $K$ — clusters are obtained by cutting the dendrogram at a chosen height — using a linkage rule (single, complete, average, Ward) to measure inter-cluster distance.
What is Principal Component Analysis (PCA) and what does the first principal component maximize?
PCA is an unsupervised dimension-reduction technique that finds orthogonal linear combinations (principal components) of the variables. The first principal component is the unit-norm direction maximizing the variance of the projected data; subsequent components maximize remaining variance subject to being orthogonal to earlier ones. Components are the eigenvectors of the covariance/correlation matrix.
Why should variables be standardized before PCA, and what does a scree plot show?
PCA is scale-sensitive: variables with larger units dominate the variance, so standardizing (zero mean, unit variance) prevents arbitrary units from driving the components. A scree plot shows the proportion of variance explained by each component; the 'elbow' helps decide how many components to retain.
In binary classification, define the confusion matrix terms and compute sensitivity, specificity, and precision.
From TP, FP, TN, FN: Sensitivity (recall, TPR) $=\frac{TP}{TP+FN}$; Specificity (TNR) $=\frac{TN}{TN+FP}$; Precision $=\frac{TP}{TP+FP}$. Accuracy $=\frac{TP+TN}{\text{total}}$.
What does an ROC curve plot, and how is AUC interpreted?
The ROC curve plots true positive rate (sensitivity) against false positive rate ($1-$specificity) as the classification threshold varies. The Area Under the Curve (AUC) summarizes performance: $1.0$ is perfect, $0.5$ is no better than random; it equals the probability that the model ranks a random positive above a random negative.
Define precision and recall and explain the F1 score.
Precision $=\frac{TP}{TP+FP}$ (of predicted positives, how many are correct); Recall $=\frac{TP}{TP+FN}$ (of actual positives, how many are found). The F1 score is their harmonic mean: $$F_1 = \frac{2\cdot\text{Precision}\cdot\text{Recall}}{\text{Precision}+\text{Recall}}$$ used when a single balanced measure is needed, especially with class imbalance.
What is a lift chart (gains chart) and how is it used to evaluate predictive models in insurance?
Observations are sorted by predicted value and grouped (e.g., deciles); the chart compares actual outcomes across the ranked groups. Good models show a steep, monotonic increase in actual losses/frequency from lowest to highest predicted bins, demonstrating the model's ability to discriminate (segment) risk. The lift ratio compares top-bin to bottom-bin or to the overall average.
Distinguish supervised from unsupervised learning and give an example of each.
Supervised learning has a labeled response/target and learns to predict it (e.g., regression, classification, GLMs, trees). Unsupervised learning has no target and finds structure within the predictors (e.g., K-means clustering, hierarchical clustering, PCA).
What is the difference between the training, validation, and test sets, and what is each used for?
Training set: fits model parameters. Validation set: tunes hyperparameters and selects among models. Test set: provides a final, unbiased estimate of generalization performance and must not influence model building. Cross-validation can substitute for a separate validation set.
Explain overfitting versus underfitting and how each appears in training vs test error.
Overfitting: model too flexible — low training error but high test error (high variance, fits noise). Underfitting: model too simple — high training and high test error (high bias, misses structure). The goal is the flexibility level minimizing test error, where the two errors are balanced.
What this deck covers
The MAS-II — Modern Actuarial Statistics II deck follows the Casualty Actuarial Society Credentials (ACAS/FCAS) MAS-II — Modern Actuarial Statistics II syllabus — 5 chapters and 15 topics — so questions land on material that is genuinely examinable rather than trivia around it. That works out to roughly 14.4 cards per chapter.
Answers are written to be recallable, not just readable — averaging about 307 characters, which is long enough to carry the reasoning and short enough to say out loud.
A deck like this earns its keep on the second and third pass. Read the syllabus first so you know the shape of the subject, then use the cards to find the specific facts that have not stuck.
MAS-II — Modern Actuarial Statistics II flashcards FAQ
How many MAS-II — Modern Actuarial Statistics II flashcards are in this Casualty Actuarial Society Credentials (ACAS/FCAS) deck?
72 cards. This page previews 24 of them, sampled evenly across the deck so you can judge the difficulty before installing anything.
Are these Casualty Actuarial Society Credentials (ACAS/FCAS) flashcards free?
Yes. The preview here is free to read with no signup, and the full 72-card deck is free inside the Examius app.
What do the MAS-II — Modern Actuarial Statistics II cards cover?
They follow the Casualty Actuarial Society Credentials (ACAS/FCAS) MAS-II — Modern Actuarial Statistics II syllabus — 5 chapters and 15 topics — so the questions track what is actually examinable.
How should I use these flashcards?
Read the syllabus first so you know the shape of the subject, then drill the deck. Examius schedules each card with spaced repetition, so cards you keep missing come back sooner and ones you know drift further apart.