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

From Physics Book
Jump to navigation Jump to search
Line 49: Line 49:
===Difficult===
===Difficult===


A particle of mass <math>m</math> and speed <math>v</math> moves in a circular path. Its angular frequency is <math>\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 force is acting on the particle, that the direction of the force is inwards towards the center of the circle, and that the magnitude of the force is given by <math>f = mv\Omega</math>
A particle of mass <math>m</math> and speed <math>v</math> moves in a circular path. Its angular frequency is <math>\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 force is acting on the particle, that the direction of the force is inwards towards the center of the circle, and that the magnitude of the force is given by <math>f = mv\Omega</math>.


==Connectedness==
==Connectedness==

Revision as of 16:29, 17 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 the 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:

[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

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 force is acting on the particle, that the direction of the force is inwards towards the center of the circle, and that the magnitude of the force is given by [math]\displaystyle{ f = mv\Omega }[/math].

Connectedness

  1. How is this topic connected to something that you are interested in?
  2. How is it connected to your major?
  3. 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