<?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=Mxu86</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=Mxu86"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Mxu86"/>
	<updated>2026-05-20T16:24:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5630</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5630"/>
		<updated>2015-12-01T05:21:03Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* The Main Idea */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A page about weight as a property of matter. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Created by Michael Xu (mxu86)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
&lt;br /&gt;
An object&#039;s weight is commonly confused with its mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property that measures the amount of matter within an object. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
#&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
#&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
#&amp;quot;How do truck weigh stations work?&amp;quot;  01 May 2001.  HowStuffWorks.com. Web. 1 Dec. 2015.&amp;lt;http://science.howstuffworks.com/engineering/civil/question626.htm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5629</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5629"/>
		<updated>2015-12-01T05:20:32Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* The Main Idea */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A page about weight as a property of matter. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Created by Michael Xu (mxu86)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
&lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property that measures the amount of matter within an object. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
#&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
#&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
#&amp;quot;How do truck weigh stations work?&amp;quot;  01 May 2001.  HowStuffWorks.com. Web. 1 Dec. 2015.&amp;lt;http://science.howstuffworks.com/engineering/civil/question626.htm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5625</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5625"/>
		<updated>2015-12-01T05:18:55Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A page about weight as a property of matter. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Created by Michael Xu (mxu86)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
#&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
#&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
#&amp;quot;How do truck weigh stations work?&amp;quot;  01 May 2001.  HowStuffWorks.com. Web. 1 Dec. 2015.&amp;lt;http://science.howstuffworks.com/engineering/civil/question626.htm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5624</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5624"/>
		<updated>2015-12-01T05:16:45Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A page about weight as a property of matter. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Created by Michael Xu (mxu86)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
#&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
#&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
#&amp;quot;How do truck weigh stations work?&amp;quot;  01 May 2001.  HowStuffWorks.com. Web. 1 Dec. 2015.&amp;lt;http://science.howstuffworks.com/engineering/civil/question626.htm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5623</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5623"/>
		<updated>2015-12-01T05:15:10Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
#&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
#&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
#&amp;quot;How do truck weigh stations work?&amp;quot;  01 May 2001.  HowStuffWorks.com. Web. 1 Dec. 2015.&amp;lt;http://science.howstuffworks.com/engineering/civil/question626.htm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5620</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5620"/>
		<updated>2015-12-01T05:14:17Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
#&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
#&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
#&amp;quot;How do truck weigh stations work?&amp;quot;  01 May 2001.  HowStuffWorks.com. &amp;lt;http://science.howstuffworks.com/engineering/civil/question626.htm&amp;gt;  01 December 2015.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5616</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5616"/>
		<updated>2015-12-01T05:13:05Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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 most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
##Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. Weight is one property, among many, that must be taken into consideration when choosing a material for an application or designing a new material altogether. &lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
##The idea of weight is used on most United States highways as a form of tax collection and safety. Weigh stations, built out of tough concrete and steel, use a series of conductive wires or sensors to determine the change in voltage that a load creates when acting upon these wires and sensors. Calculations then determine the corresponding weight based on that voltage difference. These weigh stations check every large tractor trailer to enforce taxes and maintain a safe load that travels upon the roads.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5606</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5606"/>
		<updated>2015-12-01T05:01:12Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Most problems involving weight calculation are simple; complex problems usually instead involve gravitational force and space.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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;
&lt;br /&gt;
#Since most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
&lt;br /&gt;
#Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. &lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
#Weight&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5570</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5570"/>
		<updated>2015-12-01T04:34:14Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Connectedness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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;
&lt;br /&gt;
#Since most or all of my future work in engineering will be on planet Earth, future calculations and research may revolve around weight, mass, and other properties of matter. In addition, weight as well as weightlessness and space intrigue me, and I intend to do work in materials science that relates to space exploration. &lt;br /&gt;
&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
&lt;br /&gt;
#Materials science involves engineering, physics, and chemistry, so understanding the intrinsic properties of matter is crucial to eventually manipulating and creating new combinations of materials. &lt;br /&gt;
&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
#Weight&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5569</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5569"/>
		<updated>2015-12-01T04:30:41Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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;
Since weight is essentially the force of gravitation, refer to [[Gravitational Force]] for more about the history of the Law of Gravitation.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5566</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5566"/>
		<updated>2015-12-01T04:29:03Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&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;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5564</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5564"/>
		<updated>2015-12-01T04:27:07Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* The Main Idea */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the textbook, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5563</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5563"/>
		<updated>2015-12-01T04:26:32Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
[[Vectors]]&lt;br /&gt;
&lt;br /&gt;
[[Mass]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Force]]&lt;br /&gt;
&lt;br /&gt;
[[Gravitational Potential Energy]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[http://www.physicsclassroom.com/ Physics Classroom lessons and notes]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5557</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5557"/>
		<updated>2015-12-01T04:23:23Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Further reading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
Chabay &amp;amp; Sherwood: Matters and Interactions -- Modern Mechanics Volume 1, 4th Edition&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5487</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5487"/>
		<updated>2015-12-01T03:21:45Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
1. &amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
2. &amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
3. &amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5486</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5486"/>
		<updated>2015-12-01T03:21:09Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;quot;Weight.&amp;quot; Wikipedia. Wikimedia Foundation. Web. 1 Dec. 2015. &amp;lt;https://en.wikipedia.org/wiki/Weight#Gravitational_definition&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5480</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5480"/>
		<updated>2015-12-01T03:18:19Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Types of Forces.&amp;quot; Types of Forces. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/newtlaws/Lesson-2/Types-of-Forces&amp;gt;.&lt;br /&gt;
&amp;quot;The Value of G.&amp;quot; The Value of G. Physics Classroom. Web. 1 Dec. 2015. &amp;lt;http://www.physicsclassroom.com/class/circles/Lesson-3/The-Value-of-g&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5470</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5470"/>
		<updated>2015-12-01T03:12:16Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;, and it can be simplified to &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = mg}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5467</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5467"/>
		<updated>2015-12-01T03:10:42Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Simple */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&#039;&#039;Determine the weight in Newtons of a 55 kilogram barbell on the surface of Mars, given the gravitational acceleration&#039;&#039; &amp;lt;math&amp;gt;{g}_{Mars} = 3.75\frac{m}{{s}^{2}}&amp;lt;/math&amp;gt;&#039;&#039;.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = m{g}_{Mars} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 55kg*3.75\frac{m}{{s}^{2}} &amp;lt;/math&amp;gt;&lt;br /&gt;
::&amp;lt;math&amp;gt; \left\vert{\vec{W}}\right\vert = 206.25 N &amp;lt;/math&amp;gt;&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5445</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5445"/>
		<updated>2015-12-01T02:55:33Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* A Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {m}\vec{g}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, &amp;lt;math&amp;gt;{{&amp;lt;0,-9.8,0&amp;gt;} \frac{m}{{s}^{2}}}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Scalar weight would simply be the magnitude of the gravitational force, &amp;lt;math&amp;gt;{\left\vert{\vec{W}}\right\vert = \left\vert{\vec{F}_{g}}\right\vert}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5359</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5359"/>
		<updated>2015-12-01T02:23:45Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {mg}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, -9.8 meters per second squared. &lt;br /&gt;
&lt;br /&gt;
&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;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
[[File:Weightcode.JPG|400px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
     &#039;&#039;&#039;# Initializing sphere object&#039;&#039;&#039;&lt;br /&gt;
     &lt;br /&gt;
     ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Defining constants&#039;&#039;&#039;&lt;br /&gt;
     g = vec(0,-9.8,0) &#039;&#039;#gravitational acceleration&#039;&#039;&lt;br /&gt;
     ball.m=0.1        &#039;&#039;#mass of the ball in kg&#039;&#039;&lt;br /&gt;
     W = ball.m*g      &#039;&#039;#weight of the ball on Earth&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;# Printing values&lt;br /&gt;
     print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
     print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5348</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5348"/>
		<updated>2015-12-01T02:17:43Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {mg}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, -9.8 meters per second squared. &lt;br /&gt;
&lt;br /&gt;
&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;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
      &#039;&#039;&#039;#Calculate the weight of an object&#039;&#039;&#039;&amp;lt;/code&amp;gt;&lt;br /&gt;
[[File:Weightcode.JPG|300px|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ball=sphere(pos=vec(0,0,0), radius=0.02, color=color.yellow, make_trail=true)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;## Defining constants&#039;&#039;&#039;&lt;br /&gt;
g = vec(0,-9.8,0) #gravitational acceleration&lt;br /&gt;
ball.m=0.1 #mass of the ball in kg&lt;br /&gt;
W = ball.m*g #weight of the ball on Earth&lt;br /&gt;
&lt;br /&gt;
print(&amp;quot;Scalar weight of the ball:&amp;quot;, mag(W), &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
print(&amp;quot;Force of gravity exerted on the ball:&amp;quot;, W, &amp;quot;kg m/s^2 or N&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Weightcode.JPG&amp;diff=5344</id>
		<title>File:Weightcode.JPG</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Weightcode.JPG&amp;diff=5344"/>
		<updated>2015-12-01T02:15:01Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: Image of code executed for the Weight page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Image of code executed for the Weight page&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5337</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5337"/>
		<updated>2015-12-01T02:08:31Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* A Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {mg}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, -9.8 meters per second squared. &lt;br /&gt;
&lt;br /&gt;
&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;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/e47d83e127?toggleCode=true&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5334</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5334"/>
		<updated>2015-12-01T02:07:46Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In physics, weight describes the [[Gravitational Force]] upon a mass, usually relative to Earth or a planet.&#039;&#039;&#039; Depending on the source, weight may be defined as a scalar - the magnitude of the gravitational force on an object - or a vector equal to gravitational force. &lt;br /&gt;
An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{W} = \vec{F}_{g} = {mg}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, -9.8 meters per second squared. &lt;br /&gt;
&lt;br /&gt;
&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;
A simple segment of code that calculates the both scalar and vector weight (gravitational force) exerted upon a ball. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/e47d83e127?start=result&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5308</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5308"/>
		<updated>2015-12-01T01:44:30Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Weight describes the *[[Gravitational Force]] upon a mass, usually relative to Earth or a planet. An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{F}_{g} = {mg}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, -9.8 meters per second squared. &lt;br /&gt;
&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5307</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5307"/>
		<updated>2015-12-01T01:43:41Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&lt;br /&gt;
&lt;br /&gt;
A page about weight as a property of matter.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Weight describes the *[[gravitational force]] upon a mass, usually relative to Earth or a planet. An object&#039;s weight is commonly confused with mass, but instead it is a force that depends on another body of matter, while mass is an intrinsic property of matter. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
A mass &#039;&#039;m&#039;&#039;&#039;s weight near the surface of the Earth is represented by &amp;lt;math&amp;gt;{\vec{F}_{g} = {mg}}&amp;lt;/math&amp;gt; where &#039;&#039;g&#039;&#039; is the gravitation acceleration of Earth, -9.8 meters per second squared. &lt;br /&gt;
&lt;br /&gt;
&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5216</id>
		<title>Weight</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Weight&amp;diff=5216"/>
		<updated>2015-12-01T00:21:57Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: Created page with &amp;quot;Claimed by mxu86 (Michael Xu)  Short Description of Topic  ==The Main Idea==  State, in your own words, the main idea for this topic Electric Field of Capacitor  ===A Mathemat...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by mxu86 (Michael Xu)&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;
&lt;br /&gt;
Internet resources on this topic&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>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=5214</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=5214"/>
		<updated>2015-12-01T00:20:56Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Properties of Matter */&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;
*[[Detecting Interactions]]&lt;br /&gt;
*[[Fundamental Interactions]]  &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;
*[[Terminal Speed]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
*[[Speed and Velocity]]&lt;br /&gt;
*[[Electric Polarization]]&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;
===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;
&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;
===Notable Scientists===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&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;
&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;
*[[Weight]]&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;
&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;
* [[Newton&#039;s Laws and Linear Momentum]]&lt;br /&gt;
* [[Net Force]]&lt;br /&gt;
* [[Center of Mass]]&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 a Change in Rotation]]&lt;br /&gt;
* [[The Angular Momentum Principle]]&lt;br /&gt;
* [[Rotational Angular Momentum]]&lt;br /&gt;
* [[Total Angular 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 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;
*[[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;
*[[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]]&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;
*[[Quantized Energy Levels]]&lt;br /&gt;
*[[Energy Density]]&lt;br /&gt;
*[[Relativistic Kinetic Energy]]&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;
*[[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;
**[[A Solid Sphere Charged Throughout Its Volume]]&lt;br /&gt;
*[[Electric Potential]] &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;
*[[Electric Force]]&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Charge Motion in Metals]]&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 Force]]&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;
&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;
*[[Node Rule]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Power in a circuit]]&lt;br /&gt;
*[[Ammeters,Voltmeters,Ohmmeters]]&lt;br /&gt;
*[[Current]]&lt;br /&gt;
*[[Ohm&#039;s Law]]&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[RC]]&lt;br /&gt;
*[[Circular Loop of Wire]]&lt;br /&gt;
*[[RL Circuit]]&lt;br /&gt;
*[[LC Circuit]]&lt;br /&gt;
*[[Surface Charge Distributions]]&lt;br /&gt;
*[[Feedback]]&lt;br /&gt;
*[[Transformers]]&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;
*[[Faraday&#039;s Law]]&lt;br /&gt;
**[[Curly Electric Fields]]&lt;br /&gt;
**[[Inductance]]&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;
**[[Superconducters]]&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;
*[[Electromagnetic Propagation]]&lt;br /&gt;
*[[Snell&#039;s Law]]&lt;br /&gt;
*[[Light Propagation Through a Medium]]&lt;br /&gt;
*[[Light Scaterring: Why is the Sky Blue]]&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;
*[[blahb]]&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]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=5207</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=5207"/>
		<updated>2015-12-01T00:15:40Z</updated>

		<summary type="html">&lt;p&gt;Mxu86: /* Interactions */&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;
*[[Detecting Interactions]]&lt;br /&gt;
*[[Fundamental Interactions]]  &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;
*[[Terminal Speed]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
*[[Speed and Velocity]]&lt;br /&gt;
*[[Electric Polarization]]&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;
===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;
&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;
===Notable Scientists===&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&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;
&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;
&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;
&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;
* [[Newton&#039;s Laws and Linear Momentum]]&lt;br /&gt;
* [[Net Force]]&lt;br /&gt;
* [[Center of Mass]]&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 a Change in Rotation]]&lt;br /&gt;
* [[The Angular Momentum Principle]]&lt;br /&gt;
* [[Rotational Angular Momentum]]&lt;br /&gt;
* [[Total Angular 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 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;
*[[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;
*[[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]]&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;
*[[Quantized Energy Levels]]&lt;br /&gt;
*[[Energy Density]]&lt;br /&gt;
*[[Relativistic Kinetic Energy]]&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;
*[[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;
**[[A Solid Sphere Charged Throughout Its Volume]]&lt;br /&gt;
*[[Electric Potential]] &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;
*[[Electric Force]]&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Charge Motion in Metals]]&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 Force]]&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;
&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;
*[[Node Rule]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Power in a circuit]]&lt;br /&gt;
*[[Ammeters,Voltmeters,Ohmmeters]]&lt;br /&gt;
*[[Current]]&lt;br /&gt;
*[[Ohm&#039;s Law]]&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[RC]]&lt;br /&gt;
*[[Circular Loop of Wire]]&lt;br /&gt;
*[[RL Circuit]]&lt;br /&gt;
*[[LC Circuit]]&lt;br /&gt;
*[[Surface Charge Distributions]]&lt;br /&gt;
*[[Feedback]]&lt;br /&gt;
*[[Transformers]]&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;
*[[Faraday&#039;s Law]]&lt;br /&gt;
**[[Curly Electric Fields]]&lt;br /&gt;
**[[Inductance]]&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;
**[[Superconducters]]&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;
*[[Electromagnetic Propagation]]&lt;br /&gt;
*[[Snell&#039;s Law]]&lt;br /&gt;
*[[Light Propagation Through a Medium]]&lt;br /&gt;
*[[Light Scaterring: Why is the Sky Blue]]&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;
*[[blahb]]&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]]&lt;/div&gt;</summary>
		<author><name>Mxu86</name></author>
	</entry>
</feed>