Physics
Physics 204A Set 6, due 3/2/15
1. Review Problem: Two stone blocks with mass m = 100 kg are stacked as shown in figure 1 on a stone surface. The top block is held in place by a chain and cannot move to the right. The coe�cient of static friction between the blocks, and between the lower block and the surface, is µ
s
= 0.6. What is the minimum force F necessary to begin sliding the lower block out from under the stack?
F
M
M
Figure 1: Two stone blocks
2. A child of mass m = 20 kg goes down a slide at a playground. She starts at a height h = 2.2 m with zero velocity. Assuming zero friction, how fast will she be going at the bottom?
3. When you do the experiment in the previous problem, you measure the child’s final speed to be 1.8 m/s, which is lower than the answer you might expect. Explain where the “missing” energy went, describe the other force that did work on the child, and calculate how much work that force did.
4. A “normal” spring has a force equation given by Hooke’s law: F s
= �kx. This is known as a “linear” spring, for reasons that are obvious if you look at the equation long enough. It’s quite possible to build a “non-linear” spring: they’re useful in things such as the suspensions on racing motorcycles, for example.
F
s
= �k1x � k2x3
The normal linear spring force is conservative, so it has a potential function U s
(x) = 12kx 2.
Is the nonlinear spring conservative, and if so, what is its potential function?
5. A cyclist (mass m) is racing around a flat circular track of radius r at constant speed v.
(a) Frictional force between the track and the bike tires provides the centripetal force nec- essary to go in a circle. How much work is done by friction in exactly half a lap?
(b) If the cyclist stops in exactly half a lap, how much work is done by friction during the stop?
1
6. The Bugatti Veyron is —let’s just admit it— ridiculous. Never mind “Zero to Sixty” time: this car can go from zero to one hundred and fifty miles per hour in just 9.8 seconds. And that’s despite a mass of 1900 kg!
(a) Review: What is its average acceleration during a 0-150 drag run?
(b) Not review: What is its average power during a 0-150 drag run?
7. One problem Tarzan had to deal with while swinging on vines is that vines grow on trees. He started swinging one one such vine (L = 14 m) with an initial angle of ✓
i
= �20�, measured from vertical. When he reached an angle ✓
f
= +4�, he met a tree face-first. How fast was he going? Assume that Tarzan’s mass was 80 kg.
8. One area of human endeavor that would seem to require a thorough understanding of conserva- tion of energy is bungie jumping. You have a bungie cord with a spring constant k = 700 N/m and an unstretched length L
o
= 40 m. Your mass is (for this problem) m = 70 kg. How high a bridge do you need?
Hint: Use conservation of mechanical energy, obviously, but remember that although you gain kinetic energy for much of the way down, and you lose gravitational potential energy all the way down, you only gain spring potential energy after you have fallen a distance L
o
.
9. The mass in a spring / mass system is displaced by a distance x o
.
(a) Calculate the work done by the spring in bringing the mass back to x = 0.
(b) Find the maximum speed for this system, using techniques from the previous homework set. (Simple Harmonic Motion! x = x
o
cos !t, etc.) Using this maximum speed, calculate the maximum kinetic energy, and compare with part (a).
10. Use Python to plot a graph of position v. time for a ping-pong ball in free-fall. It’s time for real physics now; we will not assume air resistance is zero! For “reasonable” speeds, drag force in air is1
F
d
= � 1
2 C⇢Av
2
C is the drag coe�cient which depends on the shape of the object, ⇢ is the density of the air, and A is the cross-sectional area of the object. Let’s simplify and combine all those constants into one number:
F
d
= ��v2
where � = 2.2 ⇥ 10�4 Ns 2
m
2 . Since the drag force Fd depends on speed v, the acceleration of a dropped ping-pong ball is not constant. We can still use Euler’s method, though. In fact, we could use the same code as was presented last week in Python Problem #4; we’d just have to replace the acceleration a = g in the line v = v � g ⇤ dt with the new acceleration
a =
✓ g �
�
m
v
2
◆
where m = 0.0025 kg is the mass of a ping-pong ball.
So do it! For this problem turn in a graph showing position v. time for a ping-pong ball dropped from an initial height of 10 m, for the first two seconds of the ball’s motion. Show the constant-acceleration approximation on the same graph, and put your name in the title.
1 This actually depends on the range of speeds involved. It doesn’t work quite right for very low speeds, or work at
all when the speed approaches the speed of sound! But for a ping-pong boll it works well for speeds less than about
30 m/s.
2