A bead of mass 1 kg is confined to a smooth wire in the shape of the curve y = x 2 . Gravity is 1 0 m/s 2 in the negative y direction.
At time t = 0 , the bead is at x = 0 with a speed of 5 m/s .
Let F W be the force exerted by the wire on the bead, with ∣ F W ∣ being its magnitude. Let t f be the first time at which the bead's speed is zero.
Determine the following integral:
∫ 0 t f ∣ F W ∣ d t
Note: Assume that ∣ F W ∣ varies over time
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I entered 8.61 but must have had a rounding error. :(
One sign error in my sol and got ans as two third of actual ans
First I tried analytically, here's about how far I got:
Because of the shape and using dot notation for time derivatives, we have y = x 2 y ˙ = 2 x x ˙
Because of conservation of energy E = E k i n + E p o t = 2 1 m ( x ˙ 2 + y ˙ 2 ) + m g y and the initial condition ( x = 0 , y = 0 , x ˙ = 5 , y ˙ = 0 ) we have (putting m = 1 and g = 1 0 ): x ˙ 2 + y ˙ 2 + 2 0 y = 2 5 At t f , when x ˙ = y ˙ = 0 , we have y f = 4 5 and x f = 2 1 5 .
Combining the above equations, we arrive at the differential equation ( 1 + 4 x 2 ) x ˙ 2 + 2 0 x 2 − 2 5 = 0 or, maybe simpler: ( 4 1 + y ) y ˙ 2 + 2 0 y 2 − 2 5 y = 0
Differentiating the expression for y ˙ once again: y ¨ = 2 ( x ˙ 2 + x x ¨ ) and using Newton's law, we can write y ¨ = F y / m − g from which follows (putting m = 1 and g = 1 0 ): F y = 1 0 + 2 ( x ˙ 2 + x x ¨ ) Because the wire is smooth, the force is just the normal force, which is perpendicular to the curve, so that F x / F y = − d y / d x = − 2 x and F x = − 2 x F y F x 2 + F y 2 = ( 4 x 2 + 1 ) F y 2 ∣ F w ∣ = F x 2 + F y 2 = 4 x 2 + 1 ( 1 0 + 2 ( x ˙ 2 + x ¨ ) )
We want ∫ 0 t f ∣ F w ∣ d t = ∫ 0 2 1 5 x ˙ ∣ F w ∣ d x
At this point I saw no way to do the differential equation and integral, so I resorted to programming, (which in effect is a numerical integration). I used some of the results above (also for checking the sanity of the output). The last lines of the output are shown below the code.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|
The last lines of the output were:
1 2 |
|
Problem Loading...
Note Loading...
Set Loading...
Apologies for the messy solution. The solution also has a few step jumps (steps that I find trivial). I find myself feeling lazy to type it out in a Latex format right now.
It is a very nice problem! As always, I welcome feedback and comments on the solution.