Net Force: Difference between revisions

From Physics Book
Jump to navigation Jump to search
No edit summary
 
(73 intermediate revisions by 3 users not shown)
Line 1: Line 1:
by Julia Logan
This page defines the net force acting on a system.


==Definition==
==Main Idea==


The net force acting on a system (such as a particle, collection of particles, or rigid body) is defined as the [[Vectors|vector sum]] of all of the forces acting on the system. People are interested in net force because a net force acting on a system affects its motion. More specifically, a nonzero net force causes the system's [[Linear Momentum]] to change over time in the direction of the net force, as described by [[Newton's Second Law: the Momentum Principle]]. For a system of constant mass, this change in momentum takes the form of [[Acceleration]] in the direction of the net force. Conversely, a net force of 0 acting on a system means that, according to Newton's Second Law, the system is travelling with a constant momentum. For a system of constant mass, this means that the system is travelling at constant speed, which may be zero or nonzero. The fact that motion is possible with a net force of 0 may be be counter-intuitive, but recall that [[Newton's First Law]] states that objects in motion stay in motion unless a (nonzero net) force acts on it. For example, consider a rock thrown in empty space. It will travel at a constant speed in a straight line forever unless it encounters something that can exert a force on it.


The effects of a net force do not depend on the forces comprising it. For example, if the forces <math> f_1 = < 1, 1, 0 > </math> N and <math> f_1 = < 1, -1, 0 > </math> N act on a system, the net force would be <math> F_{net} = < 1, 0, 0 > </math> N. Similarly, if the forces <math> f_1 = < 2, 0, 0 > </math> N and <math> f_1 = < -1, 0, 0 > </math> N act on a system, the net force would also be <math> F_{net} = < 1, 0, 0 > </math> N. In both cases, the net force is the same, so momentum of the system will be affected in the same way for both net forces.


===A Mathematical Model===
===A Mathematical Model===
In order to calculate net force, all EXTERNAL forces acting on a system are added together. The mathematical definition is <math> Fnet = F1 + F2 + F3... </math>


Additionally, <math> Fnet = ma </math> where m=mass of the object, and a = acceleration of the object. This is a result of Newton's Second Law of motion. If there is a nonzero net force acting on an object, that object is accelerating (not traveling at a constant velocity). Interestingly, there is zero net force acting on an object if its velocity is constant. This seems counter-intuitive (surely something is causing the object to move!) but makes sense in the context of Newton's Second Law. The forces are balanced (sum to zero) if there is no acceleration, despite any movement that may be happening.
By definition,
 
<math>\vec{F}_{net} = \sum_i \vec{f}_i</math>
 
Sometimes the individual force vectors are simply given in component form. In this case, recall that to add the force vectors, their corresponding components of the vectors should be added to yield the components of the resultant vector.
 
At least as often, the individual force vectors are not given in component form but have known magnitudes and directions. In this case, coordinate axes should be chosen and the forces should be decomposed into components along those axes. If it is possible to predict the direction of the net force using physical intuition, the axes should be chosen so that one of them is parallel to this net force. Otherwise, The axes should be chosen so that as many forces as possible are parallel to them an axis, reducing the need to decompose them.
 
Recall that some forces, such as tension and the normal force, do not have readily available magnitudes; their magnitudes must be found based on the magnitudes of other forces.


===A Computational Model===
===A Computational Model===


Net force is an essential component of the Momentum Principle! We can use the Momentum Principle in vpython to update the position of a moving object. But first, we have to find net force.
Fortunately, vector addition is very easy in computer programming languages such as vPython. As long as the individual forces acting on a particle are calculated as vectors, when they are added together, vPython will add their components to find the resultant vector.
[[File:netforce.png|200px|thumb|left|Tracing the path of a ball/spring model in vpython using net force and the momentum principle.]]
 
Finding the net force is an essential part of the [[Iterative Prediction]] process, which is used in most physics simulations. Below is an excerpt from a vPython program that uses iterative prediction to simulate the motion of a ball on a spring. The seven lines shown are responsible for the three steps of iterative prediction.


[[File:Netforce.png|thumb|left|[https://trinket.io/glowscript/b9d6aa825e This program] simulates the motion of a ball on a string.]]


   #1 Fspring = -k*s
   #1 Fspring = -k*s
Line 24: Line 35:
   #7 ball.pos=ball.pos+vball*deltat
   #7 ball.pos=ball.pos+vball*deltat


Here, the spring force and the gravitational force are found using formulas (lines 1-3). Then, they are added together to get the net force on the object (in this case a ball, line 4). The net force is then used in the update form of the momentum principle (line 5). In line 6 the velocity is updated, and line 7 the position is updated. Without net force calculations, tracing an object's path would be impossible.  
Here, the spring force and the gravitational force are found using formulas (lines 1-3). Then, they are added together to get the net force on the ball (line 4). The net force is then used to update the momentum of the ball (line 5). In line 6 the velocity is updated based on the new momentum, and line 7 the position is updated based on the new velocity. Without net force calculations, tracing an object's path would be impossible.
 
<br>
<br>
<br>
<br>
 
==Examples==
 
 
 
===1. (Simple)===
When calculating net force, it is useful to construct a free body diagram. A free body diagram is a physical representation of the external forces applied to a system. Often, arrows are used to represent forces. In this example, forces are displayed acting on a box.
 
The first box is being suspended by a rope (but it is not quite at equilibrium), so its free body diagram looks like this:
 
[[File:Net_force_wiki_4.PNG]]
 
What is the net force acting on this box?
 
Solution:
 
Assume that down is the negative y direction, and you can easily write vector representations of the forces and add them up to find the sum, which is the net force:
 
<math> Fnet = (0, 1200, 0) </math>N<math> + (0, -800, 0) </math>N<br>
<math> Fnet = (0, 400, 0) </math>N
 
 
The second box is falling, but it has significant air resistance:
 
[[File:Net_force_wiki_5.PNG]]
 
What is the net force acting on this box?
 
Solution:
 
<math> Fnet = (0, 600, 0) </math>N<math> + (0, -800, 0) </math>N<br>
<math> Fnet = (0, -200, 0) </math>N
 
 
The third box is on the ground and is sliding to the right, but slowing down because of friction. It has both x-component forces and y-component forces. It is important to put these in the right place in the vector coordinates.
 
[[File:Net_force_wiki_6.PNG]]
 
What is the net force acting on this box?
 
Solution:
 
<math> Fnet = (0, 50, 0) </math>N<math> + (0, -50, 0) </math>N<math> + (-20, 0, 0)</math>N<br>
<math> Fnet = (-20, 0, 0) </math>N
 
===2. (Simple)===
 
Two external forces <60,-70,0>N and <20,10,0>N, act on a system. What is the net force acting on the system?
 
'''Answer: <80,-60,0>N'''
 
'''Explanation:'''
 
The net force is the vector sum of its constituent forces.
 
<math>\vec{F}_{net} = \vec{F}_{1} + \vec{F}_{2}</math>
 
<math>\vec{F}_{net}</math> = <60,-70,0)N + <20,10,0>N = <80,-60,0>N
 
===3. (Middling)===
There is a box, small enough to represented as a point, sitting on a slope inclined twenty degrees with respect to the horizontal. If its mass is 10 kg, what does the magnitude of the force of static friction (pointing up the hill) have to be for net force to be zero? In that case, what is the magnitude of the normal force? (All forces are measured in newtons, and the acceleration due to gravity <math> = g = 9.8</math> <math>m/(s^2) </math>).


=Simple Example=
Solution:
When calculating net force, it is most useful to construct a free body diagram. A free body diagram is a physical representation of the external forces applied to a system. Often, arrows are used to represent forces. In this example, forces are displayed acting on a box.


[[File:forcediagram.gif]]
Let <math> f </math> = force of friction, <math> W </math> = weight of the object, and <math> N = </math> normal force. (The pictures are not to scale.)


The first two boxes' net force can be easily calculated by adding the two forces acting on them, respectively. With down being in the negative y direction, for the first box we have:<br>
[[File:Net_force_wiki_1.PNG]]


<math> Fnet = (0, 1200, 0) N + (0, -800, 0) N </math><br>
First, we have to identify our coordinate axes. We could have the typical horizontal x-axis and vertical y-axis (and we know where to put <math>θ</math> using similar triangles):
<math> Fnet = (0, 400, 0) N </math><br>


And the second box:<br>
[[File:Net_force_wiki_2.png]]


<math> Fnet = (0, 600, 0) N + (0, -800, 0) N </math><br>
But, that leaves us with two forces that have to be decomposed into x- and y- components. It makes more sense to draw the axes rotated twenty degrees counterclockwise, like this:
<math> Fnet = (0, -200, 0) N </math><br>


The third box has both x-component forces and y-component forces. It is important to separate these in solving for the net force. <br>
[[File:Net_force_wiki_3.png]]
y-components:<br>
 
<math> Fnet,y = (0, 50, 0) N + (0, -50, 0) N </math><br>
<math> W </math> is easy to find, since it's just mass times acceleration due to gravity, both of which are known quantities.
<math> Fnet,y = (0, 0, 0) N </math><br>
 
x-components:<br>
<math> W = mg = (10</math> <math>kg)*(9.8</math> <math>m/(s^2)) = 98</math> <math>newtons </math>
<math> Fnet,x = (-20, 0, 0) N + (0, 0, 0) N </math><br>
 
Put them together:<br>
 
<math> Fnet = (-20, 0, 0) N </math><br>
Now we are ready to solve for the frictional force. It acts in the positive x direction, and we know that the net force in the x direction has to be zero, so we have to identify the other forces that act in the positive or negative x direction. In this case, it's only a component of the weight, which points in the negative x direction. Using simple trigonometry, we find that that is
 
<math> -W*sin(θ) </math>
 
So we can write our equilibrium equation like this:
 
<math> Fnetx = f - W*sin(θ) = 0 </math>
 
Then, all we have to do is solve for the friction force <math> f </math>, since <math> W </math> and <math> θ </math> are known quantities.
 
<math> f = W*sin(θ) = (98</math> N<math>)*sin(20°) = 33.51797405</math> N, which is about equal to <math>33.5</math> N.
 
Now we have to solve for the normal force. It acts in the positive y direction, and we know that the net force in the y direction has to be zero, so we have to identify the other forces that act in the positive or negative y direction. In this case, the only one is the other component of the weight, which points in the negative y direction. Using simple trigonometry, we find that that is
 
<math> -W*cos(θ) </math>
 
So we can write our equilibrium equation like this:
 
<math> Fnety = N - W*cos(θ) = 0 </math>
 
Then, all we have to do is solve for <math> N </math>, since <math> W </math> and <math> θ </math> are known quantities.
 
<math> N = W*cos(θ) = (98</math> N<math>)*cos(20°) = 92.08987684</math> N, which is about equal to <math>92.1</math> N.


==Connectedness==
==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==
Force and net force have applications in all parts of the physical universe. If an object accelerates, this acceleration can be attributed to a nonzero net force. If an object travels at a constant speed, that can be attributed to a net force of zero. Even objects at rest remain that way because of a careful balancing of forces whose vector sum is 0.
 
=History=
 
Some of the earliest records of humans' musings about force come from Aristotle. Aristotle observed the natural world and made assumptions and equations based on what he saw. He described all motion as being either "natural"--circular and infinite OR finite, up and down, in a straight line--or "violent." Aristotle had issues with projectile motion as he could not reconcile the continuing movement of the object with the lack of force being applied. He ended up concluding that the air provides a simultaneous resistant and accelerating force to the object. <br>


Initially it was believed that force was required to maintain a constant velocity, but this was later cleared up by Sir Isaac Newton's laws of motion and Einstein's theory of relativity in the early 20th century.  
These ideas were challenged by Renaissance men such as John Philoponus, John Buridan, and Oresme, with a clear understanding of the conservation of linear momentum not arriving to the world until Descartes. The most famous face we associate with forces in Physics is Sir Isaac Newton, who defined force as it is still used today. Newton initially believed in the idea of impetus, the belief that a projectile has an internal force that keeps it moving, and in the idea of transfer, that objects give up parts of their force during a collision. These notions were incorrect, but he was later able to correctly separate the ideas of force and momentum. Thus, the second law of motion was established and with it the relationship between force and motion.


== See also ==
== See also ==
*[[Newton's Second Law: the Momentum Principle]]
*[[Acceleration]]
*[[Mass]]
*[[Inertia]]
*[[Vectors]]


http://www.physicsbook.gatech.edu/Momentum_Principle
===External links===
http://www.physicsbook.gatech.edu/Conservation_of_Momentum
[http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Determining-the-Net-Force Physics Classroom: Net Force]
http://www.physicsbook.gatech.edu/Newton's_Laws_and_Linear_Momentum
[http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Drawing-Free-Body-Diagrams Physics Classroom: Drawing Free Body Diagrams]


===Further reading===
==References==


Books, Articles or other print media on this topic
Cardenas, Richard. "What is Net Force? - Definition, Magnitude & Equations." Web. 30 Nov 2015. http://study.com/academy/lesson/what-is-net-force-definition-magnitude-equations.html <br>


===External links===
"Net Force." Wikipedia: The Free Encyclopedia. Wikimedia Foundation, Inc. Web. 30 Nov 2015. https://en.wikipedia.org/wiki/Net_force <br>


Internet resources on this topic
The Physics Classroom. "Determining the Net Force." Web. 30 Nov 2015. http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Determining-the-Net-Force <br>
 
==References==


http://study.com/academy/lesson/what-is-net-force-definition-magnitude-equations.html
Chabay, Ruth W., and Bruce A. Sherwood. Matter & Interactions. Modern Mechanics. Hoboken, NJ: Wiley, 2011. Print. <br>
https://en.wikipedia.org/wiki/Net_force


Stinner, Arthur. "The story of force: from Aristotle to Einstein." Physics Education. 1994. Web. 30 Nov 2015. http://www.arthurstinner.com/stinner/pdfs/1994-storyofforce.pdf <br>


[[Category:Which Category did you place this in?]]
[[Category: Interactions]]

Latest revision as of 15:06, 3 August 2019

This page defines the net force acting on a system.

Main Idea

The net force acting on a system (such as a particle, collection of particles, or rigid body) is defined as the vector sum of all of the forces acting on the system. People are interested in net force because a net force acting on a system affects its motion. More specifically, a nonzero net force causes the system's Linear Momentum to change over time in the direction of the net force, as described by Newton's Second Law: the Momentum Principle. For a system of constant mass, this change in momentum takes the form of Acceleration in the direction of the net force. Conversely, a net force of 0 acting on a system means that, according to Newton's Second Law, the system is travelling with a constant momentum. For a system of constant mass, this means that the system is travelling at constant speed, which may be zero or nonzero. The fact that motion is possible with a net force of 0 may be be counter-intuitive, but recall that Newton's First Law states that objects in motion stay in motion unless a (nonzero net) force acts on it. For example, consider a rock thrown in empty space. It will travel at a constant speed in a straight line forever unless it encounters something that can exert a force on it.

The effects of a net force do not depend on the forces comprising it. For example, if the forces [math]\displaystyle{ f_1 = \lt 1, 1, 0 \gt }[/math] N and [math]\displaystyle{ f_1 = \lt 1, -1, 0 \gt }[/math] N act on a system, the net force would be [math]\displaystyle{ F_{net} = \lt 1, 0, 0 \gt }[/math] N. Similarly, if the forces [math]\displaystyle{ f_1 = \lt 2, 0, 0 \gt }[/math] N and [math]\displaystyle{ f_1 = \lt -1, 0, 0 \gt }[/math] N act on a system, the net force would also be [math]\displaystyle{ F_{net} = \lt 1, 0, 0 \gt }[/math] N. In both cases, the net force is the same, so momentum of the system will be affected in the same way for both net forces.

A Mathematical Model

By definition,

[math]\displaystyle{ \vec{F}_{net} = \sum_i \vec{f}_i }[/math]

Sometimes the individual force vectors are simply given in component form. In this case, recall that to add the force vectors, their corresponding components of the vectors should be added to yield the components of the resultant vector.

At least as often, the individual force vectors are not given in component form but have known magnitudes and directions. In this case, coordinate axes should be chosen and the forces should be decomposed into components along those axes. If it is possible to predict the direction of the net force using physical intuition, the axes should be chosen so that one of them is parallel to this net force. Otherwise, The axes should be chosen so that as many forces as possible are parallel to them an axis, reducing the need to decompose them.

Recall that some forces, such as tension and the normal force, do not have readily available magnitudes; their magnitudes must be found based on the magnitudes of other forces.

A Computational Model

Fortunately, vector addition is very easy in computer programming languages such as vPython. As long as the individual forces acting on a particle are calculated as vectors, when they are added together, vPython will add their components to find the resultant vector.

Finding the net force is an essential part of the Iterative Prediction process, which is used in most physics simulations. Below is an excerpt from a vPython program that uses iterative prediction to simulate the motion of a ball on a spring. The seven lines shown are responsible for the three steps of iterative prediction.

This program simulates the motion of a ball on a string.
  #1 Fspring = -k*s
  #2 Fgravmag = mball * g
  #3 Fgrav = Fgravmag * vector(0,-1,0)
  #4 Fnet = Fspring+Fgrav
  #5 pball = pball + Fnet * deltat
  #6 vball = pball / mball
  #7 ball.pos=ball.pos+vball*deltat

Here, the spring force and the gravitational force are found using formulas (lines 1-3). Then, they are added together to get the net force on the ball (line 4). The net force is then used to update the momentum of the ball (line 5). In line 6 the velocity is updated based on the new momentum, and line 7 the position is updated based on the new velocity. Without net force calculations, tracing an object's path would be impossible.





Examples

1. (Simple)

When calculating net force, it is useful to construct a free body diagram. A free body diagram is a physical representation of the external forces applied to a system. Often, arrows are used to represent forces. In this example, forces are displayed acting on a box.

The first box is being suspended by a rope (but it is not quite at equilibrium), so its free body diagram looks like this:

What is the net force acting on this box?

Solution:

Assume that down is the negative y direction, and you can easily write vector representations of the forces and add them up to find the sum, which is the net force:

[math]\displaystyle{ Fnet = (0, 1200, 0) }[/math]N[math]\displaystyle{ + (0, -800, 0) }[/math]N
[math]\displaystyle{ Fnet = (0, 400, 0) }[/math]N


The second box is falling, but it has significant air resistance:

What is the net force acting on this box?

Solution:

[math]\displaystyle{ Fnet = (0, 600, 0) }[/math]N[math]\displaystyle{ + (0, -800, 0) }[/math]N
[math]\displaystyle{ Fnet = (0, -200, 0) }[/math]N


The third box is on the ground and is sliding to the right, but slowing down because of friction. It has both x-component forces and y-component forces. It is important to put these in the right place in the vector coordinates.

What is the net force acting on this box?

Solution:

[math]\displaystyle{ Fnet = (0, 50, 0) }[/math]N[math]\displaystyle{ + (0, -50, 0) }[/math]N[math]\displaystyle{ + (-20, 0, 0) }[/math]N
[math]\displaystyle{ Fnet = (-20, 0, 0) }[/math]N

2. (Simple)

Two external forces <60,-70,0>N and <20,10,0>N, act on a system. What is the net force acting on the system?

Answer: <80,-60,0>N

Explanation:

The net force is the vector sum of its constituent forces.

[math]\displaystyle{ \vec{F}_{net} = \vec{F}_{1} + \vec{F}_{2} }[/math]

[math]\displaystyle{ \vec{F}_{net} }[/math] = <60,-70,0)N + <20,10,0>N = <80,-60,0>N

3. (Middling)

There is a box, small enough to represented as a point, sitting on a slope inclined twenty degrees with respect to the horizontal. If its mass is 10 kg, what does the magnitude of the force of static friction (pointing up the hill) have to be for net force to be zero? In that case, what is the magnitude of the normal force? (All forces are measured in newtons, and the acceleration due to gravity [math]\displaystyle{ = g = 9.8 }[/math] [math]\displaystyle{ m/(s^2) }[/math]).

Solution:

Let [math]\displaystyle{ f }[/math] = force of friction, [math]\displaystyle{ W }[/math] = weight of the object, and [math]\displaystyle{ N = }[/math] normal force. (The pictures are not to scale.)

First, we have to identify our coordinate axes. We could have the typical horizontal x-axis and vertical y-axis (and we know where to put [math]\displaystyle{ θ }[/math] using similar triangles):

But, that leaves us with two forces that have to be decomposed into x- and y- components. It makes more sense to draw the axes rotated twenty degrees counterclockwise, like this:

[math]\displaystyle{ W }[/math] is easy to find, since it's just mass times acceleration due to gravity, both of which are known quantities.

[math]\displaystyle{ W = mg = (10 }[/math] [math]\displaystyle{ kg)*(9.8 }[/math] [math]\displaystyle{ m/(s^2)) = 98 }[/math] [math]\displaystyle{ newtons }[/math]


Now we are ready to solve for the frictional force. It acts in the positive x direction, and we know that the net force in the x direction has to be zero, so we have to identify the other forces that act in the positive or negative x direction. In this case, it's only a component of the weight, which points in the negative x direction. Using simple trigonometry, we find that that is

[math]\displaystyle{ -W*sin(θ) }[/math]

So we can write our equilibrium equation like this:

[math]\displaystyle{ Fnetx = f - W*sin(θ) = 0 }[/math]

Then, all we have to do is solve for the friction force [math]\displaystyle{ f }[/math], since [math]\displaystyle{ W }[/math] and [math]\displaystyle{ θ }[/math] are known quantities.

[math]\displaystyle{ f = W*sin(θ) = (98 }[/math] N[math]\displaystyle{ )*sin(20°) = 33.51797405 }[/math] N, which is about equal to [math]\displaystyle{ 33.5 }[/math] N.

Now we have to solve for the normal force. It acts in the positive y direction, and we know that the net force in the y direction has to be zero, so we have to identify the other forces that act in the positive or negative y direction. In this case, the only one is the other component of the weight, which points in the negative y direction. Using simple trigonometry, we find that that is

[math]\displaystyle{ -W*cos(θ) }[/math]

So we can write our equilibrium equation like this:

[math]\displaystyle{ Fnety = N - W*cos(θ) = 0 }[/math]

Then, all we have to do is solve for [math]\displaystyle{ N }[/math], since [math]\displaystyle{ W }[/math] and [math]\displaystyle{ θ }[/math] are known quantities.

[math]\displaystyle{ N = W*cos(θ) = (98 }[/math] N[math]\displaystyle{ )*cos(20°) = 92.08987684 }[/math] N, which is about equal to [math]\displaystyle{ 92.1 }[/math] N.

Connectedness

Force and net force have applications in all parts of the physical universe. If an object accelerates, this acceleration can be attributed to a nonzero net force. If an object travels at a constant speed, that can be attributed to a net force of zero. Even objects at rest remain that way because of a careful balancing of forces whose vector sum is 0.

History

Some of the earliest records of humans' musings about force come from Aristotle. Aristotle observed the natural world and made assumptions and equations based on what he saw. He described all motion as being either "natural"--circular and infinite OR finite, up and down, in a straight line--or "violent." Aristotle had issues with projectile motion as he could not reconcile the continuing movement of the object with the lack of force being applied. He ended up concluding that the air provides a simultaneous resistant and accelerating force to the object.

These ideas were challenged by Renaissance men such as John Philoponus, John Buridan, and Oresme, with a clear understanding of the conservation of linear momentum not arriving to the world until Descartes. The most famous face we associate with forces in Physics is Sir Isaac Newton, who defined force as it is still used today. Newton initially believed in the idea of impetus, the belief that a projectile has an internal force that keeps it moving, and in the idea of transfer, that objects give up parts of their force during a collision. These notions were incorrect, but he was later able to correctly separate the ideas of force and momentum. Thus, the second law of motion was established and with it the relationship between force and motion.

See also

External links

Physics Classroom: Net Force Physics Classroom: Drawing Free Body Diagrams

References

Cardenas, Richard. "What is Net Force? - Definition, Magnitude & Equations." Web. 30 Nov 2015. http://study.com/academy/lesson/what-is-net-force-definition-magnitude-equations.html

"Net Force." Wikipedia: The Free Encyclopedia. Wikimedia Foundation, Inc. Web. 30 Nov 2015. https://en.wikipedia.org/wiki/Net_force

The Physics Classroom. "Determining the Net Force." Web. 30 Nov 2015. http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Determining-the-Net-Force

Chabay, Ruth W., and Bruce A. Sherwood. Matter & Interactions. Modern Mechanics. Hoboken, NJ: Wiley, 2011. Print.

Stinner, Arthur. "The story of force: from Aristotle to Einstein." Physics Education. 1994. Web. 30 Nov 2015. http://www.arthurstinner.com/stinner/pdfs/1994-storyofforce.pdf