If the points are connected linearly with no smoothing, would not f(x) at x =
1.56 be equal to 7.18.
This is based on the interpolation formula:
(where x[1], y[1] are the known values immediately preceding the
interpolation; x[2], y[2] are the known values immediately following the
interpolation; x, y are the values at the point of the interpolation)
Starting with the interpolation formula:
y - y[1] x - x[1]
----------- = ------------
y[2] - y [1] y - y[1]
From which we get:
y = (x - x[1])(y[2] - y[1])
----------------------------- + y[1]
x[2] - x[1]
Substituting in the values for x = 1.56 we have
(1.56 - 1)(8.5 - 5.5)
y = ----------------------- + 5.5 = 7.18
2 - 1