▸Interpolation (inside range)
- At x = 5, the estimated y-value is 10.
- This is interpolation: your x falls between the two known data points, so the estimate is reliable as long as the relationship is roughly linear in that range.
- The slope is positive (2), so y increases as x increases.
Next stepIf you have more than two data points, consider using a least-squares regression or spline interpolation for a more accurate fit.