0% found this document useful (0 votes)
32 views

Knownx Knowny 1 1 2.5 2 2 3 2 4 1

This document contains a table with known x- and y-values and uses an interpolation formula to predict a new y-value for a given new x-value. It finds the two closest known x-values and uses the slope between their y-values to interpolate the new y-value. For a new x-value of 3.5, it predicts a new y-value of 1.5 using linear interpolation between the two nearest known x-y pairs.

Uploaded by

bendel_boy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views

Knownx Knowny 1 1 2.5 2 2 3 2 4 1

This document contains a table with known x- and y-values and uses an interpolation formula to predict a new y-value for a given new x-value. It finds the two closest known x-values and uses the slope between their y-values to interpolate the new y-value. For a new x-value of 3.5, it predicts a new y-value of 1.5 using linear interpolation between the two nearest known x-y pairs.

Uploaded by

bendel_boy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 2

knownX knownY

1 1 2.5
2 2
3 2
4 1

newX 3.5
newY 1.5 <- interpolation formula

=FORECAST(newX,OFFSET(knownY,MATCH(newX,knownX,1)-1,0,2), OFFSET(knownX,MATCH(newX,knownX,1)-1,

knownY
2.5

1.5 knownY

0.5

0
0.5 1 1.5 2 2.5 3 3.5 4 4.5
,MATCH(newX,knownX,1)-1,0,2))

You might also like