GSO001 Problem 9
Problem Statement
Friction Between Two Objects and Relative Motion
Problem Statement
A sufficiently long board A of mass M is placed on a smooth horizontal floor. A small object B of mass m is placed near the right end of board A.
There is friction between the contact surfaces of A and B. Let μ be the coefficient of static friction and μ′ be the coefficient of kinetic friction between them. Let the magnitude of gravitational acceleration be g.
At time t, both A and B are at rest. Then, a constant horizontal force F is applied to board A in the rightward direction.
When force F satisfies a certain condition, object B slides on board A.
Find the distance L that object B slides relative to board A from time t to t=t1. Assume object B does not fall off board A during time t1.
Constraints
- M=3.0 kg
- m=2.0 kg
- μ=0.50
- μ′=0.30
- F=30 N
- g=9.8 m/s2
- t1=10 s
Input Format
Find the distance L that object B slides relative to board A in m (meters) and give the answer as a positive integer.
Solution
First, determine whether object B slides relative to board A.
Assuming A and B move together as one unit, let the common acceleration be a0. The equation of motion for the system:
(M+m)a0=FThe only force accelerating object B is the static friction force f from A:
ma0=fFor B not to slide on A, this static friction f must not exceed the maximum static friction μmg:
f≤μmg⟹ma0≤μmg⟹a0≤μgThe maximum force F0 for A and B to move together:
F0=(M+m)μgSubstituting numerical values:
F0=(3.0+2.0)×0.50×9.8=24.5 NSince the applied force F=30 N>F0, the maximum static friction is exceeded, so object B slides on board A.
Next, find the accelerations of A and B while sliding. Let aA and aB be the rightward accelerations of A and B respectively:
A:MaA=F−μ′mgB:maB=μ′mgComputing the accelerations:
aBaA=μ′g=0.30×9.8=2.94 m/s2=MF−μ′mg=3.030−0.30×2.0×9.8=8.04 m/s2The relative acceleration of B with respect to A:
arel=8.04−2.94=5.10 m/s2The distance L that B slides relative to A up to time t=t1, using the formula for uniform acceleration from rest:
L=21arelt12=21×5.10×(10)2=255 mTherefore, the answer is 255.
[Alternative: Using the inertial force method for a fast solution]
From the perspective of an observer on board A (non-inertial frame), the relative acceleration α of B can be found directly:
mα=maA−μ′mgSubstituting aA:
α=MF−μ′(M+m)g=3.030−0.30×(3.0+2.0)×9.8=3.030−14.7=5.10 m/s2Then L=21αt12=255 m.