Linear Interpolation

X Coordinates

Y Coordinates

Value to interpolate

RESULT

For X = 37, Y = 4.400

Equation : Y = Y₁ + (X - X₁) × (Y₂ - Y₁) / (X₂ - X₁)

How it works

Linear interpolation is a mathematical method that estimates a value between two known points using a straight line.

Point 1
(30, 3)
Point 2
(40, 5)
Interpolated result
(37, 4.400)

Share this tool