FullCalculator

Interpolation Calculator

Linear Interpolation

Formula

y = y₁ + (x - x₁) × (y₂ - y₁) / (x₂ - x₁)

Frequently Asked Questions

What is linear interpolation?
Linear interpolation estimates a value between two known data points by assuming a straight line between them. Given points (x₁, y₁) and (x₂, y₂), the value at x is: y = y₁ + (x - x₁)(y₂ - y₁)/(x₂ - x₁). When x falls outside the known range, it becomes extrapolation.

You may also need