How to Calculate the Bounces of a Bouncy Ball

  • Thread starter Thread starter oobercharge
  • Start date Start date
  • Tags Tags
    Ball
AI Thread Summary
To calculate the height of a bouncy ball's bounce, consider the mass, height, and gravity, but also note that the coefficient of restitution is crucial for accurate results. Without additional factors, a ball will theoretically bounce back to its original height indefinitely. For practical experimentation, users are advised to bounce a ball on a surface and record the maximum height after each bounce to gather data. This method allows for data fitting to refine the calculations. Understanding these principles will aid in developing the code needed for the project.
oobercharge
Messages
1
Reaction score
0
Homework Statement
If I were to say M was mass, H was height, and G was gravity, what equation could I plug those variables into to get how high and how many times a ball would bounce after being dropped.
Relevant Equations
Mass, Gravity, and Height of ball being dropped
For school I'm trying to write some code to calculate the height of how high a ball would bounce given its mass, height, and the gravity of where it was dropped. I know there are more variables to consider, like wind resistance and the surface it was dropped on, but for now I'm trying to keep it simple.
"If I were to say M was mass, H was height, and G was gravity, what equation could I plug those variables into to get how high and how many times a ball would bounce after being dropped."
Sorry if any of this seems unclear, I know almost nothing about physics but I need to figure this out for my computer science class.
 
Physics news on Phys.org
Without additional assumptions the ball will bounce back to its original height indefinitely.
 
Look up coefficient of restitution.
 
Why not get yourself a bouncy ball, bounce it off the floor with some kind of scale behind it and take a video. You can estimate the maximum height after each bounce and then write the code to describe the motion. It's called data fitting. As a @harusex PF user @haruspex suggested, look up coefficient of restitution.
 
Last edited:
kuruman said:
As a @harusex
Something else on your mind?
 
haruspex said:
Something else on your mind?
Oooops, just one of them Freudian slips. :blushing:
 
I multiplied the values first without the error limit. Got 19.38. rounded it off to 2 significant figures since the given data has 2 significant figures. So = 19. For error I used the above formula. It comes out about 1.48. Now my question is. Should I write the answer as 19±1.5 (rounding 1.48 to 2 significant figures) OR should I write it as 19±1. So in short, should the error have same number of significant figures as the mean value or should it have the same number of decimal places as...
Thread 'A cylinder connected to a hanging mass'
Let's declare that for the cylinder, mass = M = 10 kg Radius = R = 4 m For the wall and the floor, Friction coeff = ##\mu## = 0.5 For the hanging mass, mass = m = 11 kg First, we divide the force according to their respective plane (x and y thing, correct me if I'm wrong) and according to which, cylinder or the hanging mass, they're working on. Force on the hanging mass $$mg - T = ma$$ Force(Cylinder) on y $$N_f + f_w - Mg = 0$$ Force(Cylinder) on x $$T + f_f - N_w = Ma$$ There's also...
Back
Top