<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hmcleod6</id>
	<title>Physics Book - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hmcleod6"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Hmcleod6"/>
	<updated>2026-05-01T17:35:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10348</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10348"/>
		<updated>2015-12-03T18:42:10Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* Example 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===Example 1===&lt;br /&gt;
A train is observed to be traveling at a speed of 24 m/s before it enters a city. While in the city, it is observed going 13 m/s. What is the average velocity of the train?&lt;br /&gt;
&lt;br /&gt;
24 m/s + 13 m/s = 37 m/s &lt;br /&gt;
&lt;br /&gt;
37/2 = 18.5&lt;br /&gt;
&lt;br /&gt;
The average velocity of the train based on the analytical prediction method was 18.5 m/s.&lt;br /&gt;
&lt;br /&gt;
===Example 2===&lt;br /&gt;
A car is traveling at a speed of (18, -2, 0) m/s. Later, the car is observed to be going (22, 6, 0) m/s. If the car started at the location (40, 170, 0) what is it&#039;s position after 30 seconds?&lt;br /&gt;
&lt;br /&gt;
First, you have to find the average velocity:&lt;br /&gt;
&lt;br /&gt;
(18, -2, 0) + (22, 6, 0) = (40, 4, 0)&lt;br /&gt;
&lt;br /&gt;
(40, 4, 0) /2 = (20, 2, 0)&lt;br /&gt;
&lt;br /&gt;
so the average velocity is (20, 2, 0) m/s&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Second, calculate the change in position:&lt;br /&gt;
&lt;br /&gt;
Change in position = average velocity x time  &lt;br /&gt;
                                                                                                          &lt;br /&gt;
(20, 2, 0) * 30 = (600, 60, 0) &lt;br /&gt;
&lt;br /&gt;
So the change in position is (600, 60, 0) m&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finally, update the position:&lt;br /&gt;
&lt;br /&gt;
final position = initial position + change in position&lt;br /&gt;
&lt;br /&gt;
(40, 170, 0) + (600, 60, 0) = (640, 230, 0)&lt;br /&gt;
&lt;br /&gt;
The final position is (640, 230, 0) m&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
Since this topic is based on such a fundamental mathematical principle, my interest in it lies in how wide spread this principle can be used not only in physics but in many other applications, fields, and scenarios. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
As stated in the previous connection, this basic principle has ties in just about every major with any connection to math including business, sciences, and engineering. Specifically, methods like this are often used to try and model basic relationships of properties in material science.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
In industry, methods like this, or methods very similar, are used every day to help process and analyze data in a very basic and quick way.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean (information)&lt;br /&gt;
http://ncalculators.com/statistics/group-arithmetic-mean.htm (image)&lt;br /&gt;
https://quizlet.com/24263897/mcat-physics-formulas-flash-cards/ (image)&lt;br /&gt;
http://mathinsight.org/approximating_nonlinear_function_by_linear (image)&lt;br /&gt;
&lt;br /&gt;
[[Category:Momentum]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10347</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10347"/>
		<updated>2015-12-03T18:41:43Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===Example 1===&lt;br /&gt;
A train is observed to be traveling at a speed of 24 m/s before it enters a city. While in the city, it is observed going 13 m/s. What is the average velocity of the train?&lt;br /&gt;
&lt;br /&gt;
24 m/s + 13 m/s = 37 m/s &lt;br /&gt;
&lt;br /&gt;
37/2 = 18.5&lt;br /&gt;
&lt;br /&gt;
The average velocity of the train based on the analytical prediction method was 18.5 m/s.&lt;br /&gt;
&lt;br /&gt;
===Example 2===&lt;br /&gt;
A car is traveling at a speed of (18, -2, 0) m/s. Later, the car is observed to be going (22, 6, 0) m/s. If the car started at the location (40, 170, 0) what is it&#039;s position after 30 seconds?&lt;br /&gt;
&lt;br /&gt;
First, you have to find the average velocity:&lt;br /&gt;
(18, -2, 0) + (22, 6, 0) = (40, 4, 0)&lt;br /&gt;
(40, 4, 0) /2 = (20, 2, 0)&lt;br /&gt;
so the average velocity is (20, 2, 0) m/s&lt;br /&gt;
&lt;br /&gt;
Second, calculate the change in position:&lt;br /&gt;
Change in position = average velocity x time                                                                                                            &lt;br /&gt;
(20, 2, 0) * 30 = (600, 60, 0) &lt;br /&gt;
So the change in position is (600, 60, 0) m&lt;br /&gt;
&lt;br /&gt;
Finally, update the position:&lt;br /&gt;
final position = initial position + change in position&lt;br /&gt;
(40, 170, 0) + (600, 60, 0) = (640, 230, 0)&lt;br /&gt;
The final position is (640, 230, 0) m&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
Since this topic is based on such a fundamental mathematical principle, my interest in it lies in how wide spread this principle can be used not only in physics but in many other applications, fields, and scenarios. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
As stated in the previous connection, this basic principle has ties in just about every major with any connection to math including business, sciences, and engineering. Specifically, methods like this are often used to try and model basic relationships of properties in material science.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
In industry, methods like this, or methods very similar, are used every day to help process and analyze data in a very basic and quick way.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean (information)&lt;br /&gt;
http://ncalculators.com/statistics/group-arithmetic-mean.htm (image)&lt;br /&gt;
https://quizlet.com/24263897/mcat-physics-formulas-flash-cards/ (image)&lt;br /&gt;
http://mathinsight.org/approximating_nonlinear_function_by_linear (image)&lt;br /&gt;
&lt;br /&gt;
[[Category:Momentum]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10346</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10346"/>
		<updated>2015-12-03T18:41:08Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* Example 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===Example 1===&lt;br /&gt;
A train is observed to be traveling at a speed of 24 m/s before it enters a city. While in the city, it is observed going 13 m/s. What is the average velocity of the train?&lt;br /&gt;
&lt;br /&gt;
24 m/s + 13 m/s = 37 m/s &lt;br /&gt;
37/2 = 18.5&lt;br /&gt;
&lt;br /&gt;
The average velocity of the train based on the analytical prediction method was 18.5 m/s.&lt;br /&gt;
&lt;br /&gt;
===Example 2===&lt;br /&gt;
A car is traveling at a speed of (18, -2, 0) m/s. Later, the car is observed to be going (22, 6, 0) m/s. If the car started at the location (40, 170, 0) what is it&#039;s position after 30 seconds?&lt;br /&gt;
&lt;br /&gt;
First, you have to find the average velocity:&lt;br /&gt;
(18, -2, 0) + (22, 6, 0) = (40, 4, 0)&lt;br /&gt;
(40, 4, 0) /2 = (20, 2, 0)&lt;br /&gt;
so the average velocity is (20, 2, 0) m/s&lt;br /&gt;
&lt;br /&gt;
Second, calculate the change in position:&lt;br /&gt;
Change in position = average velocity x time                                                                                                            &lt;br /&gt;
(20, 2, 0) * 30 = (600, 60, 0) &lt;br /&gt;
So the change in position is (600, 60, 0) m&lt;br /&gt;
&lt;br /&gt;
Finally, update the position:&lt;br /&gt;
final position = initial position + change in position&lt;br /&gt;
(40, 170, 0) + (600, 60, 0) = (640, 230, 0)&lt;br /&gt;
The final position is (640, 230, 0) m&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
Since this topic is based on such a fundamental mathematical principle, my interest in it lies in how wide spread this principle can be used not only in physics but in many other applications, fields, and scenarios. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
As stated in the previous connection, this basic principle has ties in just about every major with any connection to math including business, sciences, and engineering. Specifically, methods like this are often used to try and model basic relationships of properties in material science.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
In industry, methods like this, or methods very similar, are used every day to help process and analyze data in a very basic and quick way.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean (information)&lt;br /&gt;
http://ncalculators.com/statistics/group-arithmetic-mean.htm (image)&lt;br /&gt;
https://quizlet.com/24263897/mcat-physics-formulas-flash-cards/ (image)&lt;br /&gt;
http://mathinsight.org/approximating_nonlinear_function_by_linear (image)&lt;br /&gt;
&lt;br /&gt;
[[Category:Momentum]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10345</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10345"/>
		<updated>2015-12-03T18:40:20Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===Example 1===&lt;br /&gt;
A train is observed to be traveling at a speed of 24 m/s before it enters a city. While in the city, it is observed going 13 m/s. What is the average velocity of the train?&lt;br /&gt;
&lt;br /&gt;
24 m/s + 13 m/s = 37 m/s &lt;br /&gt;
37/2 = 18.5&lt;br /&gt;
&lt;br /&gt;
The average velocity of the train based on the analytical prediction method was 18.5 m/s.&lt;br /&gt;
&lt;br /&gt;
===Example 2===&lt;br /&gt;
A car is traveling at a speed of (18, -2, 0) m/s. Later, the car is observed to be going (22, 6, 0) m/s. If the car started at the location (40, 170, 0) what is it&#039;s position after 30 seconds?&lt;br /&gt;
&lt;br /&gt;
First, you have to find the average velocity:&lt;br /&gt;
(18, -2, 0) + (22, 6, 0) = (40, 4, 0)&lt;br /&gt;
(40, 4, 0) /2 = (20, 2, 0)&lt;br /&gt;
so the average velocity is (20, 2, 0) m/s&lt;br /&gt;
&lt;br /&gt;
Second, calculate the change in position:&lt;br /&gt;
Change in position = average velocity x time&lt;br /&gt;
(20, 2, 0) * 30 = (600, 60, 0) &lt;br /&gt;
So the change in position is (600, 60, 0) m&lt;br /&gt;
&lt;br /&gt;
Finally, update the position:&lt;br /&gt;
final position = initial position + change in position&lt;br /&gt;
(40, 170, 0) + (600, 60, 0) = (640, 230, 0)&lt;br /&gt;
The final position is (640, 230, 0) m&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
Since this topic is based on such a fundamental mathematical principle, my interest in it lies in how wide spread this principle can be used not only in physics but in many other applications, fields, and scenarios. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
As stated in the previous connection, this basic principle has ties in just about every major with any connection to math including business, sciences, and engineering. Specifically, methods like this are often used to try and model basic relationships of properties in material science.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
In industry, methods like this, or methods very similar, are used every day to help process and analyze data in a very basic and quick way.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean (information)&lt;br /&gt;
http://ncalculators.com/statistics/group-arithmetic-mean.htm (image)&lt;br /&gt;
https://quizlet.com/24263897/mcat-physics-formulas-flash-cards/ (image)&lt;br /&gt;
http://mathinsight.org/approximating_nonlinear_function_by_linear (image)&lt;br /&gt;
&lt;br /&gt;
[[Category:Momentum]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10315</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10315"/>
		<updated>2015-12-03T18:24:17Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
Since this topic is based on such a fundamental mathematical principle, my interest in it lies in how wide spread this principle can be used not only in physics but in many other applications, fields, and scenarios. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
As stated in the previous connection, this basic principle has ties in just about every major with any connection to math including business, sciences, and engineering. Specifically, methods like this are often used to try and model basic relationships of properties in material science.&lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
In industry, methods like this, or methods very similar, are used every day to help process and analyze data in a very basic and quick way.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean (information)&lt;br /&gt;
http://ncalculators.com/statistics/group-arithmetic-mean.htm (image)&lt;br /&gt;
https://quizlet.com/24263897/mcat-physics-formulas-flash-cards/ (image)&lt;br /&gt;
http://mathinsight.org/approximating_nonlinear_function_by_linear (image)&lt;br /&gt;
&lt;br /&gt;
[[Category:Momentum]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10310</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10310"/>
		<updated>2015-12-03T18:20:12Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean (information)&lt;br /&gt;
http://ncalculators.com/statistics/group-arithmetic-mean.htm (image)&lt;br /&gt;
https://quizlet.com/24263897/mcat-physics-formulas-flash-cards/ (image)&lt;br /&gt;
http://mathinsight.org/approximating_nonlinear_function_by_linear (image)&lt;br /&gt;
&lt;br /&gt;
[[Category:Momentum]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10303</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10303"/>
		<updated>2015-12-03T18:14:47Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors,&lt;br /&gt;
Momentum Principle,&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10300</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10300"/>
		<updated>2015-12-03T18:14:20Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Vectors&lt;br /&gt;
Momentum Principle&lt;br /&gt;
Iterative Prediction&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
There are several easily accessible resources with more information on analytical prediction methods and arithmetic means&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
http://www.platinumgmat.com/gmat_study_guide/statistics_mean&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10297</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10297"/>
		<updated>2015-12-03T18:10:27Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Not only does this code show how to use the analytical prediction method using python/GlowScript, it also shows how you can use that average velocity to calculate the momentum and update the position. These are the typical calculations associated with prediction methods.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10296</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10296"/>
		<updated>2015-12-03T18:08:32Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                   [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10295</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10295"/>
		<updated>2015-12-03T18:08:14Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10294</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10294"/>
		<updated>2015-12-03T18:07:52Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                               [[File: Htmpng2.png|600px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10293</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10293"/>
		<updated>2015-12-03T18:07:37Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                                      [[File: Htmpng2.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10292</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10292"/>
		<updated>2015-12-03T18:07:21Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
                                                [[File: Htmpng2.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10289</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10289"/>
		<updated>2015-12-03T18:05:32Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In addition, an example of using this method in GlowScript can be seen below. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                [[File: Htmpng2.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Htmpng2.png&amp;diff=10288</id>
		<title>File:Htmpng2.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Htmpng2.png&amp;diff=10288"/>
		<updated>2015-12-03T18:05:14Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10280</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10280"/>
		<updated>2015-12-03T17:50:54Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10275</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10275"/>
		<updated>2015-12-03T17:48:02Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Historically, it is well known that basic algebra was discovered and implemented well before calculus, especially based on the fact that algebra was used as a basis to develop calculus. For this reason, it can be assumed that the analytical approach to physics problems related to velocity, or any other changing value, was used long before the iterative method. There is no information on who would have used this approach or when this approach was first used in a physics application.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10272</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10272"/>
		<updated>2015-12-03T17:43:25Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10271</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10271"/>
		<updated>2015-12-03T17:43:07Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmjpg2.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10270</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10270"/>
		<updated>2015-12-03T17:42:54Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Below is a visualization of the analytical prediction of the average velocity. As you can see, it takes two points, (a, f(a)) and (b, f(b)), and finds the average between the two points. Also depicted in the image is the incapability to model non-linear curves by comparing the average slope (velocity) compared to the actual slope (velocity). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmjpg2.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Htmjpg2.jpg&amp;diff=10269</id>
		<title>File:Htmjpg2.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Htmjpg2.jpg&amp;diff=10269"/>
		<updated>2015-12-03T17:42:38Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10260</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10260"/>
		<updated>2015-12-03T17:33:53Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
Here, X bar is the arithmetic mean, sigma f x is the sum of all the values, and sigma f is the total number of terms. Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10259</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10259"/>
		<updated>2015-12-03T17:31:17Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: htmpng1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Htmpng1.png&amp;diff=10258</id>
		<title>File:Htmpng1.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Htmpng1.png&amp;diff=10258"/>
		<updated>2015-12-03T17:30:50Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10255</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10255"/>
		<updated>2015-12-03T17:29:31Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.png|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10254</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10254"/>
		<updated>2015-12-03T17:28:22Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10252</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10252"/>
		<updated>2015-12-03T17:26:11Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                           [[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10251</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10251"/>
		<updated>2015-12-03T17:25:55Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|150px|middle]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10247</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10247"/>
		<updated>2015-12-03T17:25:03Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|150px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10246</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10246"/>
		<updated>2015-12-03T17:24:53Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10245</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10245"/>
		<updated>2015-12-03T17:24:40Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10244</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10244"/>
		<updated>2015-12-03T17:24:13Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|300px|thumb|middle| Where x bar is the average, sigma f x is the sum of all the of the numbers, and sigma f is the total number of terms]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10243</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10243"/>
		<updated>2015-12-03T17:22:57Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|300px|thumb|left| Where x bar is the average, sigma f x is the sum of all the of the numbers, and sigma f is the total number of terms]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10241</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10241"/>
		<updated>2015-12-03T17:21:33Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpg|200px|thumb|left|stuff]]&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10240</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10240"/>
		<updated>2015-12-03T17:20:41Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpeg|200px|thumb|left|stuff]]&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10237</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10237"/>
		<updated>2015-12-03T17:19:15Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
[[File: 1.jpeg|200px|thumb|right|you can write]]&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:1.jpg&amp;diff=10234</id>
		<title>File:1.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:1.jpg&amp;diff=10234"/>
		<updated>2015-12-03T17:17:55Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10206</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10206"/>
		<updated>2015-12-03T16:57:16Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Unlike the iterative prediction method which is derived directly from the momentum principle, the formula for analytical prediction is based of the formula for the arithmetic mean. &lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
Since we only need two values of velocity to calculate the average velocity, the formula, for this purpose, can be simplified.&lt;br /&gt;
&lt;br /&gt;
Insert formula here&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10203</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10203"/>
		<updated>2015-12-03T16:48:55Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. However, due to the method of derivation of the velocity, the analytical method is only accurate to a high degree when the force applied to the system is constant. Due to this limitation, the iterative prediction method is much more generally applicable. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10195</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10195"/>
		<updated>2015-12-03T16:43:20Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Analytical prediction uses a mathematical function that can describe the position of or velocity of a system at any given time. In contrast to iterative prediction, this means that there is no need to make multiple calculations at small steps in order to find a solution. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10178</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10178"/>
		<updated>2015-12-03T16:35:11Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod (hmcleod6)&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
State, in your own words, the main idea for this topic&lt;br /&gt;
Electric Field of Capacitor&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10176</id>
		<title>Analytical Prediction</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Analytical_Prediction&amp;diff=10176"/>
		<updated>2015-12-03T16:33:23Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: Created page with &amp;quot;By Hayden McLeod  Short Description of Topic  ==The Main Idea==  State, in your own words, the main idea for this topic Electric Field of Capacitor  ===A Mathematical Model===...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By Hayden McLeod&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
State, in your own words, the main idea for this topic&lt;br /&gt;
Electric Field of Capacitor&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
[http://www.scientificamerican.com/article/bring-science-home-reaction-time/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=10171</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=10171"/>
		<updated>2015-12-03T16:31:32Z</updated>

		<summary type="html">&lt;p&gt;Hmcleod6: /* Momentum */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Welcome to the Georgia Tech Wiki for Intro Physics.  This resources was created so that students can contribute and curate content to help those with limited or no access to a textbook.  When reading this website, please correct any errors you may come across. If you read something that isn&#039;t clear, please consider revising it!&lt;br /&gt;
&lt;br /&gt;
Looking to make a contribution?&lt;br /&gt;
#Pick a specific topic from intro physics&lt;br /&gt;
#Add that topic, as a link to a new page, under the appropriate category listed below by editing this page.&lt;br /&gt;
#Copy and paste the default [[Template]] into your new page and start editing.&lt;br /&gt;
&lt;br /&gt;
Please remember that this is not a textbook and you are not limited to expressing your ideas with only text and equations.  Whenever possible embed: pictures, videos, diagrams, simulations, computational models (e.g. Glowscript), and whatever content you think makes learning physics easier for other students.&lt;br /&gt;
&lt;br /&gt;
== Source Material ==&lt;br /&gt;
All of the content added to this resource must be in the public domain or similar free resource.  If you are unsure about a source, contact the original author for permission. That said, there is a surprisingly large amount of introductory physics content scattered across the web.  Here is an incomplete list of intro physics resources (please update as needed).&lt;br /&gt;
* A physics resource written by experts for an expert audience [https://en.wikipedia.org/wiki/Portal:Physics Physics Portal]&lt;br /&gt;
* A wiki book on modern physics [https://en.wikibooks.org/wiki/Modern_Physics Modern Physics Wiki]&lt;br /&gt;
* The MIT open courseware for intro physics [http://ocw.mit.edu/resources/res-8-002-a-wikitextbook-for-introductory-mechanics-fall-2009/index.htm MITOCW Wiki]&lt;br /&gt;
* An online concept map of intro physics [http://hyperphysics.phy-astr.gsu.edu/hbase/hph.html HyperPhysics]&lt;br /&gt;
* Interactive physics simulations [https://phet.colorado.edu/en/simulations/category/physics PhET]&lt;br /&gt;
* OpenStax algebra based intro physics textbook [https://openstaxcollege.org/textbooks/college-physics College Physics]&lt;br /&gt;
* The Open Source Physics project is a collection of online physics resources [http://www.opensourcephysics.org/ OSP]&lt;br /&gt;
* A resource guide compiled by the [http://www.aapt.org/ AAPT] for educators [http://www.compadre.org/ ComPADRE]&lt;br /&gt;
&lt;br /&gt;
== Organizing Categories ==&lt;br /&gt;
These are the broad, overarching categories, that we cover in two semester of introductory physics.  You can add subcategories or make a new category as needed.  A single topic should direct readers to a page in one of these catagories.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
===Interactions===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Kinds of Matter]]&lt;br /&gt;
**[[Ball and Spring Model of Matter]]&lt;br /&gt;
*[[Detecting Interactions]]&lt;br /&gt;
*[[Fundamental Interactions]]&lt;br /&gt;
*[[Determinism]]&lt;br /&gt;
*[[System &amp;amp; Surroundings]] &lt;br /&gt;
*[[Newton&#039;s First Law of Motion]]&lt;br /&gt;
*[[Newton&#039;s Second Law of Motion]]&lt;br /&gt;
*[[Newton&#039;s Third Law of Motion]]&lt;br /&gt;
*[[Gravitational Force]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
*[[Conservation of Charge]]&lt;br /&gt;
*[[Terminal Speed]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
*[[Speed and Velocity]]&lt;br /&gt;
*[[Electric Polarization]]&lt;br /&gt;
*[[Perpetual Freefall (Orbit)]]&lt;br /&gt;
*[[2-Dimensional Motion]]&lt;br /&gt;
*[[Center of Mass]]&lt;br /&gt;
*[[Reaction Time]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Theory===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Einstein&#039;s Theory of Special Relativity]]&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Big Bang Theory]]&lt;br /&gt;
*[[Maxwell&#039;s Electromagnetic Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
*[[String Theory]]&lt;br /&gt;
*[[Elementary Particles and Particle Physics Theory]]&lt;br /&gt;
*[[Law of Gravitation]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Notable Scientists===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Christian Doppler]]&lt;br /&gt;
*[[Albert Einstein]]&lt;br /&gt;
*[[Ernest Rutherford]]&lt;br /&gt;
*[[Joseph Henry]]&lt;br /&gt;
*[[Michael Faraday]]&lt;br /&gt;
*[[J.J. Thomson]]&lt;br /&gt;
*[[James Maxwell]]&lt;br /&gt;
*[[Robert Hooke]]&lt;br /&gt;
*[[Carl Friedrich Gauss]]&lt;br /&gt;
*[[Nikola Tesla]]&lt;br /&gt;
*[[Andre Marie Ampere]]&lt;br /&gt;
*[[Sir Isaac Newton]]&lt;br /&gt;
*[[J. Robert Oppenheimer]]&lt;br /&gt;
*[[Oliver Heaviside]]&lt;br /&gt;
*[[Rosalind Franklin]]&lt;br /&gt;
*[[Erwin Schrödinger]]&lt;br /&gt;
*[[Enrico Fermi]]&lt;br /&gt;
*[[Robert J. Van de Graaff]]&lt;br /&gt;
*[[Charles de Coulomb]]&lt;br /&gt;
*[[Hans Christian Ørsted]]&lt;br /&gt;
*[[Philo Farnsworth]]&lt;br /&gt;
*[[Niels Bohr]]&lt;br /&gt;
*[[Georg Ohm]]&lt;br /&gt;
*[[Galileo Galilei]]&lt;br /&gt;
*[[Gustav Kirchhoff]]&lt;br /&gt;
*[[Max Planck]]&lt;br /&gt;
*[[Heinrich Hertz]]&lt;br /&gt;
*[[Edwin Hall]]&lt;br /&gt;
*[[James Watt]]&lt;br /&gt;
*[[Count Alessandro Volta]]&lt;br /&gt;
*[[Josiah Willard Gibbs]]&lt;br /&gt;
*[[Richard Phillips Feynman]]&lt;br /&gt;
*[[Sir David Brewster]]&lt;br /&gt;
*[[Daniel Bernoulli]]&lt;br /&gt;
*[[William Thomson]]&lt;br /&gt;
*[[Leonhard Euler]]&lt;br /&gt;
*[[Robert Fox Bacher]]&lt;br /&gt;
*[[Stephen Hawking]]&lt;br /&gt;
*[[Amedeo Avogadro]]&lt;br /&gt;
*[[Wilhelm Conrad Roentgen]]&lt;br /&gt;
*[[Pierre Laplace]]&lt;br /&gt;
*[[Thomas Edison]]&lt;br /&gt;
*[[Hendrik Lorentz]]&lt;br /&gt;
*[[Jean-Baptiste Biot]]&lt;br /&gt;
*[[Lise Meitner]]&lt;br /&gt;
*[[Lisa Randall]]&lt;br /&gt;
*[[Felix Savart]]&lt;br /&gt;
*[[Heinrich Lenz]]&lt;br /&gt;
*[[Max Born]]&lt;br /&gt;
*[[Archimedes]]&lt;br /&gt;
*[[Jean Baptiste Biot]]&lt;br /&gt;
*[[Carl Sagan]]&lt;br /&gt;
*[[Eugene Wigner]]&lt;br /&gt;
*[[Marie Curie]]&lt;br /&gt;
*[[Pierre Curie]]&lt;br /&gt;
*[[Werner Heisenberg]]&lt;br /&gt;
*[[Johannes Diderik van der Waals]]&lt;br /&gt;
*[[Louis de Broglie]]&lt;br /&gt;
*[[Aristotle]]&lt;br /&gt;
*[[Émilie du Châtelet]]&lt;br /&gt;
*[[Blaise Pascal]]&lt;br /&gt;
*[[Benjamin Franklin]]&lt;br /&gt;
*[[James Chadwick]]&lt;br /&gt;
*[[Henry Cavendish]]&lt;br /&gt;
*[[Thomas Young]]&lt;br /&gt;
*[[James Prescott Joule]]&lt;br /&gt;
*[[John Bardeen]]&lt;br /&gt;
*[[Leo Baekeland]]&lt;br /&gt;
*[[Alhazen]]&lt;br /&gt;
*[[Willebrod Snell]]&lt;br /&gt;
*[[Johannes Kepler]]&lt;br /&gt;
*[[Johann Wilhelm Ritter]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Properties of Matter===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Mass]]&lt;br /&gt;
*[[Velocity]]&lt;br /&gt;
*[[Relative Velocity]]&lt;br /&gt;
*[[Density]]&lt;br /&gt;
*[[Charge]]&lt;br /&gt;
*[[Spin]]&lt;br /&gt;
*[[SI Units]]&lt;br /&gt;
*[[Heat Capacity]]&lt;br /&gt;
*[[Specific Heat]]&lt;br /&gt;
*[[Wavelength]]&lt;br /&gt;
*[[Conductivity]]&lt;br /&gt;
*[[Malleability]]&lt;br /&gt;
*[[Weight]]&lt;br /&gt;
*[[Boiling Point]]&lt;br /&gt;
*[[Melting Point]]&lt;br /&gt;
*[[Inertia]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Contact Interactions===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Young&#039;s Modulus]]&lt;br /&gt;
* [[Friction]]&lt;br /&gt;
* [[Tension]]&lt;br /&gt;
* [[Hooke&#039;s Law]]&lt;br /&gt;
*[[Centripetal Force and Curving Motion]]&lt;br /&gt;
*[[Compression or Normal Force]]&lt;br /&gt;
* [[Length and Stiffness of an Interatomic Bond]]&lt;br /&gt;
* [[Speed of Sound in a Solid]]&lt;br /&gt;
* [[Iterative Prediction of Spring-Mass System]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Momentum===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Vectors]]&lt;br /&gt;
* [[Kinematics]]&lt;br /&gt;
* [[Conservation of Momentum]]&lt;br /&gt;
* [[Predicting Change in multiple dimensions]]&lt;br /&gt;
* [[Momentum Principle]]&lt;br /&gt;
* [[Impulse Momentum]]&lt;br /&gt;
* [[Curving Motion]]&lt;br /&gt;
* [[Multi-particle Analysis of Momentum]]&lt;br /&gt;
* [[Iterative Prediction]]&lt;br /&gt;
* [[Analytical Prediction]]&lt;br /&gt;
* [[Newton&#039;s Laws and Linear Momentum]]&lt;br /&gt;
* [[Net Force]]&lt;br /&gt;
* [[Center of Mass]]&lt;br /&gt;
* [[Momentum at High Speeds]]&lt;br /&gt;
* [[Change in Momentum in Time for Curving Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Angular Momentum===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[The Moments of Inertia]]&lt;br /&gt;
* [[Moment of Inertia for a ring]]&lt;br /&gt;
* [[Rotation]]&lt;br /&gt;
* [[Torque]]&lt;br /&gt;
* [[Systems with Zero Torque]]&lt;br /&gt;
* [[Systems with Nonzero Torque]]&lt;br /&gt;
* [[Right Hand Rule]]&lt;br /&gt;
* [[Angular Velocity]]&lt;br /&gt;
* [[Predicting the Position of a Rotating System]]&lt;br /&gt;
* [[Translational Angular Momentum]]&lt;br /&gt;
* [[The Angular Momentum Principle]]&lt;br /&gt;
* [[Rotational Angular Momentum]]&lt;br /&gt;
* [[Total Angular Momentum]]&lt;br /&gt;
* [[Gyroscopes]]&lt;br /&gt;
* [[Angular Momentum Compared to Linear Momentum]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Energy===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[The Photoelectric Effect]]&lt;br /&gt;
*[[Photons]]&lt;br /&gt;
*[[The Energy Principle]]&lt;br /&gt;
*[[Predicting Change]]&lt;br /&gt;
*[[Rest Mass Energy]]&lt;br /&gt;
*[[Kinetic Energy]]&lt;br /&gt;
*[[Potential Energy]]&lt;br /&gt;
**[[Potential Energy for a Magnetic Dipole]]&lt;br /&gt;
**[[Potential Energy of a Multiparticle System]]&lt;br /&gt;
*[[Work]]&lt;br /&gt;
*[[Thermal Energy]]&lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Energy Transfer due to a Temperature Difference]]&lt;br /&gt;
*[[Gravitational Potential Energy]]&lt;br /&gt;
*[[Point Particle Systems]]&lt;br /&gt;
*[[Real Systems]]&lt;br /&gt;
*[[Spring Potential Energy]]&lt;br /&gt;
**[[Ball and Spring Model]]&lt;br /&gt;
*[[Internal Energy]]&lt;br /&gt;
**[[Potential Energy of a Pair of Neutral Atoms]]&lt;br /&gt;
*[[Translational, Rotational and Vibrational Energy]]&lt;br /&gt;
*[[Franck-Hertz Experiment]]&lt;br /&gt;
*[[Power (Mechanical)]]&lt;br /&gt;
*[[Transformation of Energy]]&lt;br /&gt;
&lt;br /&gt;
*[[Energy Graphs]]&lt;br /&gt;
*[[Air Resistance]]&lt;br /&gt;
*[[Electronic Energy Levels]]&lt;br /&gt;
*[[Second Law of Thermodynamics and Entropy]]&lt;br /&gt;
*[[Specific Heat Capacity]]&lt;br /&gt;
*[[Electronic Energy Levels and Photons]]&lt;br /&gt;
*[[Energy Density]]&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Collisions===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Collisions]]&lt;br /&gt;
*[[Maximally Inelastic Collision]]&lt;br /&gt;
*[[Elastic Collisions]]&lt;br /&gt;
*[[Inelastic Collisions]]&lt;br /&gt;
*[[Head-on Collision of Equal Masses]]&lt;br /&gt;
*[[Head-on Collision of Unequal Masses]]&lt;br /&gt;
*[[Frame of Reference]]&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fields===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Electric Field]] of a&lt;br /&gt;
** [[Point Charge]]&lt;br /&gt;
** [[Electric Dipole]]&lt;br /&gt;
** [[Capacitor]]&lt;br /&gt;
** [[Charged Rod]]&lt;br /&gt;
** [[Charged Ring]]&lt;br /&gt;
** [[Charged Disk]]&lt;br /&gt;
** [[Charged Spherical Shell]]&lt;br /&gt;
** [[Charged Cylinder]]&lt;br /&gt;
** [[Charge Density]]&lt;br /&gt;
**[[A Solid Sphere Charged Throughout Its Volume]]&lt;br /&gt;
*[[Electric Potential]] &lt;br /&gt;
**[[Potential Difference Path Independence]]&lt;br /&gt;
**[[Potential Difference in a Uniform Field]]&lt;br /&gt;
**[[Potential Difference of point charge in a non-Uniform Field]]&lt;br /&gt;
**[[Sign of Potential Difference]]&lt;br /&gt;
**[[Potential Difference in an Insulator]]&lt;br /&gt;
**[[Energy Density and Electric Field]]&lt;br /&gt;
** [[Systems of Charged Objects]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
**[[Polarization of an Atom]]&lt;br /&gt;
*[[Charge Motion in Metals]]&lt;br /&gt;
*[[Charge Transfer]]&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
**[[Right-Hand Rule]]&lt;br /&gt;
**[[Direction of Magnetic Field]]&lt;br /&gt;
**[[Magnetic Field of a Long Straight Wire]]&lt;br /&gt;
**[[Magnetic Field of a Loop]]&lt;br /&gt;
**[[Magnetic Field of a Solenoid]]&lt;br /&gt;
**[[Bar Magnet]]&lt;br /&gt;
**[[Magnetic Dipole Moment]]&lt;br /&gt;
***[[Stern-Gerlach Experiment]]&lt;br /&gt;
**[[Magnetic Force]]&lt;br /&gt;
*[[Combining Electric and Magnetic Forces]]&lt;br /&gt;
**[[Magnetic Torque]]&lt;br /&gt;
**[[Hall Effect]]&lt;br /&gt;
**[[Lorentz Force]]&lt;br /&gt;
**[[Biot-Savart Law]]&lt;br /&gt;
**[[Biot-Savart Law for Currents]]&lt;br /&gt;
**[[Integration Techniques for Magnetic Field]]&lt;br /&gt;
**[[Sparks in Air]]&lt;br /&gt;
**[[Motional Emf]]&lt;br /&gt;
**[[Detecting a Magnetic Field]]&lt;br /&gt;
**[[Moving Point Charge]]&lt;br /&gt;
**[[Non-Coulomb Electric Field]]&lt;br /&gt;
**[[Motors and Generators]]&lt;br /&gt;
**[[Solenoid Applications]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Circuits===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Components]]&lt;br /&gt;
*[[Steady State]]&lt;br /&gt;
*[[Non Steady State]]&lt;br /&gt;
*[[Charging and Discharging a Capacitor]]&lt;br /&gt;
*[[Thin and Thick Wires]]&lt;br /&gt;
*[[Node Rule]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Resistivity]]&lt;br /&gt;
*[[Power in a circuit]]&lt;br /&gt;
*[[Ammeters,Voltmeters,Ohmmeters]]&lt;br /&gt;
*[[Current]]&lt;br /&gt;
**[[AC]]&lt;br /&gt;
*[[Ohm&#039;s Law]]&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[Parallel Circuits]]&lt;br /&gt;
*[[RC]]&lt;br /&gt;
*[[AC vs DC]]&lt;br /&gt;
*[[Charge in a RC Circuit]]&lt;br /&gt;
*[[Current in a RC circuit]]&lt;br /&gt;
*[[Circular Loop of Wire]]&lt;br /&gt;
*[[Current in a RL Circuit]]&lt;br /&gt;
*[[RL Circuit]]&lt;br /&gt;
*[[LC Circuit]]&lt;br /&gt;
*[[Surface Charge Distributions]]&lt;br /&gt;
*[[Feedback]]&lt;br /&gt;
*[[Transformers (Circuits)]]&lt;br /&gt;
*[[Resistors and Conductivity]]&lt;br /&gt;
*[[Semiconductor Devices]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Maxwell&#039;s Equations===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Gauss&#039;s Flux Theorem]]&lt;br /&gt;
**[[Electric Fields]]&lt;br /&gt;
**[[Magnetic Fields]]&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
**[[Magnetic Field of Coaxial Cable Using Ampere&#039;s Law]]&lt;br /&gt;
**[[Magnetic Field of a Long Thick Wire Using Ampere&#039;s Law]]&lt;br /&gt;
**[[Magnetic Field of a Toroid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
**[[Curly Electric Fields]]&lt;br /&gt;
**[[Inductance]]&lt;br /&gt;
***[[Transformers from a physics standpoint]]&lt;br /&gt;
***[[Energy Density]]&lt;br /&gt;
**[[Lenz&#039;s Law]]&lt;br /&gt;
***[[Lenz Effect and the Jumping Ring]]&lt;br /&gt;
**[[Motional Emf using Faraday&#039;s Law]]&lt;br /&gt;
*[[Ampere-Maxwell Law]]&lt;br /&gt;
*[[Superconductors]]&lt;br /&gt;
**[[Meissner effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Radiation===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Producing a Radiative Electric Field]]&lt;br /&gt;
*[[Sinusoidal Electromagnetic Radiaton]]&lt;br /&gt;
*[[Lenses]]&lt;br /&gt;
*[[Energy and Momentum Analysis in Radiation]]&lt;br /&gt;
**[[Poynting Vector]]&lt;br /&gt;
*[[Electromagnetic Propagation]]&lt;br /&gt;
**[[Wavelength and Frequency]]&lt;br /&gt;
*[[Snell&#039;s Law]]&lt;br /&gt;
*[[Effects of Radiation on Matter]]&lt;br /&gt;
*[[Light Propagation Through a Medium]]&lt;br /&gt;
*[[Light Scaterring: Why is the Sky Blue]]&lt;br /&gt;
*[[Light Refraction: Bending of light]]&lt;br /&gt;
*[[Cherenkov Radiation]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sound===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Doppler Effect]]&lt;br /&gt;
*[[Nature, Behavior, and Properties of Sound]]&lt;br /&gt;
*[[Resonance]]&lt;br /&gt;
*[[Sound Barrier]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Waves===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Multisource Interference: Diffraction]]&lt;br /&gt;
*[[Standing waves]]&lt;br /&gt;
*[[Gravitational waves]]&lt;br /&gt;
*[[Wave-Particle Duality]]&lt;br /&gt;
*[[Electromagnetic Waves]]&lt;br /&gt;
*[[Electromagnetic Spectrum]]&lt;br /&gt;
*[[Color Light Wave]]&lt;br /&gt;
*[[Mechanical Waves]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Real Life Applications of Electromagnetic Principles===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electromagnetic Junkyard Cranes]]&lt;br /&gt;
*[[Maglev Trains]]&lt;br /&gt;
*[[Spark Plugs]]&lt;br /&gt;
*[[Metal Detectors]]&lt;br /&gt;
*[[The Microwave]]&lt;br /&gt;
*[[Speakers]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* Commonly used wiki commands [https://en.wikipedia.org/wiki/Help:Cheatsheet Wiki Cheatsheet]&lt;br /&gt;
* A guide to representing equations in math mode [https://en.wikipedia.org/wiki/Help:Displaying_a_formula Wiki Math Mode]&lt;br /&gt;
* A page to keep track of all the physics [[Constants]]&lt;br /&gt;
* An overview of [[VPython]], [http://www.physicsbook.gatech.edu/VPython_basics beginner guide to VPython]&lt;/div&gt;</summary>
		<author><name>Hmcleod6</name></author>
	</entry>
</feed>