Deriving position from a car's velocity equation.

AI Thread Summary
The discussion revolves around a physics problem involving a car's velocity equation, v = v_0 * e^{-bt}, where v_0 is 20 m/s and b is 0.150 s^{-1}. The participants successfully calculated the car's acceleration at time zero as -3.0 m/s^2. They encountered challenges with displacement and velocity calculations, initially misinterpreting the integration limits and constants. After clarifying the integration process, they correctly determined the displacement at 5 seconds to be 70.6 m and the velocity when displacement is 50 m to be 12.5 m/s. The conversation emphasizes the importance of understanding definite integrals and initial conditions in solving such problems.
ShizukaSm
Messages
85
Reaction score
0

Homework Statement


A driver sees the red light, and instead of braking the car, changes the gear to neutral. Suppose that velocity obeys this equation:
v = v_0 * e^{-bt}
Where v_o = 20 m/s and b = 0.150 s^{-1}

a)Acceleration when time equals 0;(Answer:-3.0 m/s^2)
b)Displacement when t=5.0 s;(Answer:70.6m)
c)Velocity when displacement is 50m.(Answer: 12.5m/s)

Homework Equations


It's possible to solve using only the one supplied by the problem.

The Attempt at a Solution


I can solve letter a, but I fail at letter b and c, so I am going to post only the attempt at those:

b) Displacement is the integral of velocity in t, so, by integrating the velocity I get:
x(t)=\frac{v_o}{-b}*e^{-bt}

and by substituting b = -0.15 and Vo = 20, I get: -62.98m!

c) By using the displacement equation found in letter b), I equal the displacement to 50m, and try to solve for t. I find t = 6.53s.

Then I substitute t=6.53s in the velocity equation, and find that v = 7.50m/s!
 
Physics news on Phys.org
ShizukaSm said:

Homework Statement


A driver sees the red light, and instead of braking the car, changes the gear to neutral. Suppose that velocity obeys this equation:
v = v_0 * e^{-bt}
Where v_o = 20 m/s and b = 0.150 s^{-1}

a)Acceleration when time equals 0;(Answer:-3.0 m/s^2)
b)Displacement when t=5.0 s;(Answer:70.6m)
c)Velocity when displacement is 50m.(Answer: 12.5m/s)

Homework Equations


It's possible to solve using only the one supplied by the problem.


The Attempt at a Solution


I can solve letter a, but I fail at letter b and c, so I am going to post only the attempt at those:

b) Displacement is the integral of velocity in t, so, by integrating the velocity I get:
x(t)=\frac{v_o}{-b}*e^{-bt}

and by substituting b = -0.15 and Vo = 20, I get: -62.98m!
You have a definite integral here, so there are two end points to consider. The time goes from 0s to 5s, so...
c) By using the displacement equation found in letter b), I equal the displacement to 50m, and try to solve for t. I find t = 6.53s.
That time value looks a bit high. Can you show your work?
 
gneill said:
You have a definite integral here, so there are two end points to consider. The time goes from 0s to 5s, so...

That time value looks a bit high. Can you show your work?

About letter b), God that is brilliant! Thanks a lot! I feel stupid, the initial position isn't 0, as I was assuming.

About letter c)
50 = \frac{20}{-0.15}*e^{-0.15t}

-0.375 = e^{-0.15t}

\ln{(-0.375)} = ln{(e)}*-0.15t
At this point I had a doubt, I don't know how to solve Ln(-0.375), so I sort of pretended it was Ln(0.375), I probably shouldn't do this, but what's the alternative?moving on:

\frac{-0.981}{-.15}=t

t=6.5s

Thanks in advance!
 
Okay, regarding (c), the same hint as for part (b) applies. For the displacement you are performing an integration of the velocity function from 0 to some (as yet) undetermined time t. Two end points. So the equation that you will set equal to 50m in order to solve for the time will look a bit different. This should clear up your negative ln() issue, too.
 
gneill said:
Okay, regarding (c), the same hint as for part (b) applies. For the displacement you are performing an integration of the velocity function from 0 to some (as yet) undetermined time t. Two end points. So the equation that you will set equal to 50m in order to solve for the time will look a bit different. This should clear up your negative ln() issue, too.

Ohh! I GOT IT! I had a conceptual problem. I always thought that:
x(t) = \int v(t) dt
and that the constant generated in the indefinite integral would be Xo. However, this is not quite right, in fact:
x(t) =x_o + \int_{0}^{t} v(t) dt

This never generated any problems because most equations I studied didn't use time in an exponential, but now I finally understood my mistake.

Using the correct assumption now, I found t = 3.13s and velocity 12.5 m/s (both correct)

Thanks a lot gneill!
 
Last edited:
You're thinking along the right lines, but you haven't quite nailed it :smile:

When you integrate a velocity function with respect to time to yield a position function with respect to time, the constant associated with the integration (for an indefinite integration!) turns out to be the factor that's due to the initial velocity multiplied by time (vot) plus any initial offset. By performing a definite integral though, you don't have to worry about the initial velocity because it's taken into account by the initial limit of the integral; only the initial offset is needs to be accounted for. In this problem, the initial offset is zero, so it doesn't appear.

Anyways, well done on obtaining the correct results. Good luck in your studies.
 
gneill said:
You're thinking along the right lines, but you haven't quite nailed it :smile:

When you integrate a velocity function with respect to time to yield a position function with respect to time, the constant associated with the integration (for an indefinite integration!) turns out to be the factor that's due to the initial velocity multiplied by time (vot) plus any initial offset. By performing a definite integral though, you don't have to worry about the initial velocity because it's taken into account by the initial limit of the integral; only the initial offset is needs to be accounted for. In this problem, the initial offset is zero, so it doesn't appear.

Anyways, well done on obtaining the correct results. Good luck in your studies.

Aha! I tried making sense of what you just said, and decided to try and do it by an indefinite integral to see if I understood it now, look at what I came up with:
<br /> x(t)=\int v_0e^{-bt} dt \\<br /> x(t) = \frac{V_0}{-b}e^{-bt} + C\\<br /> x(t)-x(0) = (\frac{V_0}{-b}e^{-bt} + C) - (\frac{V_0}{-b}e^{0} + C))\\<br /> \bigtriangleup X = (\frac{-V_0}{b}e^{-bt} + \frac{V_0}{b})<br />

Which, in fact gave me the same results as before, is this correct?

Thanks again!
 
ShizukaSm said:
Aha! I tried making sense of what you just said, and decided to try and do it by an indefinite integral to see if I understood it now, look at what I came up with:
<br /> x(t)=\int v_0e^{-bt} dt \\<br /> x(t) = \frac{V_0}{-b}e^{-bt} + C\\<br /> x(t)-x(0) = (\frac{V_0}{-b}e^{-bt} + C) - (\frac{V_0}{-b}e^{0} + C))\\<br /> \bigtriangleup X = (\frac{-V_0}{b}e^{-bt} + \frac{V_0}{b})<br />

Which, in fact gave me the same results as before, is this correct?

Thanks again!

Yes, that achieves the same result as evaluating the definite integral.
 
Back
Top