Linear Interpolation Calculator
Find a value between two known points using linear interpolation formula.
Last updated: 2/3/2026
Linear interpolation allows you to estimate a value within two known values in a sequence. It assumes a straight line relationship between the points.
Calculator Inputs
Results
Enter values above to see your results
How It Works
Enter two coordinate points (x₁, y₁) and (x₂, y₂). Enter a target x value to calculate its corresponding y value based on the slope between the points.
Worked Examples
Interpolate between (0, 0) and (10, 100) at x=5
Slope:
(100 - 0) / (10 - 0)= 10Apply Formula:
0 + (5 - 0) * 10= 50Tips & Best Practices
- •If target x is outside the range of x₁ and x₂, this is technically "extrapolation" but the formula works the same.
- •Useful for estimating data between rows in a table.
Frequently Asked Questions
What is the interpolation formula?
y = y₁ + (x - x₁) * ((y₂ - y₁) / (x₂ - x₁))
Related Calculators
Factorial Calculator
Calculate the factorial of a number (n!). Supports large numbers.
5 seconds
Absolute Value Calculator
Find the absolute value (magnitude) of any number. |x|
5 seconds
Cube Root Calculator
Calculate the cube root of any number (∛x).
5 seconds
Percentage Calculator
Calculate percentages, percentage of a number, percentage increase/decrease, and more
30 seconds