AIC stands for Akaike Information Criterion.
Akaike is the name of the guy who came up with this idea.
AIC is a quantity that we can calculate for many different model types, not just linear models, but also classification model such logistic regression and so on.
The AIC criterion is defined for a large class of models fit by maximum likelihood:
<MATH> AIC = -2 log L + 2 . d </MATH>
where:
It turns out that in the case of a linear model with Gaussian errors, negative 2 log L is just equal to RSS over <math>\hat{\sigma}</math> squared
<MATH> 2 log L = \frac{\href{RSS}{RSS}}{\href{variance}{\hat{\sigma}}^2} </MATH>
where:
Then by plugging it in the aboe formula, we can see that AIC and Mallow's Cp are actually proportional to each other. They are the same thing for linear models.