Practice Overfitting (Intuition) in Math
Use these practice problems to test your method after reviewing the concept explanation and worked examples.
Quick Recap
Overfitting occurs when a model learns the noise in training data instead of just the underlying pattern, performing well on training data but poorly on new data.
The model memorized the training data instead of learning the underlying pattern.
Example 1
mediumA model fits 10 data points with a degree-9 polynomial (perfect fit, R^2=1). A simpler linear model has R^2=0.85. Explain which model is better for prediction and why.
Example 2
hardA machine learning model is trained on 1000 observations with 50 predictors. Training error is near zero; test error on 200 held-out observations is very high. Diagnose the problem and suggest two remedies.
Example 3
easyA student memorizes all 500 practice problems but performs poorly on the exam, which has new problems. How does this analogy illustrate overfitting?
Example 4
hardExplain the bias-variance tradeoff: how does increasing model complexity affect bias and variance, and where is the optimal model?