GSO001 Problem 5
Problem Statement
Maximum Height Reached After Two Successive Bounces
Problem Statement
Let the y-axis point vertically upward, with the floor at y=0. At time t, a small ball of mass m is released from rest at height y=H and falls freely. The ball hits the floor and bounces up, reaches its highest point, falls again, and makes a second collision with the floor.
Let the coefficient of restitution (bounce coefficient) between the floor and the ball be e. Ignore air resistance and the size of the ball. Let the magnitude of gravitational acceleration be g.
Find the height h2 reached by the ball after the second collision.
Constraints
- Initial height: H=100 m
- Coefficient of restitution: e=0.5
- Magnitude of gravitational acceleration: g=9.8 m/s2
Input Format
Find the value of h2 and give the answer as a positive integer equal to h2 multiplied by 100.
Solution
This is a standard problem combining the definition of the coefficient of restitution with conservation of energy for free fall and upward projection.
1. Velocity Just Before the First Collision
The speed v1 just before the ball falling from height H hits the floor, by conservation of mechanical energy:
mgH=21mv12⟹v1=2gH2. Velocity Just After the First Collision and Height Reached
By the definition of the coefficient of restitution e, the speed just after hitting the floor v1′ (taking upward as positive) is:
v1′=ev1=e2gHThe height h1 reached by the ball with this upward speed:
21m(v1′)2=mgh1⟹h1=2g(ev1)2=2ge2⋅2gH=e2H3. Velocity Just After the Second Collision and Height Reached
Similarly, letting v2 be the speed just before the second collision and v2′ be the speed just after:
v2=2gh1=2ge2H=e2gH v2′=ev2=e22gHThe height h2 reached after this collision:
h2=2g(v2′)2=2g(e22gH)2=2ge4⋅2gH=e4H4. Numerical Calculation
Substituting the given values:
h2=(0.5)4×100=0.0625×100=6.25 mThe required answer is this value multiplied by 100:
6.25×100=625Answer: 625