Newton's Second Law: the Momentum Principle
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:
- 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;
- 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
- [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, as shown below:
[math]\displaystyle{ \vec{F}_{net} = \frac{d\vec{p}}{dt} }[/math]
can be arranged to [math]\displaystyle{ d\vec{p} = \vec{F}_{net}dt }[/math].
Integrating both sides yields [math]\displaystyle{ \int d\vec{p} = \int \vec{F}_{net}dt }[/math]
which simplifies to [math]\displaystyle{ \Delta \vec{p} = \int \vec{F}_{net}dt }[/math].
For more information see 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, and their velocities are calculated by dividing each particle's momentum by its mass. The velocities are used to update the positions of the particles.
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
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:
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.)
(image)
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 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.
Connectedness
- How is this topic connected to something that you are interested in?
- How is it connected to your major?
- Is there an interesting industrial application?
History
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.
See also
Are there related topics or categories in this wiki resource for the curious reader to explore? How does this topic fit into that context?
Further reading
Books, Articles or other print media on this topic
External links
Internet resources on this topic
References
This section contains the the references you used while writing this page