Newton's Second Law: the Momentum Principle: Difference between revisions

From Physics Book
Jump to navigation Jump to search
Line 26: Line 26:
p = p + fnet*deltat
p = p + fnet*deltat


This simulation is an example of a program that uses the momentum principle. It simulates the motion of a cart, represented by a rectangle, being blown by a gust of wind:
The simulation below is an example of a program that uses the momentum principle. It simulates the motion of a cart, represented by a rectangle, being blown by a gust of wind:


https://trinket.io/glowscript/ce43925647
https://trinket.io/glowscript/ce43925647


For more information, see [[iterative prediction]]
For more information, see [[iterative prediction]].


==Examples==
==Examples==

Revision as of 20:21, 19 May 2019

This page describes Newton's second law, also known as the momentum principle, which relates net force to the change in linear momentum. This principle is used to predict the effects of forces on the motion of objects.

The Main Idea

Newton's second law, also known as the momentum principle, states that [math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}_{system}}{dt} }[/math] where [math]\displaystyle{ \vec{p} }[/math] is the linear momentum of a system and [math]\displaystyle{ \vec{F}_{net} }[/math] is the net external force acting on the system from its surroundings. Often, the system in question consists of a single particle whose motion we want to predict. Note that both force and momentum are vector quantities, and that the change in momentum as a result of a force will always be in the direction of that force.

The momentum principle has no derivation, as it is considered the definition of force.

A Mathematical Model

The momentum principle states that [math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}}{dt} }[/math]. Recall that [math]\displaystyle{ \vec{p} = m\vec{v} }[/math]. Therefore, by product rule, [math]\displaystyle{ \frac{d\vec{p}}{dt} = m\frac{d\vec{v}}{dt} + \vec{v}\frac{dm}{dt} }[/math]. Under the assumption that mass is constant, the second term becomes 0, and the momentum principle becomes [math]\displaystyle{ \vec{F}_{net} = m\frac{d\vec{v}}{dt} }[/math], or [math]\displaystyle{ \vec{F}_{net} = m\vec{a} }[/math], which may be a more familiar form of Newton's second law. The form [math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}}{dt} }[/math] is preferred for several reasons:

  1. When a particle accumulates mass that was initially at rest, such as a snowball rolling downhill, the term [math]\displaystyle{ \vec{v}\frac{dm}{dt} }[/math] is not 0, and [math]\displaystyle{ \vec{F}_{net} = m\vec{a} }[/math] is no longer accurate, while [math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}}{dt} }[/math] is;
  2. As a particle approaches the speed of light, [math]\displaystyle{ \vec{F}_{net} = m\vec{a} }[/math] is no longer accurate, while [math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}}{dt} }[/math] is, as long as relativistic momentum is used; and
  3. [math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}}{dt} }[/math] has a more direct rotational analogue- that is, it will be easier to accurately learn rotational physics if you learn linear physics using this form.

The momentum principle is responsible for the relationship between impulse and momentum.

A Computational Model

Often in computational simulations of particles, a momentum variable is assigned to each particle. Such simulations usually occur in "time steps," or iterations of a loop representing a time interval. In each time step, the particles' momenta are updated according to the momentum principle based on the forces acting on each particle.

The following is an example of a line of vPython responsible for updating the momentum of a particle according to the momentum principle:

p = p + fnet*deltat

The simulation below is an example of a program that uses the momentum principle. It simulates the motion of a cart, represented by a rectangle, being blown by a gust of wind:

https://trinket.io/glowscript/ce43925647

For more information, see iterative prediction.

Examples

Simple

Middling

A cylindrical rocket ship of mass [math]\displaystyle{ M }[/math] and speed [math]\displaystyle{ v }[/math] is cruising through outer space when it encounters a stationary dust cloud. The dust cloud has a number density of [math]\displaystyle{ N }[/math] particles per unit volume, and each dust particle has a mass of [math]\displaystyle{ m }[/math]. The rocket ship has a sticky surface on its front face that allows it to accumulate all of the dust that it hits, absorbing it into its mass. The radius of the rocket ship's circular face is [math]\displaystyle{ R }[/math]. What force does the rocket's thruster need to exert on it in order to preserve its speed as it moves through the dust cloud? (Assume that the consumption of fuel has a negligible impact on the mass of the rocket.)

Advanced Note: in order to use [math]\displaystyle{ \frac{dm}{dt} }[/math] for the accumulation of mass, the accumulated mass (i.e. the dust) must initially be at rest, like in the above problem. Otherwise, one must treat the accumulation of dust particles as a series of collisions, or change one's frame of reference so that the accumulated mass is initially at rest.

Difficult

A particle of mass [math]\displaystyle{ m }[/math] and speed [math]\displaystyle{ v }[/math] moves in a circular path. Its angular frequency is [math]\displaystyle{ \Omega }[/math]. (Angular frequency is the rate at which the angle of the particle's position is changing in radians per unit time.) Using the momentum principle, show that

a) a nonzero net force is acting on the particle,

b) the magnitude of the force is given by [math]\displaystyle{ f = mv\Omega }[/math], and

c) the direction of the force is inwards towards the center of the circle.


a) The particle's momentum vector is changing over time; its magnitude is constant (mv), but its direction changes as its position along the circular path changes. It is always tangential to the circular path. Since [math]\displaystyle{ \vec{p} }[/math] changes over time, a nonzero net force must be acting on the particle. In fact, the only way a particle of constant mass can have a net force of 0 acting on it is if it is travelling along a straight line at a constant speed, or if it is at rest.

b)

c) As one can see from the diagram above, [math]\displaystyle{ d\vec{p} }[/math] is pointing towards the center of the circle. If the particle is exactly at the top of the circle, its momentum is to the right (or left if the particle is travelling counterclockwise), and as [math]\displaystyle{ d\theta }[/math] approaches 0, [math]\displaystyle{ d\vec{p} }[/math] approaches a downward direction, which is towards the center of the circle.

For more information, see Centripetal Force and Curving Motion. Our answer agrees with the formulas given on that page.

Connectedness

History

See also

Further reading

External links

References