A linear model predicts with
where each is the column of feature 's values across the whole dataset — so each is a vector in , and is the vector of the model's three predictions.
The dataset has three rows and four features:
| Row | ||||
|---|---|---|---|---|
| 1 | ||||
| 2 | ||||
| 3 |
Training returned the weight vector
The four feature columns are not independent: they span only a -dimensional subspace of , and is a basis of that subspace. Because of this, the trained weights are not the only ones that produce these predictions — there is a unique pair with
holding as an equality of vectors, so the two-feature model reproduces the four-feature model's prediction on every row.
Report the length of that reduced weight vector,
rounded to 2 decimal places.