4
$\begingroup$

I have 4 data points, from which I want to calculate a hyperbola. It seems that the Excel trendline feature can't do it for me, so how do I find the relationship?

The points are: (x,y)

(3, 0.008) (6, 0,006) (10, 0.003) (13, 0.002)

Thanks!

  • 0
    With this data, a straight line is in fact a far closer fit in terms of the sum of squares of residuals.2011-05-10

2 Answers 2

5

A hyperbola takes the form $y = k \frac{1}{x}$. This may be difficult to deal with. So instead, let's consider the reciprocals of our x values as J.M. suggested. For example, instead of looking at $(2.5, 0.007713)$, we consider $(\frac{1}{2.5}, 0.007713)$. Then since we have flipped all of our x values, we are looking to fit something of the form $y = k \dfrac{1}{ \frac{1}{x} } = k x$. This can be accomplished by doing any standard linear regression technique.

This is just an extension of J.M.'s comment.