qu.1.topic=Ch 5, Sec 1 - Newton's Second Law of Motion@
qu.1.1.mode=Randomized Formula@
qu.1.1.editing=useHTML@
qu.1.1.name=Decelerating Car@
qu.1.1.question=You are traveling in a car at $v mi/h. At some point you see an obstacle ahead and start braking until the car comes to a stop. Find the decelerating force exerted on the car by the brakes if the mass of the car is $m tons and your stopping distance is $d m. (Assume the deceleration is constant and there is no deceleration due to friction).@
qu.1.1.answer=$ans N (1 ? 0.05)@
qu.1.1.random=
$v\=rand(50,75,3);
$m\=rand(0.8,1.5,3);
$d\=rand(45,70,3);
$ans/=sig(3,$m*1000*($v*1.6/3.6)^2/(2*$d))@
qu.1.1.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.1.comment=
First you must solve for the acceleration of the car using the equation for constant acceleration. The problem gives v0, v, and x, so you can use the following equation to solve for a: v2 = v02 + 2ax. Once you have acceleration, simply substitute the appropriate values into the equation ΣF = ma. Note that mass m, must be in kg.@
qu.1.2.mode=Randomized Formula@
qu.1.2.editing=useHTML@
qu.1.2.name=Get up to Speed@
qu.1.2.question=A constant force of $f N acts on a $m-kg $body. If the $body starts from rest, how much time will it take the $body to get up to speed of $v m/s?@
qu.1.2.answer=$ans s (1 ? 0.05)@
qu.1.2.random=
$f\=rand(30,300,3);
$m\=rand(10,50,3);
$body\=switch(rint(2),"body","object");
$v\=rand(2,15,3);
$ans\=sig(3,$m*$v/$f)@
qu.1.2.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.2.comment=
First you must solve for the acceleration of the $body using Newton's second law of motion a = ΣF / m. Then, you know a, v0, and v, so you can use the following equation to solve for t: v = v0 + at.@
qu.1.3.mode=Randomized Formula@
qu.1.3.editing=useHTML@
qu.1.3.name=Zero Acceleration@
qu.1.3.question=A particle is moving with zero acceleration while forces F1 and F2 are acting on it. If F1 = ($i N) i + ($j N) j, what must be the magnitude of F2?@
qu.1.3.answer=$ans N (1 ? 0.05)@
qu.1.3.random=
$i\=rand(5,50,3);
$j\=rand(10,30,3);
$ans\=sig(3,(($i)^2+($j)^2)^0.5)@
qu.1.3.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.3.hint.2=If acceleration is zero, consider what ΣF must be in order to make the equation ΣF = ma true.@
qu.1.3.comment=
1. If acceleration is zero, consider what ΣF must be in order to make the equation ΣF = ma true.
2. If the acceleration of a particle is zero, the net force acting on that particle must also be zero; thus, the forces F1 and F2 must sum to zero. So, the magnitude of F2 must be equal to that of F1, but they must be pointing in opposite directions. Thus, use the Pythagorean theorem to find the magnitude of F1 from its components, and this must also be the magnitude of F2.@
qu.1.4.mode=Randomized Formula@
qu.1.4.editing=useHTML@
qu.1.4.name=Free Particle@
qu.1.4.question=A free particle that has a mass of $m × 10 - $mpower kg is initially at rest. At some point it is accelerated by a force. After the particle travels $d m, it has a speed of $v × 10$power m/s. What is the magnitude of the accelerating force?@
qu.1.4.answer=$ans N (1 ? 0.05)@
qu.1.4.random=
$mpower1\=switch(rint(9),23,24,25,26,27,28,29,30,31);
$mpower\=int($mpower1);
$m\=rand(1.1,9.9,3);
$mass\=$m*10^(-$mpower);
$d\=rand(15,50,3);
$v\=rand(1.1,9.9,3);
$power1\=switch(rint(6),2,3,4,5,6,7);
$power\=int($power1);
$speed\=$v*10^$power;
$ans\=sig(3,$mass*($speed)^2/(2*$d))@
qu.1.4.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.4.comment=
In order to calculate the accelerating force, you must first find the acceleration of the particle. The problem gives values of v0, x, and v, so you can use the following equation to solve for acceleration, a: v2 = v02 + 2ax. Once you know the acceleration, you can substitute the appropriate values into the equation ΣF = ma to find the magnitude of the accelerating force.@
qu.1.5.mode=Randomized Formula@
qu.1.5.editing=useHTML@
qu.1.5.name=Plow Through Snow@
qu.1.5.question=A driver in a $m-kg $vehicle attempting to get through a snowdrift approaches it at a speed of $v mi / h. The $vehicle plows through $d m of snow before coming to a complete stop. What is the magnitude of the force exerted on the $vehicle by the snow?@
qu.1.5.answer=$ans N (1 ? 0.05)@
qu.1.5.random=
$vehicle\=switch(rint(3),"vehicle","car","truck");
$m\=rand(900,1500,3);
$v\=rand(35,55,3);
$d\=rand(10,50,3);
$ans\=sig(3,$m*($v*1.6/3.6)^2/(2*$d))@
qu.1.5.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.5.comment=In order to calculate the force exerted by the snow, you must first obtain deceleration of the vehicle. The problem gives values for v, v0, and x, so you can use the following equation to solve for acceleration, a: v2 = v02 + 2ax. Once you know the acceleration, you can substitute the appropriate values into the equation ΣF = ma to find the magnitude of the force exerted by the snow.@
qu.1.6.mode=Randomized Formula@
qu.1.6.editing=useHTML@
qu.1.6.name=Shopping Cart@
qu.1.6.question=A $m-kg shopping cart is moving with constant velocity in the absence of friction. At some point in time it reaches a $deg° incline. Find the decelerating force that acts on the cart while it is moving up the incline.@
qu.1.6.answer=$ans N (1 ? 0.05)@
qu.1.6.random=
$m\=rand(10,25,3);
$deg\=rand(5,25,3);
$ans\=sig(3,$m*9.8*sin($deg*3.142/180))@
qu.1.6.hint.1=The only forces acting on the shopping cart are gravitational force and the normal force (the force exerted by the ground on the cart). Remember that only forces applied in the direction opposite to the direction of motion cause deceleration.@
qu.1.6.comment=
1. The only forces acting on the shopping cart are gravitational force and the normal force (the force exerted by the ground on the cart). Remember that only forces applied in the direction opposite to the direction of motion cause deceleration.
2. If you place the x-axis of the coordinate system along the incline, you will see that the only force causing deceleration of the cart (the only force pointing opposite to the direction of motion) is the horizontal component of the gravitational force. Using trigonometric functions, you can solve for the magnitude of this force: F = mg×sin θ.@
qu.1.7.mode=Randomized Formula@
qu.1.7.editing=useHTML@
qu.1.7.name=Shopping Cart 1@
qu.1.7.question=A shopping cart is moving with constant velocity of $v m/s in the absence of friction. At some point in time it reaches a $deg° incline. Counting from the bottom of the incline, what distance does the cart travel up the incline before it momentarily comes to a stop?@
qu.1.7.answer=$ans m (1 ? 0.05)@
qu.1.7.random=
$deg\=rand(5,25,3);
$v\=rand(3,7,3);
$ans\=sig(3,(($v)^2)/(2*9.8*sin($deg*3.142/180)))@
qu.1.7.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.7.hint.2=The only forces acting on the shopping cart are gravitational force and the normal force (the force exerted by the ground on the cart). Remember that only forces applied in the direction opposite to the direction of motion cause deceleration.@
qu.1.7.hint.3=First you must know the magnitude of the decelerating force in order to find the magnitude of deceleration. This will then allow you to find the distance the cart will travel before it momentarily comes to a stop.@
qu.1.7.comment=
1. The only forces acting on the shopping cart are gravitational force and the normal force (the force exerted by the ground on the cart). Remember that only forces applied in the direction opposite to the direction of motion cause deceleration.
2. First you must know the magnitude of the decelerating force in order to find the magnitude of deceleration. This will then allow you to find the distance the cart will travel before it momentarily comes to a stop.
3. If you place the x-axis of the coordinate system along the incline, you will see that the only force causing deceleration of the cart (the only force pointing opposite to the direction of motion) is the horizontal component of the gravitational force. Using trigonometric functions, you can find the magnitude of the decelerating force to be equal to mg×sin θ. Then you can write down an expression for Newton’s Second Law as follows: mg×sin θ = ma, which yields to a = g×sin(θ). Use this value of acceleration in the equation v2 = v02 + 2ax to solve for the distance the cart will travel.@
qu.1.8.mode=Randomized Formula@
qu.1.8.editing=useHTML@
qu.1.8.name=Trailer@
qu.1.8.question=A truck accelerates a $m-kg trailer from rest up to a speed of $v mi/h over a distance of $d m. What is the force exerted on the truck by the trailer? Assume that the acceleration of the trailer is constant.@
qu.1.8.answer=$ans N (1 ? 0.05)@
qu.1.8.random=
$m\=rand(500,3000,3);
$v\=rand(45,65,3);
$d\=rand(100,300,3);
$ans\=sig(3,$m*($v*1.6/3.6)^2/(2*$d))@
qu.1.8.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.8.hint.2=By Newton's third law, force exerted by the truck on the trailer is equal to the force that the trailer exerts on the truck.@
qu.1.8.comment=
1. By Newton's third law, force exerted by the truck on the trailer is equal to the force that the trailer exerts on the truck.
2. In order to solve for the force exerted on the truck by the trailer, you must first know the magnitude of acceleration. Since the problem gives values for v0, v, and x, you can use the following equation to solve for acceleration a: v2 = v02 + 2ax. After you obtain a, you can substitute the appropriate values into the equation ΣF = ma to solve for the force.@
qu.1.9.mode=Randomized Formula@
qu.1.9.editing=useHTML@
qu.1.9.name=Trailer 1@
qu.1.9.question=A truck begins to pull a trailer from rest accelerating in up to $v mi/h over $d m. What is the mass of the trailer if the force exerted by the truck on the trailer is $f N?@
qu.1.9.answer=$ans kg (1 ? 0.05)@
qu.1.9.random=
$v\=rand(40,50,3);
$d\=rand(200,300,3);
$f\=rand(5000,7000,3);
$a\=($v*1397/3125)^2/(2*$d);
$ans\=sig(3,$f/$a)@
qu.1.9.hint.1=Newton's second law of motion states that an object with mass m has an acceleration a equal to the net force ΣF acting on that object divided by its mass m: a = ΣF / m.@
qu.1.9.comment=
In order to calculate the mass of the trailer, you must first determine the magnitude of acceleration of the trailer. Since the problem gives values for v0, v, and x, you can use the following equation to solve for acceleration a: v2 = v02 + 2ax. After you obtain a, you can substitute the appropriate values into the equation ΣF = ma to solve for the mass of the trailer.@
qu.2.topic=Ch 5, Sec 2 - Newton's Third Law of Motion@
qu.2.1.mode=Randomized Formula@
qu.2.1.editing=useHTML@
qu.2.1.name=Wall@
qu.2.1.question=$object1 is thrown against a wall. When it hits the wall, the $object exerts a force of $f N on the wall. Calculate the force exerted on the $object by the wall.@
qu.2.1.answer=$f N@
qu.2.1.random=
$integer\=rint(3);
$object1\=switch($integer,"An object","A ball","A body");
$object\=switch($integer,"object","ball","body");
$f\=rand(20,90,3)@
qu.2.1.hint.1=Newton’s third law of motion states that forces come in pairs. Those forces are equal in magnitude but opposite in direction, or, more commonly, “for every action there is an equal and opposite reaction.”@
qu.2.1.comment=By Newton’s third law, the force applied by the ball on the wall is equal in magnitude to the force the wall applies on the ball, though the directions of these forces are different.@
qu.2.2.mode=Randomized Formula@
qu.2.2.editing=useHTML@
qu.2.2.name=Three Boxes@
qu.2.2.question=Three boxes are placed side by side. A worker pushes the boxes with the force of $f N directed parallel to the ground. $qu if the masses of the boxes A, B, and C are equal $ma kg, $mb kg, and $mc kg respectively.
@
qu.3.1.choice.2=
@
qu.3.1.choice.3=
@
qu.3.1.choice.4=
@
qu.3.1.choice.5=
@
qu.3.1.comment=A normal force is defined as a force exerted by a surface on a body. That force is perpendicular to the surface.@
qu.3.2.mode=Multiple Choice@
qu.3.2.editing=useHTML@
qu.3.2.name=Pushed Against Wall@
qu.3.2.question=A $block is pushed against a wall by a force F as shown below. Assuming that the $block is held in place, what is the direction of the normal force N?
@
qu.3.2.choice.2=
@
qu.3.2.choice.3=
@
qu.3.2.choice.4=
@
qu.3.2.choice.5=
@
qu.3.2.random=
$block\=switch(rint(2),"brick","block")@
qu.3.2.comment=A normal force is defined as a force exerted by a surface on a body. That force is perpendicular to the surface.@
qu.3.3.mode=Multiple Choice@
qu.3.3.editing=useHTML@
qu.3.3.name=On Incline@
qu.3.3.question=Consider a block at rest on an incline. Which of the following pictures illustrates the correct direction of the normal force N?@
qu.3.3.answer=1@
qu.3.3.choice.1=
@
qu.3.3.choice.2=
@
qu.3.3.choice.3=
@
qu.3.3.choice.4=
@
qu.3.3.choice.5=
@
qu.3.3.comment=A normal force is defined as a force exerted by a surface on a body. That force is perpendicular to the surface.@
qu.4.topic=Ch 5, Sec 4 - Free-Body Diagrams@
qu.4.1.mode=Randomized Formula@
qu.4.1.editing=useHTML@
qu.4.1.name=Pulled Box@
qu.4.1.question=An overhead view of a $m-kg box being pulled by three people is shown below. Find the magnitude of acceleration of the box if F1 = $f1 N, F2 = $f2 N, F3 = $f3 N, and if the angles a, b, and g equal $alpha°, $beta°, and $gamma° respectively.
According to the way we positioned the coordinate system (see picture), the cart does not accelerate in the y direction. Write down the equations for Newton's second law along each of the axes. Then, having two equations and two unknowns, you will be able to solve for the desired quantity.@
qu.4.3.comment=
1.
According to the way we positioned the coordinate system (see picture), the cart does not accelerate in the y direction. Write down the equations for Newton's second law along each of the axes. Then, having two equations and two unknowns, you will be able to solve for the desired quantity.