Question

The final velocity v of an object is given by the formula v=u+a∙t , where u...

  1. The final velocity v of an object is given by the formula v=u+a∙t , where u is the initial velocity, a is the acceleration and t is the elapsed time. (use python language to write a program with comments to perform the required tasks)
    1. Calculate and print the final velocity of an object with initial velocity of 15 m/s and acceleration of 2.5 m/s2 after t = 18 seconds.   
    2. If an object starts from rest, how long will it take to reach a final velocity of 100 m/s, if the acceleration is 2.5 m/s2. Display the result rounded to the nearest second.

Homework Answers

Answer #1

CODE

def getFinalVelocity(u, a, t):

return u + a * t

def getTime(u, v, a):

return round((v - u) / a)

v = getFinalVelocity(15, 2.5, 18)

t = getTime(0, 100, 2.5)

print("Final velocity = %f m/s" %v)

print("Time taken = %d seconds" %t)

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
The acceleration of an object (in m/s2) is given by the function a(t)=6sin(t). The initial velocity...
The acceleration of an object (in m/s2) is given by the function a(t)=6sin(t). The initial velocity of the object is v(0)= −1 m/s. Round your answers to four decimal places. a) Find an equation v(t) for the object velocity. v(t)= -6cos(t)+5 b) Find the object's displacement (in meters) from time 0 to time 3. 15-6sin(3) Meters c) Find the total distance traveled by the object from time 0 to time 3. ? Meters Need Help fast, please
An object starts with an initial velocity of -2.00i m/s. The initial position is the origin....
An object starts with an initial velocity of -2.00i m/s. The initial position is the origin. The constant acceleration = 4.10i + 3.20j m/s^2. a.) What is the initial velocity? b.) What is the vector position at t=2.00 seconds? c.) What is the velocity of the object at t=2.00 seconds? d.) What is the speed of the at t=2.00 seconds?
A particle's velocity along the x-axis is described by v(t)= At + Bt2, where t is...
A particle's velocity along the x-axis is described by v(t)= At + Bt2, where t is in seconds, v is in m/s, A= 0.85 m/s2, and B= -0.69 m/s3. Acceleration= -0.53 m/s2 @ t=0 and the Displacement= -2.58 m b/w t=1s to t=3s. What is the distance traveled in meters, by the particle b/w times t=1s and t=3s?
The object starts moving along a straignt line from point A with velocity v(t)=(t-2), where time...
The object starts moving along a straignt line from point A with velocity v(t)=(t-2), where time t is measured in seconds and v(t) in meters per second. A- How far from A is the object going to be 11 seconds from the start? B-What distance is the object going to cover in the first 11 seconds?
An object is first seen at a location <1.0, 5.0> m, traveling with a velocity <3.0,...
An object is first seen at a location <1.0, 5.0> m, traveling with a velocity <3.0, 2.0> m/s. Sometime later the object is traveling with a velocity <5.0, 7.0> m/s. If the average acceleration of the object during this time period is <0.10, 0.25> m/s2, how much time in seconds elapsed between observations?
1. An object moving vertically in free fall has an initial velocity vi m/s, starts at...
1. An object moving vertically in free fall has an initial velocity vi m/s, starts at y=0, and rises to a height of y=h. vi= 27 m/s Positive numbers are in the upward direction, and the object may drop below its initial position. 2. An object moving vertically in free fall has an initial velocity vi m/s, starts at y=0, and rises to y=h in t seconds, reaching a final velocity of vf m/s. Find yf if:vi= 38 m/s t=...
The initial position of an object is x=95 m. The initial velocity is v=24 m/s. Given...
The initial position of an object is x=95 m. The initial velocity is v=24 m/s. Given that acceleration is given by a(t) = -4t +1. What is the maximum value of x and v? At what times do they occur?
2 kg object is measured to move with velocity and acceleration given by the formulas v(t)=A+Bt3,a(t)=3Bt2,...
2 kg object is measured to move with velocity and acceleration given by the formulas v(t)=A+Bt3,a(t)=3Bt2, where the constants A=5 m/s, and B=0.3 m/s4. (a) What is the net force acting on the object as a function of the time variable t? (b) What is the instantaneous power exerted on the object as a function of t? (c) What is the total work done on the object between the times t=0 s and t=3 s?
Hello, I am trying to use python to calculate the terminal velocity of an object falling...
Hello, I am trying to use python to calculate the terminal velocity of an object falling from a height of 3 meters. I have gotten stuck trying to actually calculate the terminal velocity. thanks for the help! Here I have posted the code I have so far. from visual import* myscene = display(range = 10, width = 600, heigth = 600, background = color.blue, title = 'lab 5' ) #display window s = vector(0,3,0) #vector for starting position m =...
An object is thrown vertically upward with initial velocity v(0)=20ft/s. Assume that gravitation is the only...
An object is thrown vertically upward with initial velocity v(0)=20ft/s. Assume that gravitation is the only force acting on the object (gravitational acceleration g=32ft/s). (a) Find the velocity function v(t) (b) If the initial position of the object is s(0)= 50ft, find the position of the function s(t).
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT