Pseudopod
- 34
- 0
I was collecting data for a simple physics lab today when I stumbled upon a question I couldn't answer.
Very basically, the lab consisted of measuring the time it takes a ball to drop a variety of distances, between 0 and 100cm. By plotting \frac{y}{t} vs. t (where y is height and t is time) and running a LSQ fit, you can find the value of g. I want to take data at 20 different heights between 0cm and 100cm.
<br /> y = V_0t + \frac{1}{2} gt^2 <br />
so g is going to be proportional to u = \frac{y}{t^2} where u is \frac{1}{2}g.
Running error propagation:
<br /> du^2 = (\frac{\partial u}{\partial y})^2 dy^2 + (\frac{\partial u}{\partial t})^2 dt^2 <br />
<br /> (\frac{\partial u}{\partial y}) = \frac{1}{t^2}, and (\frac{\partial u}{\partial t}) = \frac{2y}{t} <br />
So obviously of my 20 heights I should take more data down low and less data up high, because the longer the ball is falling, the less the error becomes, whereas the error in y is constant regardless of height.
Now my question is this: ideally, how should I space the 20 heights at which I will take data? What I'm basically asking is how to analytically solve for constant du when the range and number of data points to be taken is given.
Very basically, the lab consisted of measuring the time it takes a ball to drop a variety of distances, between 0 and 100cm. By plotting \frac{y}{t} vs. t (where y is height and t is time) and running a LSQ fit, you can find the value of g. I want to take data at 20 different heights between 0cm and 100cm.
<br /> y = V_0t + \frac{1}{2} gt^2 <br />
so g is going to be proportional to u = \frac{y}{t^2} where u is \frac{1}{2}g.
Running error propagation:
<br /> du^2 = (\frac{\partial u}{\partial y})^2 dy^2 + (\frac{\partial u}{\partial t})^2 dt^2 <br />
<br /> (\frac{\partial u}{\partial y}) = \frac{1}{t^2}, and (\frac{\partial u}{\partial t}) = \frac{2y}{t} <br />
So obviously of my 20 heights I should take more data down low and less data up high, because the longer the ball is falling, the less the error becomes, whereas the error in y is constant regardless of height.
Now my question is this: ideally, how should I space the 20 heights at which I will take data? What I'm basically asking is how to analytically solve for constant du when the range and number of data points to be taken is given.