Prediction Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

hard
Why is extrapolation (predicting outside the observed range) dangerous? Give an example where extrapolating from a linear model would give a clearly unreasonable prediction.

Solution

  1. 1
    Extrapolation danger: the linear relationship may only hold within the observed range; outside that range, the true relationship may be curved or have a different slope
  2. 2
    Example: a model predicts height from age 5โ€“15 as h^=5(age)+40\hat{h} = 5(age) + 40 cm
  3. 3
    Extrapolating to age 50: h^=5(50)+40=290\hat{h} = 5(50) + 40 = 290 cm (nearly 10 feet!) โ€” clearly impossible
  4. 4
    The linear model only applies to the range [5,15][5, 15] years; the relationship flattens after growth stops

Answer

Extrapolation produces unreliable predictions; example: predicting adult height using a child growth linear model gives absurd results.
Extrapolation assumes the model extends beyond its valid range โ€” an assumption that is often false. Always restrict predictions to the range of observed data and use domain knowledge to evaluate whether extrapolated predictions make sense.

About Prediction

A prediction is a model-based estimate of an unknown or future value, accompanied by a measure of confidence or uncertainty.

Learn more about Prediction โ†’

More Prediction Examples