What is the simplest curve that fits this data?

gnome
Messages
1,031
Reaction score
1
I have a set of data points relating the width of an object in an image to its distance from the camera. I'd like to find the simplest curve that fits "pretty well". When I graph the points, it looks like a hyperbola would be a good fit. Is there a simple iterative method to find an equation?

The data:
(20, 59)
(30, 44)
(40, 34)
(50, 28)
(60, 24)
(70, 21)
(80, 19)
(90, 17)
(100, 15)
(125, 12)
(150, 10)
(175, 9)
(200, 8)
(225, 7)
(250, 6)
I suppose I could add (0,infinity) to that list. Nothing above x=250 is relevant.
 
Mathematics news on Phys.org
There is no way to generate the functional relationship. You need to "guess" a relationship then attempt to find the characteristic parameters.
 
gnome said:
I have a set of data points relating the width of an object in an image to its distance from the camera. I'd like to find the simplest curve that fits "pretty well". When I graph the points, it looks like a hyperbola would be a good fit. Is there a simple iterative method to find an equation?

Yes theoretically it should be a hyperbola. So take the reciprocal of the second data column and then it should be a straight line.
 
log log plots. as were taught decades ago, but seemingly not anymore...
 
Thanks, uart, that was very helpful.

Matt: I'll put that on my to-do list. ;)
 
It's quite a simple device, really.If you believe that data x_i and y_i are related by something like x^n=k*y^m, then taking logs nlog(x)=log(k)+mlog(y), i.e. their logs should form a straight line graph. You can also try variations if you thought that y^n=k*exp(x), or something similar. You used to be able to buy log-log graph paper to do this. So I'm told - I'm too young to have used this.
 
I quite like y = 957.83 x^{-0.9057} thank you very much :)
 
Gib Z said:
I quite like y = 957.83 x^{-0.9057} thank you very much :)
Or

y = \frac{1000}{0.63 x + 3.65}

It depends on what model you choose to fit.
 
If you wanted something of physical interest you would attempt to find a f such that:

\frac 1 x + \frac 1 y = \frac 1 f

I would guess this relationship since I know about the thin lens formula. That is the trouble with simply fitting data with no thought of the known physical relationships. You can get perfectly good fits which have no physical meaning.
 
  • #10
matt grime said:
log log plots. as were taught decades ago, but seemingly not anymore...

Actually we just did them in my physics I high school course to show Kepler's 3rd using the orbital radius and period of the planets :smile:

But yeah the slope of the log-log graph is the power of the function.

Edit: I got:
y=\frac{957.83}{x^{.90499}}
 
Last edited:

Similar threads

Replies
5
Views
3K
Replies
2
Views
9K
Replies
6
Views
3K
Replies
20
Views
10K
Back
Top