Language: Python
Create a program that determines how quickly an object is
traveling when it hits the ground. The user will enter the height
from which the object is dropped in meters (m). Because the object
is dropped its initial speed is 0m/s. Assume that the acceleration
due to gravity is 9.8m/s. You can use the formula
vf =v^2i + 2ad to compute the final speed, vf, acceleration, a, and
distance, d, are known.
The answer to the given question is shown below.....
Type this command in the terminal to check if it's correct or not....
#Program start
from math import sqrt
#Defining the constant
GRAVITY = 9.8
#Read the input from user for calculation
height = float(input("Height from which object is dropped (in meters): "))
#Calculate the velocity of fall
velocity = sqrt(2 * GRAVITY * height)
#Display the result of velocity
print("Object will hit the ground at %.2f m/s." % velocity)
Language: Python Create a program that determines how quickly an object is traveling when it hits...
An arrow is shot at an angle of ?=45? above the horizontal. The arrow hits a tree a horizontal distance D=220m away, at the same height above the ground as it was shot. Use g=9.8m/s2 for the magnitude of the acceleration due to gravity. Suppose someone drops an apple from a vertical distance of 6.0 meters, directly above the point where the arrow hits the tree. How long after the arrow was shot should the apple be dropped, in order...
PYTHON HOMEWORK When an object is falling because of gravity, the following formula can be used ot determine the distance the object falls during a specific time period: d=1/2 g t^2 The variables in the formula are as follows: d is the distance in meters(m), g is the acceleration due to gravity, an and its value is 9.8 m/s^2, t is the time duration in seconds(s). Write a function named falling_distance() that accepts an object's falling duration(time) in seconds as...
An object is dropped from the top of a building. It hits the
ground with a speed of 40 m/s.
a) How high is the building?
b) How long was the object in the air?
Kinematics (motion in a straight line with constant acceleration): xo+ vot +at2 vvo + at v2 v+2a(x -x.) dx dv 12 = a= dt dt Kinematics (motion in a straight line with no-constant acceleration): C. a dt v dt v= Vo t o x xo...
Question 2 A car is traveling to the left at 20 m/s and it is accelerating to the left at a constant rate. After 5 seconds of time, the car is traveling to the right at 5 m/s. a. What is the acceleration of the car? b. How far does the car travel over the 5 seconds? Question 3 A stone is thrown upward. When the stone is traveling downward with a speed that is twice that of the initial...
A car traveling at 35 mi/h crashes into a tree. The front end of the car compresses and the driver comes to rest after traveling 0.75 m. What was the magnitude of the average acceleration of the driver during the collision? Express your answer in terms of "gs", where 1g 9.80 m/s. Determine the time interval of the collision, in milliseconds. 6. The tower of Pisa is 54.5 m tall. Assuming that Galileo dropped his object from rest from the...
Review An arrow is shot at an angle of -15 above the horizontal The arrow hits a tree a horizontal distance D 220 m away, of the same height above the ground as it was shot Use 9 9.8 m/s for the magnitude of the acceleration due to gravity Find to the time that the arrow spends in the ar Answer numerically in seconds, to two significant figures. View Available Hints) V AED + O2 ? Submit Suppose someone drops...
→XCIO D Question 11 7.5 pts An object moves in the x direction only under a constant acceleration. It's acceleration is 3 m/s in the *x direction. It is originally moving at 14 m/s in the direction. How long does it take in seconds, to travel a displacement of 22 m in the ex direction? Hint: Find the velocity at this displacement similar to the last question, first. Question 12 7.5 pts Car 1 is at rest at a traffic...
(Figure 1)A relief airplane is delivering a food package to a group of people stranded on a very small island. The island is too small for the plane to land on, and the only way to deliver the package is by dropping it. The airplane flies horizontally with constant speed of 352 km/hour at an altitude of 625 m . The positive x and y directions are defined in the figure. For all parts, assume that the "island" refers to...
1) A 3.00 g bullet traveling horizontally at 400 m/s hits a 3.00 kg wooden block which is initially at rest on a smooth horizontal table. The bullet buries itself in the block without passing through. The speed of the block after the collision is a) 0.4 m/s. b) 1.2 m/s. c) 2.0 m/s. d) 2.8 m/s. e) 3.6 m/s. 2) What type of collision was seen in the previous problem? a) elastic collision b) inelastic collision c) perfectly elastic...
1. A car accelerates from zero to 105 km/h in 5.21 s. What is its average acceleration in km/h/s and m/s? 2. An object moving in the x-direction has a position described by the function x(t) - 6.30t + 8.70t2, where t is in seconds and x is in meters. What is the acceleration as a function of time? The figure shows the graph of v vs t for the motion of a motorcyle that starts from rest and moves...