Interpolation Calculator
Linear & 2D Bilinear Interpolation with StepsPoint 1 (x₁, y₁)
Point 2 (x₂, y₂)
Target Interpolation Point (x)
Interpolate value $f(x,y)$ on a 2D rectangular grid given 4 corner points.
Corner Values f(x, y):
Interpolated Result
Interpolated Value (y)
12.0000
At point x = 5
Step-by-Step Solution:
y = y₁ + [(x − x₁) / (x₂ − x₁)] × (y₂ − y₁)
y = 6 + [(5 − 2) / (8 − 2)] × (18 − 6)
y = 6 + [3 / 6] × 12
y = 6 + 0.5 × 12
y = 6 + 6 = 12.0000