Net Force: Difference between revisions

From Physics Book
Jump to navigation Jump to search
 
(28 intermediate revisions by the same user not shown)
Line 3: Line 3:
==Main Idea==
==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, it 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 that same direction.
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.
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 <br><center><math> Fnet = F1 + F2 + F3... </math></center>
 
Additionally,
By definition,
<center><math> Fnet = m*a </math><br>
 
where m=mass of the object, and a = acceleration of the object.</center>
<math>\vec{F}_{net} = \sum_i \vec{f}_i</math>
If there is a nonzero net force acting on an object, that object is accelerating (not traveling at a constant velocity). A net force of zero can mean that the object is at rest, but it can also mean that the object is moving with constant velocity. Both cases have acceleration = 0, so they both satisfy <math>Fnet = m*a</math> because <math>Fnet = 0</math> and <math>a = 0</math>. It may seem strange that an object can be moving and still have net force = zero, but remember Newton's first law, which states that objects at rest tend to remain at rest and objects in motion tend to continue going the same way at the same speed unless acted on by an outside force. Imagine an astronaut has a rock that he or she throws out of the space ship while in space: the rock would float away at a constant speed and unless a meteor hit it or something, it would keep moving forever in the same direction at the same speed.
 
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 28: 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>
<br>
Line 36: Line 43:


==Examples==
==Examples==


===1. (Simple)===
===1. (Simple)===
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.  
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, so its free body diagram looks like this:
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]]
[[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:
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:
Line 53: Line 66:


[[File:Net_force_wiki_5.PNG]]
[[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, 600, 0) </math>N<math> + (0, -800, 0) </math>N<br>
Line 61: Line 78:


[[File:Net_force_wiki_6.PNG]]
[[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 = (0, 50, 0) </math>N<math> + (0, -50, 0) </math>N<math> + (-20, 0, 0)</math>N<br>
Line 79: Line 100:
<math>\vec{F}_{net}</math> = <60,-70,0)N + <20,10,0>N = <80,-60,0>N
<math>\vec{F}_{net}</math> = <60,-70,0)N + <20,10,0>N = <80,-60,0>N


===3. (Intermediate)===
===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>).
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>).
Solution:


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.)
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.)
Line 107: Line 130:
<math> Fnetx = f - W*sin(θ) = 0 </math>
<math> Fnetx = f - W*sin(θ) = 0 </math>


Then, all we have to do is solve for <math> f </math>, since <math> W </math> and <math> θ </math> are known quantities.
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.
<math> f = W*sin(θ) = (98</math> N<math>)*sin(20°) = 33.51797405</math> N, which is about equal to <math>33.5</math> N.
Line 123: Line 146:
<math> N = W*cos(θ) = (98</math> N<math>)*cos(20°) = 92.08987684</math> N, which is about equal to <math>92.1</math> N.
<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==
Net force is one of the building blocks of Intro Physics, and I would assume all of physics. It's really important for all motion-related topics, specifically [[Curving Motion]]. A net force due to the gravitational pull of the Sun in the perpendicular direction is how the Earth revolves around the Sun -- why we have days and nights and years! We can see from the derivative form of the Momentum Principle that any change in momentum is due to a nonzero net force acting on a system. All changes in motion can be attributed to a net force acting in some direction. <br>
<math> dP/dt=Fnet </math> (<math>P</math> is the symbol for momentum.)


My major is biomedical engineering, and I haven't taken any BME classes yet, but physics is a requirement so it has to be relevant. Statics is also a requirement for BMEs, and that class deals with net force in every single problem because you have to be able to analyze systems and structures based on the forces they provide and support.
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=
=History=
Line 133: Line 154:
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>
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>


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, and he certainly played a huge role in the understanding of net force and momentum. However, he initially believed in the idea of impetus, that a projectile has a certain internal force that keeps it moving, and also the idea of transfer, that objects give up parts of their force during a collision. Though he was wrong, these ideas are not at all silly--in fact they seem quite logical--and he later corrected them after a series of experiments. Thus, the second law of motion was established and with it the relationship between force and motion.
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 ==
These other wiki pages might help: <br>
*[[Newton's Second Law: the Momentum Principle]]
[[Newton's Second Law: the Momentum Principle]] <br>
*[[Acceleration]]
[[Conservation of Momentum]] <br>
*[[Mass]]
[[Newton's Laws and Linear Momentum]]
*[[Inertia]]
*[[Vectors]]


===External links===
===External links===
Line 156: Line 178:


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>
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