<?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=Rsharma443</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=Rsharma443"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Rsharma443"/>
	<updated>2026-05-05T22:37:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Superposition_principle&amp;diff=47544</id>
		<title>Superposition principle</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Superposition_principle&amp;diff=47544"/>
		<updated>2025-12-01T04:26:39Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: /* The Main Idea */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Rithwik Sharma Fall 2025&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This page explains the superposition principle and brings together examples, models, and applications to make the idea easier to learn.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The superposition principle says that when several influences act on a system, the total response is the sum of the individual responses. For electric fields, this means each charge creates its own field independently, and the net field is found by adding all of them as vectors. &lt;br /&gt;
&lt;br /&gt;
It shows up in many areas of physics and engineering. In circuits, the total voltage at a node can be found by adding contributions from multiple sources. In mechanics, forces from different components of a structure add to give a net reaction. In fields, superposition makes it possible to calculate complex electric and magnetic environments by breaking the problem into simpler pieces.&lt;br /&gt;
&lt;br /&gt;
All in all, the key idea is that each contribution acts independently. Nothing “distorts” another field, so the total is just the vector addition of all of them.&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
The net electric field due to two or more charges is the vector sum of each field due to each individual charge. This not only applies to Electric Fields, but Magnetic Fields as well. It is important to note that in the superposition principle, the electric field caused by a charge is not affected by the presence of other charges. It is important to note that this principle applies to all linear systems, note just those of fields.  It has the same net result for mechanics as well. Below are the 2 predominate mathematical models for the principle. &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;F(x_1+x_2)=F(x_1)+F(x_2) \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;F(a x)=a F(x) \,&amp;lt;/math&amp;gt;&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Here is a python program that calculates and displays the electric as well as magnetic field at a specific observation location for a &#039;&#039;&#039;moving dipole&#039;&#039;&#039;. The dipole is a negative and positive charge &#039;&#039;q&#039;&#039; and distance &#039;&#039;s&#039;&#039;. Write a porgram that will use the given constants to do this.&lt;br /&gt;
&lt;br /&gt;
    # GlowScript 2.0 VPython&lt;br /&gt;
    &lt;br /&gt;
    magconstant = 1e-7&lt;br /&gt;
    oofpez = 9e9&lt;br /&gt;
    q=1.6e-19&lt;br /&gt;
    s = 1e-9&lt;br /&gt;
    pluscharge = sphere(pos=vector(-5*s, 0,-s/2), radius=1e-10, color=color.red)&lt;br /&gt;
    minuscharge = sphere(pos=vector(-5*s, 0, s/2), radius=1e-10, color=color.blue)&lt;br /&gt;
    velocity = vector(4e4,0,0) # The dipoles cm velocity   &lt;br /&gt;
    robs = vector(0,s,0)&lt;br /&gt;
    &lt;br /&gt;
    # Initializes two arrows (E and B) at the observation location&lt;br /&gt;
    E = arrow(pos = robs, axis=vector(0,0,0), color = color.cyan)&lt;br /&gt;
    B = arrow(pos = robs, axis=vector(0,0,0), color = color.magenta)&lt;br /&gt;
    &lt;br /&gt;
    # Loop that updates dipole position as well as electric and magnetic field&lt;br /&gt;
    dt = 1e-18&lt;br /&gt;
    &lt;br /&gt;
    while pluscharge.pos.x &amp;lt; 10*s:&lt;br /&gt;
    &lt;br /&gt;
        rate(100)&lt;br /&gt;
        &lt;br /&gt;
        rplus = robs - pluscharge.pos&lt;br /&gt;
        rplusmag = mag(rplus)&lt;br /&gt;
        rplushat = norm(rplus)&lt;br /&gt;
        &lt;br /&gt;
        Eplus = ((oofpez * q) / (rplusmag ** 2))&lt;br /&gt;
        Bplus = magconstant * q * cross(velocity, rplushat) / rplusmag ** 2&lt;br /&gt;
        &lt;br /&gt;
        rminus = robs - minuscharge.pos&lt;br /&gt;
        rminusmag = mag(rminus)&lt;br /&gt;
        rminushat = norm(rminus)&lt;br /&gt;
        &lt;br /&gt;
        Eminus = (oofpez * (-q) / (rminus ** 2)) * rminus&lt;br /&gt;
        Bminus = (magconstant * (-q) * cross(velocity, rminushat)) / (rminushat ** 2)&lt;br /&gt;
        &lt;br /&gt;
        #Calculates the new E and B net fields&lt;br /&gt;
        Enet = Eplus + Eminus&lt;br /&gt;
        Bnet = Bplus + Bminus&lt;br /&gt;
        &lt;br /&gt;
        # Updates the E and B fields arrows&lt;br /&gt;
        E.axis = Enet&lt;br /&gt;
        B.axis = Bnet&lt;br /&gt;
        from visual import * #import the visual module&lt;br /&gt;
        &lt;br /&gt;
        rod = cylinder(pos=(0,2,1), axis=(5,0,0), radius=1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notice that this uses the principle of superposition. The magnetic and electric fields of the two particles in the dipole are added. This determines the net field at the observation location and is therefore a perfect example of superposition. This is a very elegant and simple example of the principle.  It is essentially stated here as the net force as the sum of all other forces.  When using the principle in this way it is very important to note the direction of the forces, as they greatly effect the outcome of the answer.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;300px&amp;quot;&amp;gt;&lt;br /&gt;
File:Superposition Principle.JPG| This picture shows the electric field at the location of q3. Note that the Electric Fields of both q1 and q2 were both calculated individually (but do not react because of one another) and summed up to get the net electric field.  Notice the importance of the signs.&lt;br /&gt;
File:1111.PNG| Even by adding more source charges, the individual electric fields created by each source charge are unaffected by subsequent charges.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
[[File:Electric_Forces_Fields_P1.JPG]]&lt;br /&gt;
&lt;br /&gt;
Say that we have two positive particles at the above locations. Ignore the charges and distance provided for now. The electric field at the location of the negative charge is &amp;lt;math&amp;gt;\vec{E_1} = &amp;lt;2\hat{i}+0\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C and &amp;lt;math&amp;gt;\vec{E_2} = &amp;lt;0\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C. What is the net electric field at the location of the electron? Use the principle of superposition.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Answer:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since we know the electric fields from both particles at the point, the superposition principle tells us that we must add the fields together to find the net field. Doing this gives us:&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E_1} + \vec{E_2}    =   &amp;lt;2\hat{i}+0\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C + &amp;lt;math&amp;gt;&amp;lt;0\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C&lt;br /&gt;
&amp;lt;math&amp;gt;     =   &amp;lt;2\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Therefore, the net electric field at the electron&#039;s location is &amp;lt;math&amp;gt;&amp;lt;2\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C. Again it is important to note the effect of the signs.  Since both components have positive notation, the net result is positive.  However if any of the components had a negative direction, it would have been important to note this throughout the answer. &lt;br /&gt;
&lt;br /&gt;
=== Difficult ===&lt;br /&gt;
&lt;br /&gt;
[[File:1234556.JPG]]&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt;Q_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;Q_2&amp;lt;/math&amp;gt; are positive and negative charges with charges of 6 nC and -5 nC respectively, what is the net electric field at point A located at (0,0,0)? Charge &amp;lt;math&amp;gt;Q_1&amp;lt;/math&amp;gt; is located at (2,-2,0). Charge &amp;lt;math&amp;gt;Q_2&amp;lt;/math&amp;gt; is located at (5,0,0).&lt;br /&gt;
To begin this problem, the first step is to find &amp;lt;math&amp;gt;r_1&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;r_2&amp;lt;/math&amp;gt;, the vectors from the charges to point A as well as their magnitudes:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{r_1} = 0\hat{i}+0\hat{j}-(2\hat{i}+-2\hat{j})\Rightarrow\vec{r_1} = -2\hat{i}+2\hat{j}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;||\vec{r_1}|| = \sqrt{2^2 + 2^2} =\sqrt{8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{r_2} = 0\hat{i}+0\hat{j}-(5\hat{i}+0\hat{j})\Rightarrow\vec{r_2} = -2\hat{i}+0\hat{j}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;||\vec{r_2}|| = \sqrt{-5^2 + 0^2} =\sqrt{25}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Again, sign notation is very important.  Note how the unit vector defines the direction of the fields in this equation and example. It is easiest to define the unit vector first.  Then proceed to multiply this my the magnitude of the field, as this allows you to account for direction before the calculation of field. &lt;br /&gt;
&lt;br /&gt;
Using Coloumb&#039;s Law, you get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E_1} = \frac{1}{4 \pi \epsilon_0}\frac{Q_1}{||r_1||^2}\hat{r_1}=\frac{1}{4 \pi \epsilon_0}\frac{e}{8}&amp;lt;\frac{-2}{\sqrt{8}}\hat{i}+\frac{-2}{\sqrt{8}}\hat{j}&amp;gt; = &amp;lt;-4.77\hat{i}+4.77\hat{j}&amp;gt; &amp;lt;/math&amp;gt;N/C&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E_2} = \frac{1}{4 \pi \epsilon_0}\frac{Q_2}{||r_2||^2}\hat{r_2}=\frac{1}{4 \pi \epsilon_0}\frac{e}{5}&amp;lt;\frac{-5}{\sqrt{25}}\hat{i}+\frac{0}{\sqrt{25}}\hat{j}&amp;gt; = &amp;lt;1.8\hat{i}+0\hat{j}&amp;gt; &amp;lt;/math&amp;gt;N/C&lt;br /&gt;
&lt;br /&gt;
Next, you need to add the two electric fields together. Because of the superposition principle, the electric field caused by Q1, does not effect the electric field created by Q2, but both can be summed together to create the net electric field at point A. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E}=\vec{E_1}+\vec{E_2} = &amp;lt;-2.97\hat{i}+0\hat{j}&amp;gt;&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;
* The Superposition Principle is important because it makes your life easier in Physics. You can make assumptions based on the fact that the net field at any location is equal to the sum of all the individual fields. You don&#039;t know one of the individual fields, but know the net field? Simple subtraction can help you calculate each individual field. Imagine if all Electric Fields influenced each other? It&#039;d be really difficult to calculate net electric fields without a complicated equation that takes into account one field as a function of another. yuck. Thank the Physics Gods for the Superposition Principle. Its very important to keep this idea in mind any time a net field comes up.  Always remember that the independent fields are not individually effected by each other. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:determinate-structures-18-638.jpeg]]&lt;br /&gt;
&lt;br /&gt;
In a system such as this, the superposition principle is especially useful for finding the individual reactions at each point on the beam as it is known that the net reaction for the entire system is 0.&lt;br /&gt;
&lt;br /&gt;
Is there an interesting industrial application?&lt;br /&gt;
* In [http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&amp;amp;arnumber=1479978 this] study, the Superposition Principle was used to analyze Solar Cells.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
Daniel Bernouilli, in 1753, first proposed the idea of the Superposition Principle. He stated that &amp;quot;The general motion of a vibrating system is given by a superposition of its proper vibrations.&amp;quot; His claim was rejected by mathematicians Leonhard Euler, and Joseph Lagrange. However they were eventually proved wrong by Joseph Fourier and it is now the concept you see today.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
*[[Coulomb&#039;s Law]]&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Dipole]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
*[https://www.boundless.com/physics/textbooks/boundless-physics-textbook/electric-charge-and-field-17/coulomb-s-law-135/superposition-of-forces-483-853/ Additional Textbook Explanation]&lt;br /&gt;
&lt;br /&gt;
*[http://www.sparknotes.com/testprep/books/sat2/physics/chapter17section4.rhtml Sparknotes Explanation]&lt;br /&gt;
&lt;br /&gt;
*[http://www.physicsbook.gatech.edu/Superposition_Principle]&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[https://www.youtube.com/watch?v=S1TXN1M9t18 Instructional video on how to calculate the net electric field using the superposition principle]&lt;br /&gt;
&lt;br /&gt;
[https://www.youtube.com/watch?v=_8fcT95JV34 Video detailing the general use of the principle]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
Chabay, Ruth W.; Sherwood, Bruce A. (2014-12-23). Matter and Interactions, 4th Edition: 1-2 (Page 522). Wiley. Kindle Edition.&lt;br /&gt;
&lt;br /&gt;
https://www.slideshare.net/tarungehlot1/determinate-structures&lt;br /&gt;
&lt;br /&gt;
[[Fields]]&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Superposition_principle&amp;diff=47542</id>
		<title>Superposition principle</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Superposition_principle&amp;diff=47542"/>
		<updated>2025-12-01T04:25:33Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: improved main idea, made changes to glowscript and equations, removed redundancy and irrelevant information like &amp;quot;better major like me&amp;quot; jokes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Rithwik Sharma Fall 2025&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This page explains the superposition principle and brings together examples, models, and applications to make the idea easier to learn.&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The superposition principle says that when several influences act on a system, the total response is the sum of the individual responses. For electric fields, this means each charge creates its own field independently, and the net field is found by adding all of them as vectors. &lt;br /&gt;
&lt;br /&gt;
The superposition principle shows up in many areas of physics and engineering. In circuits, the total voltage at a node can be found by adding contributions from multiple sources. In mechanics, forces from different components of a structure add to give a net reaction. In fields, superposition makes it possible to calculate complex electric and magnetic environments by breaking the problem into simpler pieces.&lt;br /&gt;
&lt;br /&gt;
The key idea is that each contribution acts independently. Nothing “distorts” another field, so the total is just the vector addition of all of them.&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
The net electric field due to two or more charges is the vector sum of each field due to each individual charge. This not only applies to Electric Fields, but Magnetic Fields as well. It is important to note that in the superposition principle, the electric field caused by a charge is not affected by the presence of other charges. It is important to note that this principle applies to all linear systems, note just those of fields.  It has the same net result for mechanics as well. Below are the 2 predominate mathematical models for the principle. &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;F(x_1+x_2)=F(x_1)+F(x_2) \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;F(a x)=a F(x) \,&amp;lt;/math&amp;gt;&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Here is a python program that calculates and displays the electric as well as magnetic field at a specific observation location for a &#039;&#039;&#039;moving dipole&#039;&#039;&#039;. The dipole is a negative and positive charge &#039;&#039;q&#039;&#039; and distance &#039;&#039;s&#039;&#039;. Write a porgram that will use the given constants to do this.&lt;br /&gt;
&lt;br /&gt;
    # GlowScript 2.0 VPython&lt;br /&gt;
    &lt;br /&gt;
    magconstant = 1e-7&lt;br /&gt;
    oofpez = 9e9&lt;br /&gt;
    q=1.6e-19&lt;br /&gt;
    s = 1e-9&lt;br /&gt;
    pluscharge = sphere(pos=vector(-5*s, 0,-s/2), radius=1e-10, color=color.red)&lt;br /&gt;
    minuscharge = sphere(pos=vector(-5*s, 0, s/2), radius=1e-10, color=color.blue)&lt;br /&gt;
    velocity = vector(4e4,0,0) # The dipoles cm velocity   &lt;br /&gt;
    robs = vector(0,s,0)&lt;br /&gt;
    &lt;br /&gt;
    # Initializes two arrows (E and B) at the observation location&lt;br /&gt;
    E = arrow(pos = robs, axis=vector(0,0,0), color = color.cyan)&lt;br /&gt;
    B = arrow(pos = robs, axis=vector(0,0,0), color = color.magenta)&lt;br /&gt;
    &lt;br /&gt;
    # Loop that updates dipole position as well as electric and magnetic field&lt;br /&gt;
    dt = 1e-18&lt;br /&gt;
    &lt;br /&gt;
    while pluscharge.pos.x &amp;lt; 10*s:&lt;br /&gt;
    &lt;br /&gt;
        rate(100)&lt;br /&gt;
        &lt;br /&gt;
        rplus = robs - pluscharge.pos&lt;br /&gt;
        rplusmag = mag(rplus)&lt;br /&gt;
        rplushat = norm(rplus)&lt;br /&gt;
        &lt;br /&gt;
        Eplus = ((oofpez * q) / (rplusmag ** 2))&lt;br /&gt;
        Bplus = magconstant * q * cross(velocity, rplushat) / rplusmag ** 2&lt;br /&gt;
        &lt;br /&gt;
        rminus = robs - minuscharge.pos&lt;br /&gt;
        rminusmag = mag(rminus)&lt;br /&gt;
        rminushat = norm(rminus)&lt;br /&gt;
        &lt;br /&gt;
        Eminus = (oofpez * (-q) / (rminus ** 2)) * rminus&lt;br /&gt;
        Bminus = (magconstant * (-q) * cross(velocity, rminushat)) / (rminushat ** 2)&lt;br /&gt;
        &lt;br /&gt;
        #Calculates the new E and B net fields&lt;br /&gt;
        Enet = Eplus + Eminus&lt;br /&gt;
        Bnet = Bplus + Bminus&lt;br /&gt;
        &lt;br /&gt;
        # Updates the E and B fields arrows&lt;br /&gt;
        E.axis = Enet&lt;br /&gt;
        B.axis = Bnet&lt;br /&gt;
        from visual import * #import the visual module&lt;br /&gt;
        &lt;br /&gt;
        rod = cylinder(pos=(0,2,1), axis=(5,0,0), radius=1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notice that this uses the principle of superposition. The magnetic and electric fields of the two particles in the dipole are added. This determines the net field at the observation location and is therefore a perfect example of superposition. This is a very elegant and simple example of the principle.  It is essentially stated here as the net force as the sum of all other forces.  When using the principle in this way it is very important to note the direction of the forces, as they greatly effect the outcome of the answer. &lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;300px&amp;quot;&amp;gt;&lt;br /&gt;
File:Superposition Principle.JPG| This picture shows the electric field at the location of q3. Note that the Electric Fields of both q1 and q2 were both calculated individually (but do not react because of one another) and summed up to get the net electric field.  Notice the importance of the signs.&lt;br /&gt;
File:1111.PNG| Even by adding more source charges, the individual electric fields created by each source charge are unaffected by subsequent charges.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
[[File:Electric_Forces_Fields_P1.JPG]]&lt;br /&gt;
&lt;br /&gt;
Say that we have two positive particles at the above locations. Ignore the charges and distance provided for now. The electric field at the location of the negative charge is &amp;lt;math&amp;gt;\vec{E_1} = &amp;lt;2\hat{i}+0\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C and &amp;lt;math&amp;gt;\vec{E_2} = &amp;lt;0\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C. What is the net electric field at the location of the electron? Use the principle of superposition.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Answer:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since we know the electric fields from both particles at the point, the superposition principle tells us that we must add the fields together to find the net field. Doing this gives us:&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E_1} + \vec{E_2}    =   &amp;lt;2\hat{i}+0\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C + &amp;lt;math&amp;gt;&amp;lt;0\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C&lt;br /&gt;
&amp;lt;math&amp;gt;     =   &amp;lt;2\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Therefore, the net electric field at the electron&#039;s location is &amp;lt;math&amp;gt;&amp;lt;2\hat{i}+2\hat{j}+0\hat{k}&amp;gt; &amp;lt;/math&amp;gt;N/C. Again it is important to note the effect of the signs.  Since both components have positive notation, the net result is positive.  However if any of the components had a negative direction, it would have been important to note this throughout the answer. &lt;br /&gt;
&lt;br /&gt;
=== Difficult ===&lt;br /&gt;
&lt;br /&gt;
[[File:1234556.JPG]]&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt;Q_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;Q_2&amp;lt;/math&amp;gt; are positive and negative charges with charges of 6 nC and -5 nC respectively, what is the net electric field at point A located at (0,0,0)? Charge &amp;lt;math&amp;gt;Q_1&amp;lt;/math&amp;gt; is located at (2,-2,0). Charge &amp;lt;math&amp;gt;Q_2&amp;lt;/math&amp;gt; is located at (5,0,0).&lt;br /&gt;
To begin this problem, the first step is to find &amp;lt;math&amp;gt;r_1&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;r_2&amp;lt;/math&amp;gt;, the vectors from the charges to point A as well as their magnitudes:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{r_1} = 0\hat{i}+0\hat{j}-(2\hat{i}+-2\hat{j})\Rightarrow\vec{r_1} = -2\hat{i}+2\hat{j}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;||\vec{r_1}|| = \sqrt{2^2 + 2^2} =\sqrt{8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{r_2} = 0\hat{i}+0\hat{j}-(5\hat{i}+0\hat{j})\Rightarrow\vec{r_2} = -2\hat{i}+0\hat{j}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;||\vec{r_2}|| = \sqrt{-5^2 + 0^2} =\sqrt{25}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Again, sign notation is very important.  Note how the unit vector defines the direction of the fields in this equation and example. It is easiest to define the unit vector first.  Then proceed to multiply this my the magnitude of the field, as this allows you to account for direction before the calculation of field. &lt;br /&gt;
&lt;br /&gt;
Using Coloumb&#039;s Law, you get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E_1} = \frac{1}{4 \pi \epsilon_0}\frac{Q_1}{||r_1||^2}\hat{r_1}=\frac{1}{4 \pi \epsilon_0}\frac{e}{8}&amp;lt;\frac{-2}{\sqrt{8}}\hat{i}+\frac{-2}{\sqrt{8}}\hat{j}&amp;gt; = &amp;lt;-4.77\hat{i}+4.77\hat{j}&amp;gt; &amp;lt;/math&amp;gt;N/C&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E_2} = \frac{1}{4 \pi \epsilon_0}\frac{Q_2}{||r_2||^2}\hat{r_2}=\frac{1}{4 \pi \epsilon_0}\frac{e}{5}&amp;lt;\frac{-5}{\sqrt{25}}\hat{i}+\frac{0}{\sqrt{25}}\hat{j}&amp;gt; = &amp;lt;1.8\hat{i}+0\hat{j}&amp;gt; &amp;lt;/math&amp;gt;N/C&lt;br /&gt;
&lt;br /&gt;
Next, you need to add the two electric fields together. Because of the superposition principle, the electric field caused by Q1, does not effect the electric field created by Q2, but both can be summed together to create the net electric field at point A. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{E}=\vec{E_1}+\vec{E_2} = &amp;lt;-2.97\hat{i}+0\hat{j}&amp;gt;&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;
* The Superposition Principle is important because it makes your life easier in Physics. You can make assumptions based on the fact that the net field at any location is equal to the sum of all the individual fields. You don&#039;t know one of the individual fields, but know the net field? Simple subtraction can help you calculate each individual field. Imagine if all Electric Fields influenced each other? It&#039;d be really difficult to calculate net electric fields without a complicated equation that takes into account one field as a function of another. yuck. Thank the Physics Gods for the Superposition Principle. Its very important to keep this idea in mind any time a net field comes up.  Always remember that the independent fields are not individually effected by each other. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:determinate-structures-18-638.jpeg]]&lt;br /&gt;
&lt;br /&gt;
In a system such as this, the superposition principle is especially useful for finding the individual reactions at each point on the beam as it is known that the net reaction for the entire system is 0.&lt;br /&gt;
&lt;br /&gt;
Is there an interesting industrial application?&lt;br /&gt;
* In [http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&amp;amp;arnumber=1479978 this] study, the Superposition Principle was used to analyze Solar Cells.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
Daniel Bernouilli, in 1753, first proposed the idea of the Superposition Principle. He stated that &amp;quot;The general motion of a vibrating system is given by a superposition of its proper vibrations.&amp;quot; His claim was rejected by mathematicians Leonhard Euler, and Joseph Lagrange. However they were eventually proved wrong by Joseph Fourier and it is now the concept you see today.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
*[[Coulomb&#039;s Law]]&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Dipole]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
*[https://www.boundless.com/physics/textbooks/boundless-physics-textbook/electric-charge-and-field-17/coulomb-s-law-135/superposition-of-forces-483-853/ Additional Textbook Explanation]&lt;br /&gt;
&lt;br /&gt;
*[http://www.sparknotes.com/testprep/books/sat2/physics/chapter17section4.rhtml Sparknotes Explanation]&lt;br /&gt;
&lt;br /&gt;
*[http://www.physicsbook.gatech.edu/Superposition_Principle]&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[https://www.youtube.com/watch?v=S1TXN1M9t18 Instructional video on how to calculate the net electric field using the superposition principle]&lt;br /&gt;
&lt;br /&gt;
[https://www.youtube.com/watch?v=_8fcT95JV34 Video detailing the general use of the principle]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
Chabay, Ruth W.; Sherwood, Bruce A. (2014-12-23). Matter and Interactions, 4th Edition: 1-2 (Page 522). Wiley. Kindle Edition.&lt;br /&gt;
&lt;br /&gt;
https://www.slideshare.net/tarungehlot1/determinate-structures&lt;br /&gt;
&lt;br /&gt;
[[Fields]]&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47538</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47538"/>
		<updated>2025-12-01T04:21:53Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: /* Electric field */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
= &#039;&#039;&#039;Georgia Tech Student Wiki for Introductory Physics.&#039;&#039;&#039; =&lt;br /&gt;
&lt;br /&gt;
This resource 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 for future students!&lt;br /&gt;
&lt;br /&gt;
Looking to make a contribution?&lt;br /&gt;
#Pick one of the topics from intro physics listed below&lt;br /&gt;
#Add content to that topic or improve the quality of what is already there.&lt;br /&gt;
#Need to make a new topic? Edit this page and add it to the list under the appropriate category.  Then 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 written for students by a physics expert [http://p3server.pa.msu.edu/coursewiki/doku.php?id=183_notes MSU Physics Wiki]&lt;br /&gt;
* A wiki book on modern physics [https://en.wikibooks.org/wiki/Modern_Physics Modern Physics Wiki]&lt;br /&gt;
* A collection of 26 volumes of lecture notes by Prof. Wheeler of Reed College [https://rdc.reed.edu/c/wheeler/home/] &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 intro physics textbooks: [https://openstax.org/details/books/university-physics-volume-1  Vol1], [https://openstax.org/details/books/university-physics-volume-2  Vol2], [https://openstax.org/details/books/university-physics-volume-3  Vol3]&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;
* The Feynman lectures on physics are free to read [http://www.feynmanlectures.caltech.edu/ Feynman]&lt;br /&gt;
* Final Study Guide for Modern Physics II created by a lab TA [https://docs.google.com/document/d/1_6GktDPq5tiNFFYs_ZjgjxBAWVQYaXp_2Imha4_nSyc/edit?usp=sharing Modern Physics II Final Study Guide]&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;
* A listing of [[Notable Scientist]] with links to their individual pages &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 1==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====GlowScript 101====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Python Syntax]]&lt;br /&gt;
*[[GlowScript]]&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;
====VPython====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[VPython]]&lt;br /&gt;
*[[VPython basics]]&lt;br /&gt;
*[[VPython Common Errors and Troubleshooting]]&lt;br /&gt;
*[[VPython Functions]]&lt;br /&gt;
*[[VPython Lists]]&lt;br /&gt;
*[[VPython Loops]]&lt;br /&gt;
*[[VPython Multithreading]]&lt;br /&gt;
*[[VPython Animation]]&lt;br /&gt;
*[[VPython Objects]]&lt;br /&gt;
*[[VPython 3D Objects]]&lt;br /&gt;
*[[VPython Reference]]&lt;br /&gt;
*[[VPython MapReduceFilter]]&lt;br /&gt;
*[[VPython GUIs]]&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;
====Vectors and Units====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[SI Units]]&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;
====Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Types of Interactions and How to Detect Them]]&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;
====Velocity and Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s First Law of Motion]]&lt;br /&gt;
*[[Mass]]&lt;br /&gt;
*[[Velocity]]&lt;br /&gt;
*[[Speed]]&lt;br /&gt;
*[[Speed vs Velocity]]&lt;br /&gt;
*[[Relative Velocity]]&lt;br /&gt;
*[[Derivation of Average Velocity]]&lt;br /&gt;
*[[2-Dimensional Motion]]&lt;br /&gt;
*[[3-Dimensional Position and Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Momentum and the Momentum Principle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Linear Momentum]]&lt;br /&gt;
*[[Newton&#039;s Second Law: the Momentum Principle]]&lt;br /&gt;
*[[Impulse and Momentum]]&lt;br /&gt;
*[[Net Force]]&lt;br /&gt;
*[[Inertia]]&lt;br /&gt;
*[[Acceleration]]&lt;br /&gt;
*[[Relativistic Momentum]]&lt;br /&gt;
&amp;lt;!-- Kinematics and Projectile Motion relocated to Week 3 per advice of Dr. Greco --&amp;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;
====Iterative Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Iterative Prediction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Analytic Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- *[[Analytical Prediction]] Deprecated --&amp;gt;&lt;br /&gt;
*[[Kinematics]]&lt;br /&gt;
*[[Projectile Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Iterative Prediction with a Varying Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Fundamentals of Iterative Prediction with Varying Force]]&lt;br /&gt;
*[[Spring_Force]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
&amp;lt;!--*[[Hooke&#039;s Law]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
&amp;lt;!--*[[Spring Force]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
*[[Iterative Prediction of Spring-Mass System]]&lt;br /&gt;
*[[Terminal Speed]]&lt;br /&gt;
*[[Predicting Change in multiple dimensions]]&lt;br /&gt;
*[[Two Dimensional Harmonic Motion]]&lt;br /&gt;
*[[Determinism]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Fundamental Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Gravitational Force]]&lt;br /&gt;
*[[Gravitational Force Near Earth]]&lt;br /&gt;
*[[Gravitational Force in Space and Other Applications]]&lt;br /&gt;
*[[3 or More Body Interactions]]&lt;br /&gt;
&amp;lt;!--[[Fluid Mechanics]]--&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Introduction to Magnetic Force]]&lt;br /&gt;
*[[Strong and Weak Force]]&lt;br /&gt;
*[[Reciprocity]]&lt;br /&gt;
*[[Conservation of Momentum]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;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;
*[[Kinds of Matter]]&lt;br /&gt;
*[[Ball and Spring Model of Matter]]&lt;br /&gt;
*[[Density]]&lt;br /&gt;
*[[Length and Stiffness of an Interatomic Bond]]&lt;br /&gt;
*[[Young&#039;s Modulus]]&lt;br /&gt;
*[[Speed of Sound in Solids]]&lt;br /&gt;
*[[Malleability]]&lt;br /&gt;
*[[Ductility]]&lt;br /&gt;
*[[Weight]]&lt;br /&gt;
*[[Hardness]]&lt;br /&gt;
*[[Boiling Point]]&lt;br /&gt;
*[[Melting Point]]&lt;br /&gt;
*[[Change of State]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Identifying Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Free Body Diagram]]&lt;br /&gt;
*[[Inclined Plane]]&lt;br /&gt;
*[[Compression or Normal Force]]&lt;br /&gt;
*[[Tension]]&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;
====Curving Motion====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Curving Motion]]&lt;br /&gt;
*[[Centripetal Force and Curving Motion]]&lt;br /&gt;
*[[Perpetual Freefall (Orbit)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Jeet Bhatkar====&lt;br /&gt;
&lt;br /&gt;
====Energy Principle====&lt;br /&gt;
The Energy Principle is a fundamental concept in physics that describes the relationship between different forms of energy and their conservation within a system. Understanding the Energy Principle is crucial for analyzing the motion and interactions of objects in various physical scenarios.&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[[Kinetic Energy]]&lt;br /&gt;
Kinetic energy is the energy an object possesses due to its motion.&lt;br /&gt;
*[[Work/Energy]]&lt;br /&gt;
Potential energy arises from the position of an object relative to its surroundings. Common forms of potential energy include gravitational potential energy and elastic potential energy.&lt;br /&gt;
*[[The Energy Principle]]&lt;br /&gt;
Work and energy are closely related concepts. Work (&lt;br /&gt;
𝑊) done on an object is defined as the force (&lt;br /&gt;
𝐹) applied to the object multiplied by the displacement (&lt;br /&gt;
𝑑) of the object in the direction of the force:&lt;br /&gt;
The Energy Principle states that the total mechanical energy of a system remains constant if only conservative forces (forces that depend only on the positions of the objects) are acting on the system. &lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
The principle of conservation of energy states that the total energy of an isolated system remains constant over time. In other words, energy cannot be created or destroyed, only transformed from one form to another. This principle is a fundamental concept in physics and has wide-ranging applications in mechanics, thermodynamics, and other branches of science.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Work by Non-Constant Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Work Done By A Nonconstant Force]]&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;
====Potential Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Energy]]&lt;br /&gt;
*[[Potential Energy of Macroscopic Springs]]&lt;br /&gt;
*[[Spring Potential Energy]]&lt;br /&gt;
*[[Ball and Spring Model]]&lt;br /&gt;
*[[Gravitational Potential Energy]]&lt;br /&gt;
*[[Energy Graphs]]&lt;br /&gt;
*[[Escape Velocity]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Multiparticle Systems====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Center of Mass]]&lt;br /&gt;
*[[Multi-particle analysis of Momentum]]&lt;br /&gt;
*[[Potential Energy of a Multiparticle System]]&lt;br /&gt;
*[[Work and Energy for an Extended System]]&lt;br /&gt;
*[[Internal Energy]]&lt;br /&gt;
**[[Potential Energy of a Pair of Neutral Atoms]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Choice of System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[System &amp;amp; Surroundings]]&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;
====Thermal Energy, Dissipation, and Transfer of Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Thermal Energy]]&lt;br /&gt;
*[[Specific Heat]]&lt;br /&gt;
*[[Calorific Value(Heat of combustion)]]&lt;br /&gt;
*[[First Law of Thermodynamics]]&lt;br /&gt;
*[[Second Law of Thermodynamics and Entropy]]&lt;br /&gt;
*[[Temperature]]&lt;br /&gt;
*[[Transformation of Energy]]&lt;br /&gt;
*[[The Maxwell-Boltzmann Distribution]]&lt;br /&gt;
*[[Air Resistance]]&lt;br /&gt;
*[[The Third Law of Thermodynamics]]&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;
====Rotational and Vibrational Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Translational, Rotational and Vibrational Energy]]&lt;br /&gt;
*[[Rolling Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Different Models of a System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Particle Systems]]&lt;br /&gt;
*[[Real Systems]]&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;
====Friction====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Friction]]&lt;br /&gt;
*[[Static Friction]]&lt;br /&gt;
*[[Kinetic Friction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conservation of Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conservation of Momentum]]&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;
====Collisions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s Third Law of Motion]]&lt;br /&gt;
*[[Collisions]]&lt;br /&gt;
*[[Elastic Collisions]]&lt;br /&gt;
*[[Inelastic Collisions]]&lt;br /&gt;
*[[Maximally Inelastic Collision]]&lt;br /&gt;
*[[Head-on Collision of Equal Masses]]&lt;br /&gt;
*[[Head-on Collision of Unequal Masses]]&lt;br /&gt;
*[[Scattering: Collisions in 2D and 3D]]&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Coefficient of Restitution]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rotations====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rotational Kinematics]]&lt;br /&gt;
*[[Eulerian Angles]]&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;
====Angular Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Total Angular Momentum]]&lt;br /&gt;
*[[Translational Angular Momentum]]&lt;br /&gt;
*[[Rotational Angular Momentum]]&lt;br /&gt;
*[[The Angular Momentum Principle]]&lt;br /&gt;
*[[Angular Impulse]]&lt;br /&gt;
*[[Predicting the Position of a Rotating System]]&lt;br /&gt;
*[[The Moments of Inertia]]&lt;br /&gt;
*[[Right Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Analyzing Motion with and without Torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Torque]]&lt;br /&gt;
*[[Torque 2]]&lt;br /&gt;
*[[Systems with Zero Torque]]&lt;br /&gt;
*[[Systems with Nonzero Torque]]&lt;br /&gt;
*[[Torque vs Work]]&lt;br /&gt;
*[[Gyroscopes]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Introduction to Quantum Concepts====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Electron transitions]]&lt;br /&gt;
*[[Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;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 style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 2==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====3D Vectors====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Right Hand Rule]]&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;
====Electric field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Field and Electric Potential]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Electric force ==&lt;br /&gt;
&#039;&#039;&#039;Jeet Bhatkar – Fall 2025&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Big Idea ==&lt;br /&gt;
Electric force is the interaction between objects that have electric charge. It is:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Long-range&#039;&#039;&#039;: acts even when charges do not touch  &lt;br /&gt;
* &#039;&#039;&#039;Vector-valued&#039;&#039;&#039;: has magnitude and direction  &lt;br /&gt;
* &#039;&#039;&#039;Superposable&#039;&#039;&#039;: forces from many charges add as vectors  &lt;br /&gt;
&lt;br /&gt;
At the intro level, the electric force between two point charges is described by Coulomb’s law, the electrostatic analog of the gravitational force between masses.&lt;br /&gt;
&lt;br /&gt;
== Key Equations ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (magnitude)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{F}[/math] = magnitude of the electric force  &lt;br /&gt;
* [math]\displaystyle{k \approx 8.99 \times 10^9\ \text{N·m}^2/\text{C}^2}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_1, q_2}[/math] = charges (C)  &lt;br /&gt;
* [math]\displaystyle{r}[/math] = separation between the charges (m)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (vector form)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F}_{2 \leftarrow 1} = k \dfrac{q_1 q_2}{r^2} \,\hat{r}_{2 \leftarrow 1} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{\vec{F}_{2 \leftarrow 1}}[/math] = force on charge 2 due to charge 1  &lt;br /&gt;
* [math]\displaystyle{\hat{r}_{2 \leftarrow 1}}[/math] = unit vector from 1 to 2  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Relation to Electric Field&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F} = q \vec{E} }[/math]&lt;br /&gt;
&lt;br /&gt;
Once you know [math]\displaystyle{\vec{E}}[/math] at a point, you can find the force on any charge [math]\displaystyle{q}[/math] placed there.&lt;br /&gt;
&lt;br /&gt;
== Conceptual Picture ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sign of charges&#039;&#039;&#039;&lt;br /&gt;
* Like charges (both positive or both negative) → &#039;&#039;&#039;repel&#039;&#039;&#039;  &lt;br /&gt;
* Unlike charges (one positive, one negative) → &#039;&#039;&#039;attract&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Distance dependence&#039;&#039;&#039;&lt;br /&gt;
* Force falls off as [math]\displaystyle{1/r^2}[/math], so doubling the distance makes the force 4 times smaller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Superposition principle&#039;&#039;&#039;&lt;br /&gt;
If there are many charges, the net force on a given charge is the vector sum of the forces from each individual charge:&lt;br /&gt;
[math]\displaystyle{ \vec{F}_\text{net} = \sum_i \vec{F}_i }[/math].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Electric vs. gravitational force&#039;&#039;&#039;&lt;br /&gt;
* Both follow inverse-square laws  &lt;br /&gt;
* Gravity is always attractive; electric force can be attractive or repulsive  &lt;br /&gt;
* Electric forces are usually much stronger at the particle scale  &lt;br /&gt;
&lt;br /&gt;
== Worked Example 1: Two Point Charges on a Line ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Two charges are placed on the x-axis:&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{q_1 = +3.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.00\ \text{m}}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_2 = -2.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.40\ \text{m}}[/math]  &lt;br /&gt;
&lt;br /&gt;
What is the magnitude and direction of the force on [math]\displaystyle{q_2}[/math]?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution (outline).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Distance between charges:  &lt;br /&gt;
[math]\displaystyle{ r = 0.40\ \text{m} }[/math].&lt;br /&gt;
&lt;br /&gt;
# Magnitude using Coulomb’s law:  &lt;br /&gt;
[math]\displaystyle{&lt;br /&gt;
F = k \dfrac{|q_1 q_2|}{r^2}&lt;br /&gt;
= (8.99 \times 10^9)\,\dfrac{(3.0 \times 10^{-6})(2.0 \times 10^{-6})}{(0.40)^2}&lt;br /&gt;
}[/math]&lt;br /&gt;
&lt;br /&gt;
# Sign and direction:  &lt;br /&gt;
* [math]\displaystyle{q_1}[/math] is positive, [math]\displaystyle{q_2}[/math] is negative → force is &#039;&#039;&#039;attractive&#039;&#039;&#039;  &lt;br /&gt;
* On [math]\displaystyle{q_2}[/math], the force points toward [math]\displaystyle{q_1}[/math]  &lt;br /&gt;
* Since [math]\displaystyle{q_1}[/math] is at smaller x, the force on [math]\displaystyle{q_2}[/math] points in the &#039;&#039;&#039;−x&#039;&#039;&#039; direction  &lt;br /&gt;
&lt;br /&gt;
You can finish by computing the numerical value and writing it as a vector, e.g. [math]\displaystyle{\vec{F}_{2 \leftarrow 1} = -F\,\hat{x}}[/math].&lt;br /&gt;
&lt;br /&gt;
== Worked Example 2: Superposition with Three Charges ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Three equal charges [math]\displaystyle{q}[/math] are at the corners of an equilateral triangle of side [math]\displaystyle{a}[/math]. What is the net force on one of the charges?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Idea (no full algebra).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Each of the other two charges exerts a force of magnitude  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{q^2}{a^2} }[/math]  &lt;br /&gt;
* The angle between these two forces is [math]\displaystyle{60^\circ}[/math]  &lt;br /&gt;
* Use vector addition:  &lt;br /&gt;
  * Add components along the symmetry axis  &lt;br /&gt;
  * Perpendicular components cancel by symmetry  &lt;br /&gt;
&lt;br /&gt;
This shows how symmetry plus superposition simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
== Computational Model (GlowScript) ==&lt;br /&gt;
&lt;br /&gt;
Below is a simple GlowScript (VPython) model that computes and visualizes the electric force between two point charges in 3D.&lt;br /&gt;
&lt;br /&gt;
You can:&lt;br /&gt;
* Paste this into a new GlowScript Trinket (Python / VPython),&lt;br /&gt;
* Get the embed code from Trinket,&lt;br /&gt;
* Embed that code into this page so it runs directly here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
from vpython import *&lt;br /&gt;
&lt;br /&gt;
# constant&lt;br /&gt;
k = 8.99e9  # N·m^2/C^2&lt;br /&gt;
&lt;br /&gt;
# scene setup&lt;br /&gt;
scene.caption = &amp;quot;Drag the red charge to see how the force on the blue charge changes.\n&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# charges (positions in meters, charges in coulombs)&lt;br /&gt;
q1 = 2e-6   # C (blue, fixed)&lt;br /&gt;
q2 = -3e-6  # C (red, movable)&lt;br /&gt;
&lt;br /&gt;
charge1 = sphere(pos=vector(-0.5, 0, 0), radius=0.05, color=color.blue)&lt;br /&gt;
charge2 = sphere(pos=vector(0.5, 0, 0), radius=0.05, color=color.red, make_trail=True)&lt;br /&gt;
&lt;br /&gt;
# arrow to show force on q2 due to q1&lt;br /&gt;
F_arrow = arrow(pos=charge2.pos, axis=vector(0.2, 0, 0))&lt;br /&gt;
&lt;br /&gt;
def electric_force(q1, q2, r1, r2):&lt;br /&gt;
    r_vec = r2 - r1&lt;br /&gt;
    r = mag(r_vec)&lt;br /&gt;
    if r == 0:&lt;br /&gt;
        return vector(0, 0, 0)&lt;br /&gt;
    F_mag = k * q1 * q2 / r**2&lt;br /&gt;
    return F_mag * norm(r_vec)&lt;br /&gt;
&lt;br /&gt;
dragging = False&lt;br /&gt;
&lt;br /&gt;
def down():&lt;br /&gt;
    global dragging&lt;br /&gt;
    if scene.mouse.pick is charge2:&lt;br /&gt;
        dragging = True&lt;br /&gt;
&lt;br /&gt;
def up():&lt;br /&gt;
    global dragging&lt;br /&gt;
    dragging = False&lt;br /&gt;
&lt;br /&gt;
scene.bind(&amp;quot;mousedown&amp;quot;, lambda evt: down())&lt;br /&gt;
scene.bind(&amp;quot;mouseup&amp;quot;,   lambda evt: up())&lt;br /&gt;
&lt;br /&gt;
while True:&lt;br /&gt;
    rate(60)&lt;br /&gt;
&lt;br /&gt;
    if dragging:&lt;br /&gt;
        # move the red charge with the mouse in the x-y plane&lt;br /&gt;
        m = scene.mouse.pos&lt;br /&gt;
        charge2.pos = vector(m.x, m.y, 0)&lt;br /&gt;
&lt;br /&gt;
    F = electric_force(q1, q2, charge1.pos, charge2.pos)&lt;br /&gt;
&lt;br /&gt;
    # update arrow to show force on q2&lt;br /&gt;
    F_arrow.pos = charge2.pos&lt;br /&gt;
    # scale arrow length for visibility (purely visual)&lt;br /&gt;
    F_arrow.axis = F * 1e7&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can extend this model to include more charges or show the net force on a test charge at different locations.&lt;br /&gt;
&lt;br /&gt;
== Common Mistakes and How to Avoid Them ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Forgetting that force is a vector.&#039;&#039;&#039;  &lt;br /&gt;
  Always draw a diagram and keep track of directions. Use components in 2D/3D.&lt;br /&gt;
* &#039;&#039;&#039;Dropping the absolute value in the magnitude formula.&#039;&#039;&#039;  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math] is a positive magnitude. Decide direction separately.&lt;br /&gt;
* &#039;&#039;&#039;Mixing up [math]\displaystyle{r}[/math] and [math]\displaystyle{r^2}[/math].&#039;&#039;&#039;  &lt;br /&gt;
  The force goes like [math]\displaystyle{1/r^2}[/math], not [math]\displaystyle{1/r}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Using wrong units.&#039;&#039;&#039;  &lt;br /&gt;
  Convert microcoulombs to coulombs, centimeters to meters, etc.  &lt;br /&gt;
  [math]\displaystyle{1\ \mu\text{C} = 1 \times 10^{-6}\ \text{C}}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Trying to memorize instead of understand.&#039;&#039;&#039;  &lt;br /&gt;
  Focus on inverse-square behavior, sign of charges, and superposition.&lt;br /&gt;
&lt;br /&gt;
== Connections to Other Topics ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Electric Field&#039;&#039;&#039; – Electric force per unit charge is the electric field:  &lt;br /&gt;
  [math]\displaystyle{ \vec{E} = \dfrac{\vec{F}}{q} }[/math].&lt;br /&gt;
* &#039;&#039;&#039;Potential Energy and Electric Potential&#039;&#039;&#039; – Work done by electric forces leads to electric potential energy and voltage.&lt;br /&gt;
* &#039;&#039;&#039;Lorentz Force&#039;&#039;&#039; – The full force on a moving charge also includes magnetic fields:  &lt;br /&gt;
  [math]\displaystyle{ \vec{F} = q(\vec{E} + \vec{v} \times \vec{B}) }[/math].  &lt;br /&gt;
  This page focuses on the electric part.&lt;br /&gt;
&lt;br /&gt;
== Practice Problems ==&lt;br /&gt;
&lt;br /&gt;
You can add your own numerical values and solve them. Consider including full solutions in a collapsible section.&lt;br /&gt;
&lt;br /&gt;
# Two charges of [math]\displaystyle{+2.0\ \mu\text{C}}[/math] and [math]\displaystyle{+5.0\ \mu\text{C}}[/math] are 0.30 m apart.  &lt;br /&gt;
   * (a) Find the magnitude of the force on each charge.  &lt;br /&gt;
   * (b) Is the force attractive or repulsive? Explain.&lt;br /&gt;
&lt;br /&gt;
# A charge [math]\displaystyle{q_1 = +4.0\ \mu\text{C}}[/math] is at the origin and [math]\displaystyle{q_2 = -1.0\ \mu\text{C}}[/math] is at [math]\displaystyle{x = 0.20\ \text{m}}[/math].  &lt;br /&gt;
   * Find the electric force on [math]\displaystyle{q_1}[/math] (magnitude and direction).  &lt;br /&gt;
   * Verify that Newton’s third law holds (forces are equal and opposite).&lt;br /&gt;
&lt;br /&gt;
# Three equal positive charges are placed at the corners of a square of side [math]\displaystyle{a}[/math].  &lt;br /&gt;
   * Find the net force on one of the corner charges.  &lt;br /&gt;
   * Use symmetry to simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
# A particle with charge [math]\displaystyle{q = -1.6 \times 10^{-19}\ \text{C}}[/math] experiences an electric force of [math]\displaystyle{3.2 \times 10^{-14}\ \text{N}}[/math] in the +y direction.  &lt;br /&gt;
   * (a) What is the electric field at that point (magnitude and direction)?  &lt;br /&gt;
   * (b) If the charge were positive instead, what would the force direction be?&lt;br /&gt;
&lt;br /&gt;
== What to Review Before an Exam ==&lt;br /&gt;
&lt;br /&gt;
* Determine force direction from a diagram, not just from algebra  &lt;br /&gt;
* Practice vector addition of multiple forces  &lt;br /&gt;
* Do quick estimates: “If I double the distance, what happens to the force?”  &lt;br /&gt;
* Know the difference between:&lt;br /&gt;
  * Force between charges (Coulomb’s law)  &lt;br /&gt;
  * Electric field  &lt;br /&gt;
  * Electric potential energy&lt;br /&gt;
&lt;br /&gt;
====Electric field of a point particle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Charge]]&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;
====Superposition====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superposition Principle]]&lt;br /&gt;
*[[Superposition principle]]&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;
====Dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Dipole]]&lt;br /&gt;
*[[Magnetic Dipole]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Interactions of charged objects====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Tape experiments====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&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;
====Polarization====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&lt;br /&gt;
*[[Polarization of an Atom]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conductors and Insulators====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conductivity and Resistivity]]&lt;br /&gt;
*[[Insulators]]&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Conductors]]&lt;br /&gt;
*[[Polarization of a conductor]]&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;
====Charging and Discharging====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charge Transfer]]&lt;br /&gt;
*[[Electrostatic Discharge]]&lt;br /&gt;
*[[Charged Conductor and Charged Insulator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Field of a charged rod====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Field of a Charged Rod|Charged Rod]]&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;
====Field of a charged ring/disk/capacitor====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Ring]]&lt;br /&gt;
*[[Charged Disk]]&lt;br /&gt;
*[[Charged Capacitor]]&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;
====Field of a charged sphere====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Spherical Shell]]&lt;br /&gt;
*[[Field of a Charged Ball]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Potential energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential 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;
====Electric potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]] &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;
&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;
====Sign of a potential difference====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sign of a Potential Difference]]&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;
====Potential at a single location====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Potential Difference at One Location]]&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;
====Path independence and round trip potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in an insulator====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Electric Field in an Insulator]]&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;
====Moving charges in a magnetic field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Biot-Savart Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Biot-Savart Law]]&lt;br /&gt;
*[[Biot-Savart Law for Currents]]&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;
====Moving charges, electron current, and conventional current====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Moving Point Charge]]&lt;br /&gt;
&lt;br /&gt;
A moving point charge creates both electric and magnetic fields. As the charge accelerates or changes position, it alters the surrounding electromagnetic field, which can influence other charges nearby. This is the fundamental concept behind electromagnetic radiation and wave propagation. When many charges move collectively—such as electrons in a wire—this flow is referred to as electric current. This perfectly segues us into the next section of this page.&lt;br /&gt;
&lt;br /&gt;
*[[Current]]&lt;br /&gt;
&lt;br /&gt;
Current is typically measured in amperes and represents the rate at which charge flows through a surface. Although electrons carry the charge and move from negative to positive, conventional current is defined in the opposite direction: from positive to negative. This convention dates back to early scientific assumptions and remains standard in circuit diagrams and equations today.&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;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Magnetic field of a wire====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Long Straight Wire]]&lt;br /&gt;
*[[Magnetic Field of a Curved Wire]]&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;
====Magnetic field of a current-carrying loop====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Loop]]&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;
====Magnetic field of a Charged Disk====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Disk]]&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;
====Magnetic dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Dipole Moment]]&lt;br /&gt;
*[[Bar Magnet]]&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;
====Atomic structure of magnets====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Atomic Structure of Magnets]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Circuitry Basics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Understanding Fundamentals of Current, Voltage, and Resistance]]&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;
====Steady state current====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Steady State]]&lt;br /&gt;
*[[Non Steady State]]&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;
====Kirchoff&#039;s Laws====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&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;
====Electric fields and energy in circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential Difference]]&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;
====Macroscopic analysis of circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[Parallel Circuits]]&lt;br /&gt;
*[[Parallel Circuits vs. Series Circuits*]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&lt;br /&gt;
*[[Fundamentals of Resistance]]&lt;br /&gt;
*[[Problem Solving]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in circuits with capacitors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charging and Discharging a Capacitor]]&lt;br /&gt;
*[[RC Circuit]] &lt;br /&gt;
*[[R Circuit]]&lt;br /&gt;
*[[AC and DC]]&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;
====Magnetic forces on charges and currents====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Motors and Generators]]&lt;br /&gt;
*[[Applying Magnetic Force to Currents]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Analysis of Railgun vs Coil gun technologies]]&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;
====Electric and magnetic forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[VPython Modelling of Electric and Magnetic Forces]]&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;
====Velocity selector====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Combining Electric and Magnetic Forces]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Hall Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Hall Effect]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Motional Emf]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Magnetic force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Magnetic torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Gauss&#039;s Law====&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;
*[[Gauss&#039;s Law]]&lt;br /&gt;
*[[Magnetic Flux]]&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;
====Ampere&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Ampere-Maxwell Law]]&lt;br /&gt;
*[[Magnetic Field of Coaxial Cable Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Long Thick Wire Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Toroid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Solenoid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[The Differential Form of Ampere&#039;s Law]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Semiconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Semiconductor Devices]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Faraday&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Motional Emf using Faraday&#039;s Law]]&lt;br /&gt;
*[[Lenz&#039;s Law]]&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;
====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 Law]]&lt;br /&gt;
*[[Magnetic Flux]]&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Maxwell&#039;s Electromagnetic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Circuits revisited====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;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;
====Inductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Inductors]]&lt;br /&gt;
*[[Current in an LC Circuit]]&lt;br /&gt;
*[[Current in an RL Circuit]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
==== Electromagnetic Radiation ====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electromagnetic Radiation]]&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;
====Sparks in the air====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sparks in Air]]&lt;br /&gt;
*[[Spark Plugs]]&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;
====Superconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superconducters]]&lt;br /&gt;
*[[Superconductors]]&lt;br /&gt;
*[[Meissner effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 3==&lt;br /&gt;
&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Classical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Classical Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
&lt;br /&gt;
===Weeks 2 and 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Special Relativity and the Lorentz Transformation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Frame of Reference]]&lt;br /&gt;
&lt;br /&gt;
*[[Einstein&#039;s Theory of Special Relativity]]&lt;br /&gt;
*[[Time Dilation]]&lt;br /&gt;
*[[Twin Paradox]]&lt;br /&gt;
*[[Lorentz Transformations]]&lt;br /&gt;
*[[Relativistic Doppler Effect]]&lt;br /&gt;
*[[Einstein&#039;s Theory of General Relativity]]&lt;br /&gt;
*[[Albert A. Micheleson &amp;amp; Edward W. Morley]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Photons and the Photoelectric Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Spontaneous Photon Emission]]&lt;br /&gt;
*[[Light Scattering]]&lt;br /&gt;
*[[Lasers]]&lt;br /&gt;
*[[Electronic Energy Levels and Photons]]&lt;br /&gt;
*[[Quantum Properties of Light]]&lt;br /&gt;
*[[The Photoelectric Effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Weeks 5 and 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Matter Waves and Wave-Particle Duality====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Wave-Particle Duality]]&lt;br /&gt;
*[[Particle in a 1-Dimensional box]]&lt;br /&gt;
*[[Heisenberg Uncertainty Principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Wave Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Standing Waves]]&lt;br /&gt;
*[[Wavelength]]&lt;br /&gt;
*[[Wavelength and Frequency]]&lt;br /&gt;
*[[Mechanical Waves]]&lt;br /&gt;
*[[Transverse and Longitudinal Waves]]&lt;br /&gt;
*[[Fourier Series and Transform]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Schrödinger Equation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[The Born Rule]]&lt;br /&gt;
*[[Solution for a Single Free Particle]]&lt;br /&gt;
*[[Solution for a Single Particle in an Infinite Quantum Well - Darin]]&lt;br /&gt;
*[[Solution for a Single Particle in a Semi-Infinite Quantum Well]]&lt;br /&gt;
*[[Quantum Harmonic Oscillator]]&lt;br /&gt;
*[[Solution for Simple Harmonic Oscillator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Quantum Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Tunneling through Potential Barriers]]&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;
====The Hydrogen Atom====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rutherford-Bohr Model====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Many-Electron Atoms====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
*[[Pauli exclusion principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====The Nucleus====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nucleus]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Molecules====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Molecules]]&lt;br /&gt;
*[[Covalent Bonds]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Application of Statistics in Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Temperature &amp;amp; Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Topics===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Thermodynamics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Maxwell Relations]]&lt;br /&gt;
*[[Brownian Motion]]&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;
====Nuclear Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nuclear Fission]]&lt;br /&gt;
*[[Nuclear Energy from Fission and Fusion]]&lt;br /&gt;
*[[Radioactive Decay Processes]]&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;
====Particle Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Elementary Particles and Particle Physics Theory]]&lt;br /&gt;
*[[String Theory]]&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;
====Solid-State/Condensed Matter Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[What is Condensed Matter]]&lt;br /&gt;
*[[Crystalline Structures]]&lt;br /&gt;
*[[Electric-Band Structure]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47537</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47537"/>
		<updated>2025-12-01T04:21:22Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: /* Electric field */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
= &#039;&#039;&#039;Georgia Tech Student Wiki for Introductory Physics.&#039;&#039;&#039; =&lt;br /&gt;
&lt;br /&gt;
This resource 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 for future students!&lt;br /&gt;
&lt;br /&gt;
Looking to make a contribution?&lt;br /&gt;
#Pick one of the topics from intro physics listed below&lt;br /&gt;
#Add content to that topic or improve the quality of what is already there.&lt;br /&gt;
#Need to make a new topic? Edit this page and add it to the list under the appropriate category.  Then 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 written for students by a physics expert [http://p3server.pa.msu.edu/coursewiki/doku.php?id=183_notes MSU Physics Wiki]&lt;br /&gt;
* A wiki book on modern physics [https://en.wikibooks.org/wiki/Modern_Physics Modern Physics Wiki]&lt;br /&gt;
* A collection of 26 volumes of lecture notes by Prof. Wheeler of Reed College [https://rdc.reed.edu/c/wheeler/home/] &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 intro physics textbooks: [https://openstax.org/details/books/university-physics-volume-1  Vol1], [https://openstax.org/details/books/university-physics-volume-2  Vol2], [https://openstax.org/details/books/university-physics-volume-3  Vol3]&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;
* The Feynman lectures on physics are free to read [http://www.feynmanlectures.caltech.edu/ Feynman]&lt;br /&gt;
* Final Study Guide for Modern Physics II created by a lab TA [https://docs.google.com/document/d/1_6GktDPq5tiNFFYs_ZjgjxBAWVQYaXp_2Imha4_nSyc/edit?usp=sharing Modern Physics II Final Study Guide]&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;
* A listing of [[Notable Scientist]] with links to their individual pages &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 1==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====GlowScript 101====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Python Syntax]]&lt;br /&gt;
*[[GlowScript]]&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;
====VPython====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[VPython]]&lt;br /&gt;
*[[VPython basics]]&lt;br /&gt;
*[[VPython Common Errors and Troubleshooting]]&lt;br /&gt;
*[[VPython Functions]]&lt;br /&gt;
*[[VPython Lists]]&lt;br /&gt;
*[[VPython Loops]]&lt;br /&gt;
*[[VPython Multithreading]]&lt;br /&gt;
*[[VPython Animation]]&lt;br /&gt;
*[[VPython Objects]]&lt;br /&gt;
*[[VPython 3D Objects]]&lt;br /&gt;
*[[VPython Reference]]&lt;br /&gt;
*[[VPython MapReduceFilter]]&lt;br /&gt;
*[[VPython GUIs]]&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;
====Vectors and Units====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[SI Units]]&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;
====Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Types of Interactions and How to Detect Them]]&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;
====Velocity and Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s First Law of Motion]]&lt;br /&gt;
*[[Mass]]&lt;br /&gt;
*[[Velocity]]&lt;br /&gt;
*[[Speed]]&lt;br /&gt;
*[[Speed vs Velocity]]&lt;br /&gt;
*[[Relative Velocity]]&lt;br /&gt;
*[[Derivation of Average Velocity]]&lt;br /&gt;
*[[2-Dimensional Motion]]&lt;br /&gt;
*[[3-Dimensional Position and Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Momentum and the Momentum Principle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Linear Momentum]]&lt;br /&gt;
*[[Newton&#039;s Second Law: the Momentum Principle]]&lt;br /&gt;
*[[Impulse and Momentum]]&lt;br /&gt;
*[[Net Force]]&lt;br /&gt;
*[[Inertia]]&lt;br /&gt;
*[[Acceleration]]&lt;br /&gt;
*[[Relativistic Momentum]]&lt;br /&gt;
&amp;lt;!-- Kinematics and Projectile Motion relocated to Week 3 per advice of Dr. Greco --&amp;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;
====Iterative Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Iterative Prediction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Analytic Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- *[[Analytical Prediction]] Deprecated --&amp;gt;&lt;br /&gt;
*[[Kinematics]]&lt;br /&gt;
*[[Projectile Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Iterative Prediction with a Varying Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Fundamentals of Iterative Prediction with Varying Force]]&lt;br /&gt;
*[[Spring_Force]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
&amp;lt;!--*[[Hooke&#039;s Law]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
&amp;lt;!--*[[Spring Force]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
*[[Iterative Prediction of Spring-Mass System]]&lt;br /&gt;
*[[Terminal Speed]]&lt;br /&gt;
*[[Predicting Change in multiple dimensions]]&lt;br /&gt;
*[[Two Dimensional Harmonic Motion]]&lt;br /&gt;
*[[Determinism]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Fundamental Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Gravitational Force]]&lt;br /&gt;
*[[Gravitational Force Near Earth]]&lt;br /&gt;
*[[Gravitational Force in Space and Other Applications]]&lt;br /&gt;
*[[3 or More Body Interactions]]&lt;br /&gt;
&amp;lt;!--[[Fluid Mechanics]]--&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Introduction to Magnetic Force]]&lt;br /&gt;
*[[Strong and Weak Force]]&lt;br /&gt;
*[[Reciprocity]]&lt;br /&gt;
*[[Conservation of Momentum]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;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;
*[[Kinds of Matter]]&lt;br /&gt;
*[[Ball and Spring Model of Matter]]&lt;br /&gt;
*[[Density]]&lt;br /&gt;
*[[Length and Stiffness of an Interatomic Bond]]&lt;br /&gt;
*[[Young&#039;s Modulus]]&lt;br /&gt;
*[[Speed of Sound in Solids]]&lt;br /&gt;
*[[Malleability]]&lt;br /&gt;
*[[Ductility]]&lt;br /&gt;
*[[Weight]]&lt;br /&gt;
*[[Hardness]]&lt;br /&gt;
*[[Boiling Point]]&lt;br /&gt;
*[[Melting Point]]&lt;br /&gt;
*[[Change of State]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Identifying Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Free Body Diagram]]&lt;br /&gt;
*[[Inclined Plane]]&lt;br /&gt;
*[[Compression or Normal Force]]&lt;br /&gt;
*[[Tension]]&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;
====Curving Motion====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Curving Motion]]&lt;br /&gt;
*[[Centripetal Force and Curving Motion]]&lt;br /&gt;
*[[Perpetual Freefall (Orbit)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Jeet Bhatkar====&lt;br /&gt;
&lt;br /&gt;
====Energy Principle====&lt;br /&gt;
The Energy Principle is a fundamental concept in physics that describes the relationship between different forms of energy and their conservation within a system. Understanding the Energy Principle is crucial for analyzing the motion and interactions of objects in various physical scenarios.&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[[Kinetic Energy]]&lt;br /&gt;
Kinetic energy is the energy an object possesses due to its motion.&lt;br /&gt;
*[[Work/Energy]]&lt;br /&gt;
Potential energy arises from the position of an object relative to its surroundings. Common forms of potential energy include gravitational potential energy and elastic potential energy.&lt;br /&gt;
*[[The Energy Principle]]&lt;br /&gt;
Work and energy are closely related concepts. Work (&lt;br /&gt;
𝑊) done on an object is defined as the force (&lt;br /&gt;
𝐹) applied to the object multiplied by the displacement (&lt;br /&gt;
𝑑) of the object in the direction of the force:&lt;br /&gt;
The Energy Principle states that the total mechanical energy of a system remains constant if only conservative forces (forces that depend only on the positions of the objects) are acting on the system. &lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
The principle of conservation of energy states that the total energy of an isolated system remains constant over time. In other words, energy cannot be created or destroyed, only transformed from one form to another. This principle is a fundamental concept in physics and has wide-ranging applications in mechanics, thermodynamics, and other branches of science.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Work by Non-Constant Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Work Done By A Nonconstant Force]]&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;
====Potential Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Energy]]&lt;br /&gt;
*[[Potential Energy of Macroscopic Springs]]&lt;br /&gt;
*[[Spring Potential Energy]]&lt;br /&gt;
*[[Ball and Spring Model]]&lt;br /&gt;
*[[Gravitational Potential Energy]]&lt;br /&gt;
*[[Energy Graphs]]&lt;br /&gt;
*[[Escape Velocity]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Multiparticle Systems====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Center of Mass]]&lt;br /&gt;
*[[Multi-particle analysis of Momentum]]&lt;br /&gt;
*[[Potential Energy of a Multiparticle System]]&lt;br /&gt;
*[[Work and Energy for an Extended System]]&lt;br /&gt;
*[[Internal Energy]]&lt;br /&gt;
**[[Potential Energy of a Pair of Neutral Atoms]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Choice of System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[System &amp;amp; Surroundings]]&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;
====Thermal Energy, Dissipation, and Transfer of Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Thermal Energy]]&lt;br /&gt;
*[[Specific Heat]]&lt;br /&gt;
*[[Calorific Value(Heat of combustion)]]&lt;br /&gt;
*[[First Law of Thermodynamics]]&lt;br /&gt;
*[[Second Law of Thermodynamics and Entropy]]&lt;br /&gt;
*[[Temperature]]&lt;br /&gt;
*[[Transformation of Energy]]&lt;br /&gt;
*[[The Maxwell-Boltzmann Distribution]]&lt;br /&gt;
*[[Air Resistance]]&lt;br /&gt;
*[[The Third Law of Thermodynamics]]&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;
====Rotational and Vibrational Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Translational, Rotational and Vibrational Energy]]&lt;br /&gt;
*[[Rolling Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Different Models of a System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Particle Systems]]&lt;br /&gt;
*[[Real Systems]]&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;
====Friction====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Friction]]&lt;br /&gt;
*[[Static Friction]]&lt;br /&gt;
*[[Kinetic Friction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conservation of Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conservation of Momentum]]&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;
====Collisions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s Third Law of Motion]]&lt;br /&gt;
*[[Collisions]]&lt;br /&gt;
*[[Elastic Collisions]]&lt;br /&gt;
*[[Inelastic Collisions]]&lt;br /&gt;
*[[Maximally Inelastic Collision]]&lt;br /&gt;
*[[Head-on Collision of Equal Masses]]&lt;br /&gt;
*[[Head-on Collision of Unequal Masses]]&lt;br /&gt;
*[[Scattering: Collisions in 2D and 3D]]&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Coefficient of Restitution]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rotations====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rotational Kinematics]]&lt;br /&gt;
*[[Eulerian Angles]]&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;
====Angular Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Total Angular Momentum]]&lt;br /&gt;
*[[Translational Angular Momentum]]&lt;br /&gt;
*[[Rotational Angular Momentum]]&lt;br /&gt;
*[[The Angular Momentum Principle]]&lt;br /&gt;
*[[Angular Impulse]]&lt;br /&gt;
*[[Predicting the Position of a Rotating System]]&lt;br /&gt;
*[[The Moments of Inertia]]&lt;br /&gt;
*[[Right Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Analyzing Motion with and without Torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Torque]]&lt;br /&gt;
*[[Torque 2]]&lt;br /&gt;
*[[Systems with Zero Torque]]&lt;br /&gt;
*[[Systems with Nonzero Torque]]&lt;br /&gt;
*[[Torque vs Work]]&lt;br /&gt;
*[[Gyroscopes]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Introduction to Quantum Concepts====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Electron transitions]]&lt;br /&gt;
*[[Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;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 style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 2==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====3D Vectors====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Right Hand Rule]]&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;
====Electric field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
RITHWIK SHARMA FALL 2025&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
An electric field shows how a charged object pushes or pulls on other charges around it. The field points in the direction a positive charge would move, and its strength depends on how much charge is creating it and how far away you are.&lt;br /&gt;
*[[Electric Field and Electric Potential]]&lt;br /&gt;
Electric potential describes how much energy per charge is stored at a point in space. The electric field tells you how that potential changes from one point to another. Steeper changes in potential create stronger electric fields.&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;
== Electric force ==&lt;br /&gt;
&#039;&#039;&#039;Jeet Bhatkar – Fall 2025&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Big Idea ==&lt;br /&gt;
Electric force is the interaction between objects that have electric charge. It is:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Long-range&#039;&#039;&#039;: acts even when charges do not touch  &lt;br /&gt;
* &#039;&#039;&#039;Vector-valued&#039;&#039;&#039;: has magnitude and direction  &lt;br /&gt;
* &#039;&#039;&#039;Superposable&#039;&#039;&#039;: forces from many charges add as vectors  &lt;br /&gt;
&lt;br /&gt;
At the intro level, the electric force between two point charges is described by Coulomb’s law, the electrostatic analog of the gravitational force between masses.&lt;br /&gt;
&lt;br /&gt;
== Key Equations ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (magnitude)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{F}[/math] = magnitude of the electric force  &lt;br /&gt;
* [math]\displaystyle{k \approx 8.99 \times 10^9\ \text{N·m}^2/\text{C}^2}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_1, q_2}[/math] = charges (C)  &lt;br /&gt;
* [math]\displaystyle{r}[/math] = separation between the charges (m)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (vector form)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F}_{2 \leftarrow 1} = k \dfrac{q_1 q_2}{r^2} \,\hat{r}_{2 \leftarrow 1} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{\vec{F}_{2 \leftarrow 1}}[/math] = force on charge 2 due to charge 1  &lt;br /&gt;
* [math]\displaystyle{\hat{r}_{2 \leftarrow 1}}[/math] = unit vector from 1 to 2  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Relation to Electric Field&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F} = q \vec{E} }[/math]&lt;br /&gt;
&lt;br /&gt;
Once you know [math]\displaystyle{\vec{E}}[/math] at a point, you can find the force on any charge [math]\displaystyle{q}[/math] placed there.&lt;br /&gt;
&lt;br /&gt;
== Conceptual Picture ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sign of charges&#039;&#039;&#039;&lt;br /&gt;
* Like charges (both positive or both negative) → &#039;&#039;&#039;repel&#039;&#039;&#039;  &lt;br /&gt;
* Unlike charges (one positive, one negative) → &#039;&#039;&#039;attract&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Distance dependence&#039;&#039;&#039;&lt;br /&gt;
* Force falls off as [math]\displaystyle{1/r^2}[/math], so doubling the distance makes the force 4 times smaller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Superposition principle&#039;&#039;&#039;&lt;br /&gt;
If there are many charges, the net force on a given charge is the vector sum of the forces from each individual charge:&lt;br /&gt;
[math]\displaystyle{ \vec{F}_\text{net} = \sum_i \vec{F}_i }[/math].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Electric vs. gravitational force&#039;&#039;&#039;&lt;br /&gt;
* Both follow inverse-square laws  &lt;br /&gt;
* Gravity is always attractive; electric force can be attractive or repulsive  &lt;br /&gt;
* Electric forces are usually much stronger at the particle scale  &lt;br /&gt;
&lt;br /&gt;
== Worked Example 1: Two Point Charges on a Line ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Two charges are placed on the x-axis:&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{q_1 = +3.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.00\ \text{m}}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_2 = -2.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.40\ \text{m}}[/math]  &lt;br /&gt;
&lt;br /&gt;
What is the magnitude and direction of the force on [math]\displaystyle{q_2}[/math]?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution (outline).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Distance between charges:  &lt;br /&gt;
[math]\displaystyle{ r = 0.40\ \text{m} }[/math].&lt;br /&gt;
&lt;br /&gt;
# Magnitude using Coulomb’s law:  &lt;br /&gt;
[math]\displaystyle{&lt;br /&gt;
F = k \dfrac{|q_1 q_2|}{r^2}&lt;br /&gt;
= (8.99 \times 10^9)\,\dfrac{(3.0 \times 10^{-6})(2.0 \times 10^{-6})}{(0.40)^2}&lt;br /&gt;
}[/math]&lt;br /&gt;
&lt;br /&gt;
# Sign and direction:  &lt;br /&gt;
* [math]\displaystyle{q_1}[/math] is positive, [math]\displaystyle{q_2}[/math] is negative → force is &#039;&#039;&#039;attractive&#039;&#039;&#039;  &lt;br /&gt;
* On [math]\displaystyle{q_2}[/math], the force points toward [math]\displaystyle{q_1}[/math]  &lt;br /&gt;
* Since [math]\displaystyle{q_1}[/math] is at smaller x, the force on [math]\displaystyle{q_2}[/math] points in the &#039;&#039;&#039;−x&#039;&#039;&#039; direction  &lt;br /&gt;
&lt;br /&gt;
You can finish by computing the numerical value and writing it as a vector, e.g. [math]\displaystyle{\vec{F}_{2 \leftarrow 1} = -F\,\hat{x}}[/math].&lt;br /&gt;
&lt;br /&gt;
== Worked Example 2: Superposition with Three Charges ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Three equal charges [math]\displaystyle{q}[/math] are at the corners of an equilateral triangle of side [math]\displaystyle{a}[/math]. What is the net force on one of the charges?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Idea (no full algebra).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Each of the other two charges exerts a force of magnitude  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{q^2}{a^2} }[/math]  &lt;br /&gt;
* The angle between these two forces is [math]\displaystyle{60^\circ}[/math]  &lt;br /&gt;
* Use vector addition:  &lt;br /&gt;
  * Add components along the symmetry axis  &lt;br /&gt;
  * Perpendicular components cancel by symmetry  &lt;br /&gt;
&lt;br /&gt;
This shows how symmetry plus superposition simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
== Computational Model (GlowScript) ==&lt;br /&gt;
&lt;br /&gt;
Below is a simple GlowScript (VPython) model that computes and visualizes the electric force between two point charges in 3D.&lt;br /&gt;
&lt;br /&gt;
You can:&lt;br /&gt;
* Paste this into a new GlowScript Trinket (Python / VPython),&lt;br /&gt;
* Get the embed code from Trinket,&lt;br /&gt;
* Embed that code into this page so it runs directly here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
from vpython import *&lt;br /&gt;
&lt;br /&gt;
# constant&lt;br /&gt;
k = 8.99e9  # N·m^2/C^2&lt;br /&gt;
&lt;br /&gt;
# scene setup&lt;br /&gt;
scene.caption = &amp;quot;Drag the red charge to see how the force on the blue charge changes.\n&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# charges (positions in meters, charges in coulombs)&lt;br /&gt;
q1 = 2e-6   # C (blue, fixed)&lt;br /&gt;
q2 = -3e-6  # C (red, movable)&lt;br /&gt;
&lt;br /&gt;
charge1 = sphere(pos=vector(-0.5, 0, 0), radius=0.05, color=color.blue)&lt;br /&gt;
charge2 = sphere(pos=vector(0.5, 0, 0), radius=0.05, color=color.red, make_trail=True)&lt;br /&gt;
&lt;br /&gt;
# arrow to show force on q2 due to q1&lt;br /&gt;
F_arrow = arrow(pos=charge2.pos, axis=vector(0.2, 0, 0))&lt;br /&gt;
&lt;br /&gt;
def electric_force(q1, q2, r1, r2):&lt;br /&gt;
    r_vec = r2 - r1&lt;br /&gt;
    r = mag(r_vec)&lt;br /&gt;
    if r == 0:&lt;br /&gt;
        return vector(0, 0, 0)&lt;br /&gt;
    F_mag = k * q1 * q2 / r**2&lt;br /&gt;
    return F_mag * norm(r_vec)&lt;br /&gt;
&lt;br /&gt;
dragging = False&lt;br /&gt;
&lt;br /&gt;
def down():&lt;br /&gt;
    global dragging&lt;br /&gt;
    if scene.mouse.pick is charge2:&lt;br /&gt;
        dragging = True&lt;br /&gt;
&lt;br /&gt;
def up():&lt;br /&gt;
    global dragging&lt;br /&gt;
    dragging = False&lt;br /&gt;
&lt;br /&gt;
scene.bind(&amp;quot;mousedown&amp;quot;, lambda evt: down())&lt;br /&gt;
scene.bind(&amp;quot;mouseup&amp;quot;,   lambda evt: up())&lt;br /&gt;
&lt;br /&gt;
while True:&lt;br /&gt;
    rate(60)&lt;br /&gt;
&lt;br /&gt;
    if dragging:&lt;br /&gt;
        # move the red charge with the mouse in the x-y plane&lt;br /&gt;
        m = scene.mouse.pos&lt;br /&gt;
        charge2.pos = vector(m.x, m.y, 0)&lt;br /&gt;
&lt;br /&gt;
    F = electric_force(q1, q2, charge1.pos, charge2.pos)&lt;br /&gt;
&lt;br /&gt;
    # update arrow to show force on q2&lt;br /&gt;
    F_arrow.pos = charge2.pos&lt;br /&gt;
    # scale arrow length for visibility (purely visual)&lt;br /&gt;
    F_arrow.axis = F * 1e7&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can extend this model to include more charges or show the net force on a test charge at different locations.&lt;br /&gt;
&lt;br /&gt;
== Common Mistakes and How to Avoid Them ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Forgetting that force is a vector.&#039;&#039;&#039;  &lt;br /&gt;
  Always draw a diagram and keep track of directions. Use components in 2D/3D.&lt;br /&gt;
* &#039;&#039;&#039;Dropping the absolute value in the magnitude formula.&#039;&#039;&#039;  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math] is a positive magnitude. Decide direction separately.&lt;br /&gt;
* &#039;&#039;&#039;Mixing up [math]\displaystyle{r}[/math] and [math]\displaystyle{r^2}[/math].&#039;&#039;&#039;  &lt;br /&gt;
  The force goes like [math]\displaystyle{1/r^2}[/math], not [math]\displaystyle{1/r}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Using wrong units.&#039;&#039;&#039;  &lt;br /&gt;
  Convert microcoulombs to coulombs, centimeters to meters, etc.  &lt;br /&gt;
  [math]\displaystyle{1\ \mu\text{C} = 1 \times 10^{-6}\ \text{C}}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Trying to memorize instead of understand.&#039;&#039;&#039;  &lt;br /&gt;
  Focus on inverse-square behavior, sign of charges, and superposition.&lt;br /&gt;
&lt;br /&gt;
== Connections to Other Topics ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Electric Field&#039;&#039;&#039; – Electric force per unit charge is the electric field:  &lt;br /&gt;
  [math]\displaystyle{ \vec{E} = \dfrac{\vec{F}}{q} }[/math].&lt;br /&gt;
* &#039;&#039;&#039;Potential Energy and Electric Potential&#039;&#039;&#039; – Work done by electric forces leads to electric potential energy and voltage.&lt;br /&gt;
* &#039;&#039;&#039;Lorentz Force&#039;&#039;&#039; – The full force on a moving charge also includes magnetic fields:  &lt;br /&gt;
  [math]\displaystyle{ \vec{F} = q(\vec{E} + \vec{v} \times \vec{B}) }[/math].  &lt;br /&gt;
  This page focuses on the electric part.&lt;br /&gt;
&lt;br /&gt;
== Practice Problems ==&lt;br /&gt;
&lt;br /&gt;
You can add your own numerical values and solve them. Consider including full solutions in a collapsible section.&lt;br /&gt;
&lt;br /&gt;
# Two charges of [math]\displaystyle{+2.0\ \mu\text{C}}[/math] and [math]\displaystyle{+5.0\ \mu\text{C}}[/math] are 0.30 m apart.  &lt;br /&gt;
   * (a) Find the magnitude of the force on each charge.  &lt;br /&gt;
   * (b) Is the force attractive or repulsive? Explain.&lt;br /&gt;
&lt;br /&gt;
# A charge [math]\displaystyle{q_1 = +4.0\ \mu\text{C}}[/math] is at the origin and [math]\displaystyle{q_2 = -1.0\ \mu\text{C}}[/math] is at [math]\displaystyle{x = 0.20\ \text{m}}[/math].  &lt;br /&gt;
   * Find the electric force on [math]\displaystyle{q_1}[/math] (magnitude and direction).  &lt;br /&gt;
   * Verify that Newton’s third law holds (forces are equal and opposite).&lt;br /&gt;
&lt;br /&gt;
# Three equal positive charges are placed at the corners of a square of side [math]\displaystyle{a}[/math].  &lt;br /&gt;
   * Find the net force on one of the corner charges.  &lt;br /&gt;
   * Use symmetry to simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
# A particle with charge [math]\displaystyle{q = -1.6 \times 10^{-19}\ \text{C}}[/math] experiences an electric force of [math]\displaystyle{3.2 \times 10^{-14}\ \text{N}}[/math] in the +y direction.  &lt;br /&gt;
   * (a) What is the electric field at that point (magnitude and direction)?  &lt;br /&gt;
   * (b) If the charge were positive instead, what would the force direction be?&lt;br /&gt;
&lt;br /&gt;
== What to Review Before an Exam ==&lt;br /&gt;
&lt;br /&gt;
* Determine force direction from a diagram, not just from algebra  &lt;br /&gt;
* Practice vector addition of multiple forces  &lt;br /&gt;
* Do quick estimates: “If I double the distance, what happens to the force?”  &lt;br /&gt;
* Know the difference between:&lt;br /&gt;
  * Force between charges (Coulomb’s law)  &lt;br /&gt;
  * Electric field  &lt;br /&gt;
  * Electric potential energy&lt;br /&gt;
&lt;br /&gt;
====Electric field of a point particle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Charge]]&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;
====Superposition====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superposition Principle]]&lt;br /&gt;
*[[Superposition principle]]&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;
====Dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Dipole]]&lt;br /&gt;
*[[Magnetic Dipole]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Interactions of charged objects====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Tape experiments====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&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;
====Polarization====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&lt;br /&gt;
*[[Polarization of an Atom]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conductors and Insulators====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conductivity and Resistivity]]&lt;br /&gt;
*[[Insulators]]&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Conductors]]&lt;br /&gt;
*[[Polarization of a conductor]]&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;
====Charging and Discharging====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charge Transfer]]&lt;br /&gt;
*[[Electrostatic Discharge]]&lt;br /&gt;
*[[Charged Conductor and Charged Insulator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Field of a charged rod====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Field of a Charged Rod|Charged Rod]]&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;
====Field of a charged ring/disk/capacitor====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Ring]]&lt;br /&gt;
*[[Charged Disk]]&lt;br /&gt;
*[[Charged Capacitor]]&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;
====Field of a charged sphere====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Spherical Shell]]&lt;br /&gt;
*[[Field of a Charged Ball]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Potential energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential 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;
====Electric potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]] &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;
&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;
====Sign of a potential difference====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sign of a Potential Difference]]&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;
====Potential at a single location====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Potential Difference at One Location]]&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;
====Path independence and round trip potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in an insulator====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Electric Field in an Insulator]]&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;
====Moving charges in a magnetic field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Biot-Savart Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Biot-Savart Law]]&lt;br /&gt;
*[[Biot-Savart Law for Currents]]&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;
====Moving charges, electron current, and conventional current====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Moving Point Charge]]&lt;br /&gt;
&lt;br /&gt;
A moving point charge creates both electric and magnetic fields. As the charge accelerates or changes position, it alters the surrounding electromagnetic field, which can influence other charges nearby. This is the fundamental concept behind electromagnetic radiation and wave propagation. When many charges move collectively—such as electrons in a wire—this flow is referred to as electric current. This perfectly segues us into the next section of this page.&lt;br /&gt;
&lt;br /&gt;
*[[Current]]&lt;br /&gt;
&lt;br /&gt;
Current is typically measured in amperes and represents the rate at which charge flows through a surface. Although electrons carry the charge and move from negative to positive, conventional current is defined in the opposite direction: from positive to negative. This convention dates back to early scientific assumptions and remains standard in circuit diagrams and equations today.&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;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Magnetic field of a wire====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Long Straight Wire]]&lt;br /&gt;
*[[Magnetic Field of a Curved Wire]]&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;
====Magnetic field of a current-carrying loop====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Loop]]&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;
====Magnetic field of a Charged Disk====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Disk]]&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;
====Magnetic dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Dipole Moment]]&lt;br /&gt;
*[[Bar Magnet]]&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;
====Atomic structure of magnets====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Atomic Structure of Magnets]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Circuitry Basics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Understanding Fundamentals of Current, Voltage, and Resistance]]&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;
====Steady state current====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Steady State]]&lt;br /&gt;
*[[Non Steady State]]&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;
====Kirchoff&#039;s Laws====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&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;
====Electric fields and energy in circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential Difference]]&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;
====Macroscopic analysis of circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[Parallel Circuits]]&lt;br /&gt;
*[[Parallel Circuits vs. Series Circuits*]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&lt;br /&gt;
*[[Fundamentals of Resistance]]&lt;br /&gt;
*[[Problem Solving]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in circuits with capacitors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charging and Discharging a Capacitor]]&lt;br /&gt;
*[[RC Circuit]] &lt;br /&gt;
*[[R Circuit]]&lt;br /&gt;
*[[AC and DC]]&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;
====Magnetic forces on charges and currents====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Motors and Generators]]&lt;br /&gt;
*[[Applying Magnetic Force to Currents]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Analysis of Railgun vs Coil gun technologies]]&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;
====Electric and magnetic forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[VPython Modelling of Electric and Magnetic Forces]]&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;
====Velocity selector====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Combining Electric and Magnetic Forces]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Hall Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Hall Effect]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Motional Emf]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Magnetic force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Magnetic torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Gauss&#039;s Law====&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;
*[[Gauss&#039;s Law]]&lt;br /&gt;
*[[Magnetic Flux]]&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;
====Ampere&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Ampere-Maxwell Law]]&lt;br /&gt;
*[[Magnetic Field of Coaxial Cable Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Long Thick Wire Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Toroid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Solenoid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[The Differential Form of Ampere&#039;s Law]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Semiconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Semiconductor Devices]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Faraday&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Motional Emf using Faraday&#039;s Law]]&lt;br /&gt;
*[[Lenz&#039;s Law]]&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;
====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 Law]]&lt;br /&gt;
*[[Magnetic Flux]]&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Maxwell&#039;s Electromagnetic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Circuits revisited====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;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;
====Inductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Inductors]]&lt;br /&gt;
*[[Current in an LC Circuit]]&lt;br /&gt;
*[[Current in an RL Circuit]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
==== Electromagnetic Radiation ====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electromagnetic Radiation]]&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;
====Sparks in the air====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sparks in Air]]&lt;br /&gt;
*[[Spark Plugs]]&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;
====Superconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superconducters]]&lt;br /&gt;
*[[Superconductors]]&lt;br /&gt;
*[[Meissner effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 3==&lt;br /&gt;
&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Classical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Classical Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
&lt;br /&gt;
===Weeks 2 and 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Special Relativity and the Lorentz Transformation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Frame of Reference]]&lt;br /&gt;
&lt;br /&gt;
*[[Einstein&#039;s Theory of Special Relativity]]&lt;br /&gt;
*[[Time Dilation]]&lt;br /&gt;
*[[Twin Paradox]]&lt;br /&gt;
*[[Lorentz Transformations]]&lt;br /&gt;
*[[Relativistic Doppler Effect]]&lt;br /&gt;
*[[Einstein&#039;s Theory of General Relativity]]&lt;br /&gt;
*[[Albert A. Micheleson &amp;amp; Edward W. Morley]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Photons and the Photoelectric Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Spontaneous Photon Emission]]&lt;br /&gt;
*[[Light Scattering]]&lt;br /&gt;
*[[Lasers]]&lt;br /&gt;
*[[Electronic Energy Levels and Photons]]&lt;br /&gt;
*[[Quantum Properties of Light]]&lt;br /&gt;
*[[The Photoelectric Effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Weeks 5 and 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Matter Waves and Wave-Particle Duality====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Wave-Particle Duality]]&lt;br /&gt;
*[[Particle in a 1-Dimensional box]]&lt;br /&gt;
*[[Heisenberg Uncertainty Principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Wave Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Standing Waves]]&lt;br /&gt;
*[[Wavelength]]&lt;br /&gt;
*[[Wavelength and Frequency]]&lt;br /&gt;
*[[Mechanical Waves]]&lt;br /&gt;
*[[Transverse and Longitudinal Waves]]&lt;br /&gt;
*[[Fourier Series and Transform]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Schrödinger Equation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[The Born Rule]]&lt;br /&gt;
*[[Solution for a Single Free Particle]]&lt;br /&gt;
*[[Solution for a Single Particle in an Infinite Quantum Well - Darin]]&lt;br /&gt;
*[[Solution for a Single Particle in a Semi-Infinite Quantum Well]]&lt;br /&gt;
*[[Quantum Harmonic Oscillator]]&lt;br /&gt;
*[[Solution for Simple Harmonic Oscillator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Quantum Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Tunneling through Potential Barriers]]&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;
====The Hydrogen Atom====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rutherford-Bohr Model====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Many-Electron Atoms====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
*[[Pauli exclusion principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====The Nucleus====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nucleus]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Molecules====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Molecules]]&lt;br /&gt;
*[[Covalent Bonds]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Application of Statistics in Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Temperature &amp;amp; Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Topics===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Thermodynamics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Maxwell Relations]]&lt;br /&gt;
*[[Brownian Motion]]&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;
====Nuclear Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nuclear Fission]]&lt;br /&gt;
*[[Nuclear Energy from Fission and Fusion]]&lt;br /&gt;
*[[Radioactive Decay Processes]]&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;
====Particle Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Elementary Particles and Particle Physics Theory]]&lt;br /&gt;
*[[String Theory]]&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;
====Solid-State/Condensed Matter Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[What is Condensed Matter]]&lt;br /&gt;
*[[Crystalline Structures]]&lt;br /&gt;
*[[Electric-Band Structure]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47536</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47536"/>
		<updated>2025-12-01T04:21:05Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: /* 3D Vectors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
= &#039;&#039;&#039;Georgia Tech Student Wiki for Introductory Physics.&#039;&#039;&#039; =&lt;br /&gt;
&lt;br /&gt;
This resource 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 for future students!&lt;br /&gt;
&lt;br /&gt;
Looking to make a contribution?&lt;br /&gt;
#Pick one of the topics from intro physics listed below&lt;br /&gt;
#Add content to that topic or improve the quality of what is already there.&lt;br /&gt;
#Need to make a new topic? Edit this page and add it to the list under the appropriate category.  Then 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 written for students by a physics expert [http://p3server.pa.msu.edu/coursewiki/doku.php?id=183_notes MSU Physics Wiki]&lt;br /&gt;
* A wiki book on modern physics [https://en.wikibooks.org/wiki/Modern_Physics Modern Physics Wiki]&lt;br /&gt;
* A collection of 26 volumes of lecture notes by Prof. Wheeler of Reed College [https://rdc.reed.edu/c/wheeler/home/] &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 intro physics textbooks: [https://openstax.org/details/books/university-physics-volume-1  Vol1], [https://openstax.org/details/books/university-physics-volume-2  Vol2], [https://openstax.org/details/books/university-physics-volume-3  Vol3]&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;
* The Feynman lectures on physics are free to read [http://www.feynmanlectures.caltech.edu/ Feynman]&lt;br /&gt;
* Final Study Guide for Modern Physics II created by a lab TA [https://docs.google.com/document/d/1_6GktDPq5tiNFFYs_ZjgjxBAWVQYaXp_2Imha4_nSyc/edit?usp=sharing Modern Physics II Final Study Guide]&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;
* A listing of [[Notable Scientist]] with links to their individual pages &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 1==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====GlowScript 101====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Python Syntax]]&lt;br /&gt;
*[[GlowScript]]&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;
====VPython====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[VPython]]&lt;br /&gt;
*[[VPython basics]]&lt;br /&gt;
*[[VPython Common Errors and Troubleshooting]]&lt;br /&gt;
*[[VPython Functions]]&lt;br /&gt;
*[[VPython Lists]]&lt;br /&gt;
*[[VPython Loops]]&lt;br /&gt;
*[[VPython Multithreading]]&lt;br /&gt;
*[[VPython Animation]]&lt;br /&gt;
*[[VPython Objects]]&lt;br /&gt;
*[[VPython 3D Objects]]&lt;br /&gt;
*[[VPython Reference]]&lt;br /&gt;
*[[VPython MapReduceFilter]]&lt;br /&gt;
*[[VPython GUIs]]&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;
====Vectors and Units====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[SI Units]]&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;
====Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Types of Interactions and How to Detect Them]]&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;
====Velocity and Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s First Law of Motion]]&lt;br /&gt;
*[[Mass]]&lt;br /&gt;
*[[Velocity]]&lt;br /&gt;
*[[Speed]]&lt;br /&gt;
*[[Speed vs Velocity]]&lt;br /&gt;
*[[Relative Velocity]]&lt;br /&gt;
*[[Derivation of Average Velocity]]&lt;br /&gt;
*[[2-Dimensional Motion]]&lt;br /&gt;
*[[3-Dimensional Position and Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Momentum and the Momentum Principle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Linear Momentum]]&lt;br /&gt;
*[[Newton&#039;s Second Law: the Momentum Principle]]&lt;br /&gt;
*[[Impulse and Momentum]]&lt;br /&gt;
*[[Net Force]]&lt;br /&gt;
*[[Inertia]]&lt;br /&gt;
*[[Acceleration]]&lt;br /&gt;
*[[Relativistic Momentum]]&lt;br /&gt;
&amp;lt;!-- Kinematics and Projectile Motion relocated to Week 3 per advice of Dr. Greco --&amp;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;
====Iterative Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Iterative Prediction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Analytic Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- *[[Analytical Prediction]] Deprecated --&amp;gt;&lt;br /&gt;
*[[Kinematics]]&lt;br /&gt;
*[[Projectile Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Iterative Prediction with a Varying Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Fundamentals of Iterative Prediction with Varying Force]]&lt;br /&gt;
*[[Spring_Force]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
&amp;lt;!--*[[Hooke&#039;s Law]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
&amp;lt;!--*[[Spring Force]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
*[[Iterative Prediction of Spring-Mass System]]&lt;br /&gt;
*[[Terminal Speed]]&lt;br /&gt;
*[[Predicting Change in multiple dimensions]]&lt;br /&gt;
*[[Two Dimensional Harmonic Motion]]&lt;br /&gt;
*[[Determinism]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Fundamental Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Gravitational Force]]&lt;br /&gt;
*[[Gravitational Force Near Earth]]&lt;br /&gt;
*[[Gravitational Force in Space and Other Applications]]&lt;br /&gt;
*[[3 or More Body Interactions]]&lt;br /&gt;
&amp;lt;!--[[Fluid Mechanics]]--&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Introduction to Magnetic Force]]&lt;br /&gt;
*[[Strong and Weak Force]]&lt;br /&gt;
*[[Reciprocity]]&lt;br /&gt;
*[[Conservation of Momentum]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;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;
*[[Kinds of Matter]]&lt;br /&gt;
*[[Ball and Spring Model of Matter]]&lt;br /&gt;
*[[Density]]&lt;br /&gt;
*[[Length and Stiffness of an Interatomic Bond]]&lt;br /&gt;
*[[Young&#039;s Modulus]]&lt;br /&gt;
*[[Speed of Sound in Solids]]&lt;br /&gt;
*[[Malleability]]&lt;br /&gt;
*[[Ductility]]&lt;br /&gt;
*[[Weight]]&lt;br /&gt;
*[[Hardness]]&lt;br /&gt;
*[[Boiling Point]]&lt;br /&gt;
*[[Melting Point]]&lt;br /&gt;
*[[Change of State]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Identifying Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Free Body Diagram]]&lt;br /&gt;
*[[Inclined Plane]]&lt;br /&gt;
*[[Compression or Normal Force]]&lt;br /&gt;
*[[Tension]]&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;
====Curving Motion====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Curving Motion]]&lt;br /&gt;
*[[Centripetal Force and Curving Motion]]&lt;br /&gt;
*[[Perpetual Freefall (Orbit)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Jeet Bhatkar====&lt;br /&gt;
&lt;br /&gt;
====Energy Principle====&lt;br /&gt;
The Energy Principle is a fundamental concept in physics that describes the relationship between different forms of energy and their conservation within a system. Understanding the Energy Principle is crucial for analyzing the motion and interactions of objects in various physical scenarios.&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[[Kinetic Energy]]&lt;br /&gt;
Kinetic energy is the energy an object possesses due to its motion.&lt;br /&gt;
*[[Work/Energy]]&lt;br /&gt;
Potential energy arises from the position of an object relative to its surroundings. Common forms of potential energy include gravitational potential energy and elastic potential energy.&lt;br /&gt;
*[[The Energy Principle]]&lt;br /&gt;
Work and energy are closely related concepts. Work (&lt;br /&gt;
𝑊) done on an object is defined as the force (&lt;br /&gt;
𝐹) applied to the object multiplied by the displacement (&lt;br /&gt;
𝑑) of the object in the direction of the force:&lt;br /&gt;
The Energy Principle states that the total mechanical energy of a system remains constant if only conservative forces (forces that depend only on the positions of the objects) are acting on the system. &lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
The principle of conservation of energy states that the total energy of an isolated system remains constant over time. In other words, energy cannot be created or destroyed, only transformed from one form to another. This principle is a fundamental concept in physics and has wide-ranging applications in mechanics, thermodynamics, and other branches of science.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Work by Non-Constant Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Work Done By A Nonconstant Force]]&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;
====Potential Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Energy]]&lt;br /&gt;
*[[Potential Energy of Macroscopic Springs]]&lt;br /&gt;
*[[Spring Potential Energy]]&lt;br /&gt;
*[[Ball and Spring Model]]&lt;br /&gt;
*[[Gravitational Potential Energy]]&lt;br /&gt;
*[[Energy Graphs]]&lt;br /&gt;
*[[Escape Velocity]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Multiparticle Systems====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Center of Mass]]&lt;br /&gt;
*[[Multi-particle analysis of Momentum]]&lt;br /&gt;
*[[Potential Energy of a Multiparticle System]]&lt;br /&gt;
*[[Work and Energy for an Extended System]]&lt;br /&gt;
*[[Internal Energy]]&lt;br /&gt;
**[[Potential Energy of a Pair of Neutral Atoms]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Choice of System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[System &amp;amp; Surroundings]]&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;
====Thermal Energy, Dissipation, and Transfer of Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Thermal Energy]]&lt;br /&gt;
*[[Specific Heat]]&lt;br /&gt;
*[[Calorific Value(Heat of combustion)]]&lt;br /&gt;
*[[First Law of Thermodynamics]]&lt;br /&gt;
*[[Second Law of Thermodynamics and Entropy]]&lt;br /&gt;
*[[Temperature]]&lt;br /&gt;
*[[Transformation of Energy]]&lt;br /&gt;
*[[The Maxwell-Boltzmann Distribution]]&lt;br /&gt;
*[[Air Resistance]]&lt;br /&gt;
*[[The Third Law of Thermodynamics]]&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;
====Rotational and Vibrational Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Translational, Rotational and Vibrational Energy]]&lt;br /&gt;
*[[Rolling Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Different Models of a System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Particle Systems]]&lt;br /&gt;
*[[Real Systems]]&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;
====Friction====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Friction]]&lt;br /&gt;
*[[Static Friction]]&lt;br /&gt;
*[[Kinetic Friction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conservation of Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conservation of Momentum]]&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;
====Collisions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s Third Law of Motion]]&lt;br /&gt;
*[[Collisions]]&lt;br /&gt;
*[[Elastic Collisions]]&lt;br /&gt;
*[[Inelastic Collisions]]&lt;br /&gt;
*[[Maximally Inelastic Collision]]&lt;br /&gt;
*[[Head-on Collision of Equal Masses]]&lt;br /&gt;
*[[Head-on Collision of Unequal Masses]]&lt;br /&gt;
*[[Scattering: Collisions in 2D and 3D]]&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Coefficient of Restitution]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rotations====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rotational Kinematics]]&lt;br /&gt;
*[[Eulerian Angles]]&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;
====Angular Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Total Angular Momentum]]&lt;br /&gt;
*[[Translational Angular Momentum]]&lt;br /&gt;
*[[Rotational Angular Momentum]]&lt;br /&gt;
*[[The Angular Momentum Principle]]&lt;br /&gt;
*[[Angular Impulse]]&lt;br /&gt;
*[[Predicting the Position of a Rotating System]]&lt;br /&gt;
*[[The Moments of Inertia]]&lt;br /&gt;
*[[Right Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Analyzing Motion with and without Torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Torque]]&lt;br /&gt;
*[[Torque 2]]&lt;br /&gt;
*[[Systems with Zero Torque]]&lt;br /&gt;
*[[Systems with Nonzero Torque]]&lt;br /&gt;
*[[Torque vs Work]]&lt;br /&gt;
*[[Gyroscopes]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Introduction to Quantum Concepts====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Electron transitions]]&lt;br /&gt;
*[[Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;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 style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 2==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====3D Vectors====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Right Hand Rule]]&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;
====Electric field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
An electric field shows how a charged object pushes or pulls on other charges around it. The field points in the direction a positive charge would move, and its strength depends on how much charge is creating it and how far away you are.&lt;br /&gt;
*[[Electric Field and Electric Potential]]&lt;br /&gt;
Electric potential describes how much energy per charge is stored at a point in space. The electric field tells you how that potential changes from one point to another. Steeper changes in potential create stronger electric fields.&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;
== Electric force ==&lt;br /&gt;
&#039;&#039;&#039;Jeet Bhatkar – Fall 2025&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Big Idea ==&lt;br /&gt;
Electric force is the interaction between objects that have electric charge. It is:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Long-range&#039;&#039;&#039;: acts even when charges do not touch  &lt;br /&gt;
* &#039;&#039;&#039;Vector-valued&#039;&#039;&#039;: has magnitude and direction  &lt;br /&gt;
* &#039;&#039;&#039;Superposable&#039;&#039;&#039;: forces from many charges add as vectors  &lt;br /&gt;
&lt;br /&gt;
At the intro level, the electric force between two point charges is described by Coulomb’s law, the electrostatic analog of the gravitational force between masses.&lt;br /&gt;
&lt;br /&gt;
== Key Equations ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (magnitude)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{F}[/math] = magnitude of the electric force  &lt;br /&gt;
* [math]\displaystyle{k \approx 8.99 \times 10^9\ \text{N·m}^2/\text{C}^2}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_1, q_2}[/math] = charges (C)  &lt;br /&gt;
* [math]\displaystyle{r}[/math] = separation between the charges (m)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (vector form)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F}_{2 \leftarrow 1} = k \dfrac{q_1 q_2}{r^2} \,\hat{r}_{2 \leftarrow 1} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{\vec{F}_{2 \leftarrow 1}}[/math] = force on charge 2 due to charge 1  &lt;br /&gt;
* [math]\displaystyle{\hat{r}_{2 \leftarrow 1}}[/math] = unit vector from 1 to 2  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Relation to Electric Field&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F} = q \vec{E} }[/math]&lt;br /&gt;
&lt;br /&gt;
Once you know [math]\displaystyle{\vec{E}}[/math] at a point, you can find the force on any charge [math]\displaystyle{q}[/math] placed there.&lt;br /&gt;
&lt;br /&gt;
== Conceptual Picture ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sign of charges&#039;&#039;&#039;&lt;br /&gt;
* Like charges (both positive or both negative) → &#039;&#039;&#039;repel&#039;&#039;&#039;  &lt;br /&gt;
* Unlike charges (one positive, one negative) → &#039;&#039;&#039;attract&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Distance dependence&#039;&#039;&#039;&lt;br /&gt;
* Force falls off as [math]\displaystyle{1/r^2}[/math], so doubling the distance makes the force 4 times smaller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Superposition principle&#039;&#039;&#039;&lt;br /&gt;
If there are many charges, the net force on a given charge is the vector sum of the forces from each individual charge:&lt;br /&gt;
[math]\displaystyle{ \vec{F}_\text{net} = \sum_i \vec{F}_i }[/math].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Electric vs. gravitational force&#039;&#039;&#039;&lt;br /&gt;
* Both follow inverse-square laws  &lt;br /&gt;
* Gravity is always attractive; electric force can be attractive or repulsive  &lt;br /&gt;
* Electric forces are usually much stronger at the particle scale  &lt;br /&gt;
&lt;br /&gt;
== Worked Example 1: Two Point Charges on a Line ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Two charges are placed on the x-axis:&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{q_1 = +3.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.00\ \text{m}}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_2 = -2.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.40\ \text{m}}[/math]  &lt;br /&gt;
&lt;br /&gt;
What is the magnitude and direction of the force on [math]\displaystyle{q_2}[/math]?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution (outline).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Distance between charges:  &lt;br /&gt;
[math]\displaystyle{ r = 0.40\ \text{m} }[/math].&lt;br /&gt;
&lt;br /&gt;
# Magnitude using Coulomb’s law:  &lt;br /&gt;
[math]\displaystyle{&lt;br /&gt;
F = k \dfrac{|q_1 q_2|}{r^2}&lt;br /&gt;
= (8.99 \times 10^9)\,\dfrac{(3.0 \times 10^{-6})(2.0 \times 10^{-6})}{(0.40)^2}&lt;br /&gt;
}[/math]&lt;br /&gt;
&lt;br /&gt;
# Sign and direction:  &lt;br /&gt;
* [math]\displaystyle{q_1}[/math] is positive, [math]\displaystyle{q_2}[/math] is negative → force is &#039;&#039;&#039;attractive&#039;&#039;&#039;  &lt;br /&gt;
* On [math]\displaystyle{q_2}[/math], the force points toward [math]\displaystyle{q_1}[/math]  &lt;br /&gt;
* Since [math]\displaystyle{q_1}[/math] is at smaller x, the force on [math]\displaystyle{q_2}[/math] points in the &#039;&#039;&#039;−x&#039;&#039;&#039; direction  &lt;br /&gt;
&lt;br /&gt;
You can finish by computing the numerical value and writing it as a vector, e.g. [math]\displaystyle{\vec{F}_{2 \leftarrow 1} = -F\,\hat{x}}[/math].&lt;br /&gt;
&lt;br /&gt;
== Worked Example 2: Superposition with Three Charges ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Three equal charges [math]\displaystyle{q}[/math] are at the corners of an equilateral triangle of side [math]\displaystyle{a}[/math]. What is the net force on one of the charges?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Idea (no full algebra).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Each of the other two charges exerts a force of magnitude  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{q^2}{a^2} }[/math]  &lt;br /&gt;
* The angle between these two forces is [math]\displaystyle{60^\circ}[/math]  &lt;br /&gt;
* Use vector addition:  &lt;br /&gt;
  * Add components along the symmetry axis  &lt;br /&gt;
  * Perpendicular components cancel by symmetry  &lt;br /&gt;
&lt;br /&gt;
This shows how symmetry plus superposition simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
== Computational Model (GlowScript) ==&lt;br /&gt;
&lt;br /&gt;
Below is a simple GlowScript (VPython) model that computes and visualizes the electric force between two point charges in 3D.&lt;br /&gt;
&lt;br /&gt;
You can:&lt;br /&gt;
* Paste this into a new GlowScript Trinket (Python / VPython),&lt;br /&gt;
* Get the embed code from Trinket,&lt;br /&gt;
* Embed that code into this page so it runs directly here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
from vpython import *&lt;br /&gt;
&lt;br /&gt;
# constant&lt;br /&gt;
k = 8.99e9  # N·m^2/C^2&lt;br /&gt;
&lt;br /&gt;
# scene setup&lt;br /&gt;
scene.caption = &amp;quot;Drag the red charge to see how the force on the blue charge changes.\n&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# charges (positions in meters, charges in coulombs)&lt;br /&gt;
q1 = 2e-6   # C (blue, fixed)&lt;br /&gt;
q2 = -3e-6  # C (red, movable)&lt;br /&gt;
&lt;br /&gt;
charge1 = sphere(pos=vector(-0.5, 0, 0), radius=0.05, color=color.blue)&lt;br /&gt;
charge2 = sphere(pos=vector(0.5, 0, 0), radius=0.05, color=color.red, make_trail=True)&lt;br /&gt;
&lt;br /&gt;
# arrow to show force on q2 due to q1&lt;br /&gt;
F_arrow = arrow(pos=charge2.pos, axis=vector(0.2, 0, 0))&lt;br /&gt;
&lt;br /&gt;
def electric_force(q1, q2, r1, r2):&lt;br /&gt;
    r_vec = r2 - r1&lt;br /&gt;
    r = mag(r_vec)&lt;br /&gt;
    if r == 0:&lt;br /&gt;
        return vector(0, 0, 0)&lt;br /&gt;
    F_mag = k * q1 * q2 / r**2&lt;br /&gt;
    return F_mag * norm(r_vec)&lt;br /&gt;
&lt;br /&gt;
dragging = False&lt;br /&gt;
&lt;br /&gt;
def down():&lt;br /&gt;
    global dragging&lt;br /&gt;
    if scene.mouse.pick is charge2:&lt;br /&gt;
        dragging = True&lt;br /&gt;
&lt;br /&gt;
def up():&lt;br /&gt;
    global dragging&lt;br /&gt;
    dragging = False&lt;br /&gt;
&lt;br /&gt;
scene.bind(&amp;quot;mousedown&amp;quot;, lambda evt: down())&lt;br /&gt;
scene.bind(&amp;quot;mouseup&amp;quot;,   lambda evt: up())&lt;br /&gt;
&lt;br /&gt;
while True:&lt;br /&gt;
    rate(60)&lt;br /&gt;
&lt;br /&gt;
    if dragging:&lt;br /&gt;
        # move the red charge with the mouse in the x-y plane&lt;br /&gt;
        m = scene.mouse.pos&lt;br /&gt;
        charge2.pos = vector(m.x, m.y, 0)&lt;br /&gt;
&lt;br /&gt;
    F = electric_force(q1, q2, charge1.pos, charge2.pos)&lt;br /&gt;
&lt;br /&gt;
    # update arrow to show force on q2&lt;br /&gt;
    F_arrow.pos = charge2.pos&lt;br /&gt;
    # scale arrow length for visibility (purely visual)&lt;br /&gt;
    F_arrow.axis = F * 1e7&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can extend this model to include more charges or show the net force on a test charge at different locations.&lt;br /&gt;
&lt;br /&gt;
== Common Mistakes and How to Avoid Them ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Forgetting that force is a vector.&#039;&#039;&#039;  &lt;br /&gt;
  Always draw a diagram and keep track of directions. Use components in 2D/3D.&lt;br /&gt;
* &#039;&#039;&#039;Dropping the absolute value in the magnitude formula.&#039;&#039;&#039;  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math] is a positive magnitude. Decide direction separately.&lt;br /&gt;
* &#039;&#039;&#039;Mixing up [math]\displaystyle{r}[/math] and [math]\displaystyle{r^2}[/math].&#039;&#039;&#039;  &lt;br /&gt;
  The force goes like [math]\displaystyle{1/r^2}[/math], not [math]\displaystyle{1/r}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Using wrong units.&#039;&#039;&#039;  &lt;br /&gt;
  Convert microcoulombs to coulombs, centimeters to meters, etc.  &lt;br /&gt;
  [math]\displaystyle{1\ \mu\text{C} = 1 \times 10^{-6}\ \text{C}}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Trying to memorize instead of understand.&#039;&#039;&#039;  &lt;br /&gt;
  Focus on inverse-square behavior, sign of charges, and superposition.&lt;br /&gt;
&lt;br /&gt;
== Connections to Other Topics ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Electric Field&#039;&#039;&#039; – Electric force per unit charge is the electric field:  &lt;br /&gt;
  [math]\displaystyle{ \vec{E} = \dfrac{\vec{F}}{q} }[/math].&lt;br /&gt;
* &#039;&#039;&#039;Potential Energy and Electric Potential&#039;&#039;&#039; – Work done by electric forces leads to electric potential energy and voltage.&lt;br /&gt;
* &#039;&#039;&#039;Lorentz Force&#039;&#039;&#039; – The full force on a moving charge also includes magnetic fields:  &lt;br /&gt;
  [math]\displaystyle{ \vec{F} = q(\vec{E} + \vec{v} \times \vec{B}) }[/math].  &lt;br /&gt;
  This page focuses on the electric part.&lt;br /&gt;
&lt;br /&gt;
== Practice Problems ==&lt;br /&gt;
&lt;br /&gt;
You can add your own numerical values and solve them. Consider including full solutions in a collapsible section.&lt;br /&gt;
&lt;br /&gt;
# Two charges of [math]\displaystyle{+2.0\ \mu\text{C}}[/math] and [math]\displaystyle{+5.0\ \mu\text{C}}[/math] are 0.30 m apart.  &lt;br /&gt;
   * (a) Find the magnitude of the force on each charge.  &lt;br /&gt;
   * (b) Is the force attractive or repulsive? Explain.&lt;br /&gt;
&lt;br /&gt;
# A charge [math]\displaystyle{q_1 = +4.0\ \mu\text{C}}[/math] is at the origin and [math]\displaystyle{q_2 = -1.0\ \mu\text{C}}[/math] is at [math]\displaystyle{x = 0.20\ \text{m}}[/math].  &lt;br /&gt;
   * Find the electric force on [math]\displaystyle{q_1}[/math] (magnitude and direction).  &lt;br /&gt;
   * Verify that Newton’s third law holds (forces are equal and opposite).&lt;br /&gt;
&lt;br /&gt;
# Three equal positive charges are placed at the corners of a square of side [math]\displaystyle{a}[/math].  &lt;br /&gt;
   * Find the net force on one of the corner charges.  &lt;br /&gt;
   * Use symmetry to simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
# A particle with charge [math]\displaystyle{q = -1.6 \times 10^{-19}\ \text{C}}[/math] experiences an electric force of [math]\displaystyle{3.2 \times 10^{-14}\ \text{N}}[/math] in the +y direction.  &lt;br /&gt;
   * (a) What is the electric field at that point (magnitude and direction)?  &lt;br /&gt;
   * (b) If the charge were positive instead, what would the force direction be?&lt;br /&gt;
&lt;br /&gt;
== What to Review Before an Exam ==&lt;br /&gt;
&lt;br /&gt;
* Determine force direction from a diagram, not just from algebra  &lt;br /&gt;
* Practice vector addition of multiple forces  &lt;br /&gt;
* Do quick estimates: “If I double the distance, what happens to the force?”  &lt;br /&gt;
* Know the difference between:&lt;br /&gt;
  * Force between charges (Coulomb’s law)  &lt;br /&gt;
  * Electric field  &lt;br /&gt;
  * Electric potential energy&lt;br /&gt;
&lt;br /&gt;
====Electric field of a point particle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Charge]]&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;
====Superposition====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superposition Principle]]&lt;br /&gt;
*[[Superposition principle]]&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;
====Dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Dipole]]&lt;br /&gt;
*[[Magnetic Dipole]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Interactions of charged objects====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Tape experiments====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&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;
====Polarization====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&lt;br /&gt;
*[[Polarization of an Atom]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conductors and Insulators====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conductivity and Resistivity]]&lt;br /&gt;
*[[Insulators]]&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Conductors]]&lt;br /&gt;
*[[Polarization of a conductor]]&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;
====Charging and Discharging====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charge Transfer]]&lt;br /&gt;
*[[Electrostatic Discharge]]&lt;br /&gt;
*[[Charged Conductor and Charged Insulator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Field of a charged rod====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Field of a Charged Rod|Charged Rod]]&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;
====Field of a charged ring/disk/capacitor====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Ring]]&lt;br /&gt;
*[[Charged Disk]]&lt;br /&gt;
*[[Charged Capacitor]]&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;
====Field of a charged sphere====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Spherical Shell]]&lt;br /&gt;
*[[Field of a Charged Ball]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Potential energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential 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;
====Electric potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]] &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;
&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;
====Sign of a potential difference====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sign of a Potential Difference]]&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;
====Potential at a single location====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Potential Difference at One Location]]&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;
====Path independence and round trip potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in an insulator====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Electric Field in an Insulator]]&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;
====Moving charges in a magnetic field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Biot-Savart Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Biot-Savart Law]]&lt;br /&gt;
*[[Biot-Savart Law for Currents]]&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;
====Moving charges, electron current, and conventional current====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Moving Point Charge]]&lt;br /&gt;
&lt;br /&gt;
A moving point charge creates both electric and magnetic fields. As the charge accelerates or changes position, it alters the surrounding electromagnetic field, which can influence other charges nearby. This is the fundamental concept behind electromagnetic radiation and wave propagation. When many charges move collectively—such as electrons in a wire—this flow is referred to as electric current. This perfectly segues us into the next section of this page.&lt;br /&gt;
&lt;br /&gt;
*[[Current]]&lt;br /&gt;
&lt;br /&gt;
Current is typically measured in amperes and represents the rate at which charge flows through a surface. Although electrons carry the charge and move from negative to positive, conventional current is defined in the opposite direction: from positive to negative. This convention dates back to early scientific assumptions and remains standard in circuit diagrams and equations today.&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;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Magnetic field of a wire====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Long Straight Wire]]&lt;br /&gt;
*[[Magnetic Field of a Curved Wire]]&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;
====Magnetic field of a current-carrying loop====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Loop]]&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;
====Magnetic field of a Charged Disk====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Disk]]&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;
====Magnetic dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Dipole Moment]]&lt;br /&gt;
*[[Bar Magnet]]&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;
====Atomic structure of magnets====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Atomic Structure of Magnets]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Circuitry Basics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Understanding Fundamentals of Current, Voltage, and Resistance]]&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;
====Steady state current====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Steady State]]&lt;br /&gt;
*[[Non Steady State]]&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;
====Kirchoff&#039;s Laws====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&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;
====Electric fields and energy in circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential Difference]]&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;
====Macroscopic analysis of circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[Parallel Circuits]]&lt;br /&gt;
*[[Parallel Circuits vs. Series Circuits*]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&lt;br /&gt;
*[[Fundamentals of Resistance]]&lt;br /&gt;
*[[Problem Solving]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in circuits with capacitors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charging and Discharging a Capacitor]]&lt;br /&gt;
*[[RC Circuit]] &lt;br /&gt;
*[[R Circuit]]&lt;br /&gt;
*[[AC and DC]]&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;
====Magnetic forces on charges and currents====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Motors and Generators]]&lt;br /&gt;
*[[Applying Magnetic Force to Currents]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Analysis of Railgun vs Coil gun technologies]]&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;
====Electric and magnetic forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[VPython Modelling of Electric and Magnetic Forces]]&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;
====Velocity selector====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Combining Electric and Magnetic Forces]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Hall Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Hall Effect]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Motional Emf]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Magnetic force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Magnetic torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Gauss&#039;s Law====&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;
*[[Gauss&#039;s Law]]&lt;br /&gt;
*[[Magnetic Flux]]&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;
====Ampere&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Ampere-Maxwell Law]]&lt;br /&gt;
*[[Magnetic Field of Coaxial Cable Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Long Thick Wire Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Toroid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Solenoid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[The Differential Form of Ampere&#039;s Law]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Semiconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Semiconductor Devices]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Faraday&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Motional Emf using Faraday&#039;s Law]]&lt;br /&gt;
*[[Lenz&#039;s Law]]&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;
====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 Law]]&lt;br /&gt;
*[[Magnetic Flux]]&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Maxwell&#039;s Electromagnetic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Circuits revisited====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;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;
====Inductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Inductors]]&lt;br /&gt;
*[[Current in an LC Circuit]]&lt;br /&gt;
*[[Current in an RL Circuit]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
==== Electromagnetic Radiation ====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electromagnetic Radiation]]&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;
====Sparks in the air====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sparks in Air]]&lt;br /&gt;
*[[Spark Plugs]]&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;
====Superconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superconducters]]&lt;br /&gt;
*[[Superconductors]]&lt;br /&gt;
*[[Meissner effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 3==&lt;br /&gt;
&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Classical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Classical Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
&lt;br /&gt;
===Weeks 2 and 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Special Relativity and the Lorentz Transformation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Frame of Reference]]&lt;br /&gt;
&lt;br /&gt;
*[[Einstein&#039;s Theory of Special Relativity]]&lt;br /&gt;
*[[Time Dilation]]&lt;br /&gt;
*[[Twin Paradox]]&lt;br /&gt;
*[[Lorentz Transformations]]&lt;br /&gt;
*[[Relativistic Doppler Effect]]&lt;br /&gt;
*[[Einstein&#039;s Theory of General Relativity]]&lt;br /&gt;
*[[Albert A. Micheleson &amp;amp; Edward W. Morley]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Photons and the Photoelectric Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Spontaneous Photon Emission]]&lt;br /&gt;
*[[Light Scattering]]&lt;br /&gt;
*[[Lasers]]&lt;br /&gt;
*[[Electronic Energy Levels and Photons]]&lt;br /&gt;
*[[Quantum Properties of Light]]&lt;br /&gt;
*[[The Photoelectric Effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Weeks 5 and 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Matter Waves and Wave-Particle Duality====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Wave-Particle Duality]]&lt;br /&gt;
*[[Particle in a 1-Dimensional box]]&lt;br /&gt;
*[[Heisenberg Uncertainty Principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Wave Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Standing Waves]]&lt;br /&gt;
*[[Wavelength]]&lt;br /&gt;
*[[Wavelength and Frequency]]&lt;br /&gt;
*[[Mechanical Waves]]&lt;br /&gt;
*[[Transverse and Longitudinal Waves]]&lt;br /&gt;
*[[Fourier Series and Transform]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Schrödinger Equation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[The Born Rule]]&lt;br /&gt;
*[[Solution for a Single Free Particle]]&lt;br /&gt;
*[[Solution for a Single Particle in an Infinite Quantum Well - Darin]]&lt;br /&gt;
*[[Solution for a Single Particle in a Semi-Infinite Quantum Well]]&lt;br /&gt;
*[[Quantum Harmonic Oscillator]]&lt;br /&gt;
*[[Solution for Simple Harmonic Oscillator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Quantum Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Tunneling through Potential Barriers]]&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;
====The Hydrogen Atom====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rutherford-Bohr Model====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Many-Electron Atoms====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
*[[Pauli exclusion principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====The Nucleus====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nucleus]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Molecules====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Molecules]]&lt;br /&gt;
*[[Covalent Bonds]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Application of Statistics in Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Temperature &amp;amp; Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Topics===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Thermodynamics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Maxwell Relations]]&lt;br /&gt;
*[[Brownian Motion]]&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;
====Nuclear Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nuclear Fission]]&lt;br /&gt;
*[[Nuclear Energy from Fission and Fusion]]&lt;br /&gt;
*[[Radioactive Decay Processes]]&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;
====Particle Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Elementary Particles and Particle Physics Theory]]&lt;br /&gt;
*[[String Theory]]&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;
====Solid-State/Condensed Matter Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[What is Condensed Matter]]&lt;br /&gt;
*[[Crystalline Structures]]&lt;br /&gt;
*[[Electric-Band Structure]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47535</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Main_Page&amp;diff=47535"/>
		<updated>2025-12-01T04:20:41Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: /* Electric field */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
= &#039;&#039;&#039;Georgia Tech Student Wiki for Introductory Physics.&#039;&#039;&#039; =&lt;br /&gt;
&lt;br /&gt;
This resource 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 for future students!&lt;br /&gt;
&lt;br /&gt;
Looking to make a contribution?&lt;br /&gt;
#Pick one of the topics from intro physics listed below&lt;br /&gt;
#Add content to that topic or improve the quality of what is already there.&lt;br /&gt;
#Need to make a new topic? Edit this page and add it to the list under the appropriate category.  Then 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 written for students by a physics expert [http://p3server.pa.msu.edu/coursewiki/doku.php?id=183_notes MSU Physics Wiki]&lt;br /&gt;
* A wiki book on modern physics [https://en.wikibooks.org/wiki/Modern_Physics Modern Physics Wiki]&lt;br /&gt;
* A collection of 26 volumes of lecture notes by Prof. Wheeler of Reed College [https://rdc.reed.edu/c/wheeler/home/] &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 intro physics textbooks: [https://openstax.org/details/books/university-physics-volume-1  Vol1], [https://openstax.org/details/books/university-physics-volume-2  Vol2], [https://openstax.org/details/books/university-physics-volume-3  Vol3]&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;
* The Feynman lectures on physics are free to read [http://www.feynmanlectures.caltech.edu/ Feynman]&lt;br /&gt;
* Final Study Guide for Modern Physics II created by a lab TA [https://docs.google.com/document/d/1_6GktDPq5tiNFFYs_ZjgjxBAWVQYaXp_2Imha4_nSyc/edit?usp=sharing Modern Physics II Final Study Guide]&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;
* A listing of [[Notable Scientist]] with links to their individual pages &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 1==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====GlowScript 101====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Python Syntax]]&lt;br /&gt;
*[[GlowScript]]&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;
====VPython====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[VPython]]&lt;br /&gt;
*[[VPython basics]]&lt;br /&gt;
*[[VPython Common Errors and Troubleshooting]]&lt;br /&gt;
*[[VPython Functions]]&lt;br /&gt;
*[[VPython Lists]]&lt;br /&gt;
*[[VPython Loops]]&lt;br /&gt;
*[[VPython Multithreading]]&lt;br /&gt;
*[[VPython Animation]]&lt;br /&gt;
*[[VPython Objects]]&lt;br /&gt;
*[[VPython 3D Objects]]&lt;br /&gt;
*[[VPython Reference]]&lt;br /&gt;
*[[VPython MapReduceFilter]]&lt;br /&gt;
*[[VPython GUIs]]&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;
====Vectors and Units====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[SI Units]]&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;
====Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Types of Interactions and How to Detect Them]]&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;
====Velocity and Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s First Law of Motion]]&lt;br /&gt;
*[[Mass]]&lt;br /&gt;
*[[Velocity]]&lt;br /&gt;
*[[Speed]]&lt;br /&gt;
*[[Speed vs Velocity]]&lt;br /&gt;
*[[Relative Velocity]]&lt;br /&gt;
*[[Derivation of Average Velocity]]&lt;br /&gt;
*[[2-Dimensional Motion]]&lt;br /&gt;
*[[3-Dimensional Position and Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Momentum and the Momentum Principle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Linear Momentum]]&lt;br /&gt;
*[[Newton&#039;s Second Law: the Momentum Principle]]&lt;br /&gt;
*[[Impulse and Momentum]]&lt;br /&gt;
*[[Net Force]]&lt;br /&gt;
*[[Inertia]]&lt;br /&gt;
*[[Acceleration]]&lt;br /&gt;
*[[Relativistic Momentum]]&lt;br /&gt;
&amp;lt;!-- Kinematics and Projectile Motion relocated to Week 3 per advice of Dr. Greco --&amp;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;
====Iterative Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Iterative Prediction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Analytic Prediction with a Constant Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- *[[Analytical Prediction]] Deprecated --&amp;gt;&lt;br /&gt;
*[[Kinematics]]&lt;br /&gt;
*[[Projectile Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Iterative Prediction with a Varying Force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Fundamentals of Iterative Prediction with Varying Force]]&lt;br /&gt;
*[[Spring_Force]]&lt;br /&gt;
*[[Simple Harmonic Motion]]&lt;br /&gt;
&amp;lt;!--*[[Hooke&#039;s Law]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
&amp;lt;!--*[[Spring Force]] folded into simple harmonic motion--&amp;gt;&lt;br /&gt;
*[[Iterative Prediction of Spring-Mass System]]&lt;br /&gt;
*[[Terminal Speed]]&lt;br /&gt;
*[[Predicting Change in multiple dimensions]]&lt;br /&gt;
*[[Two Dimensional Harmonic Motion]]&lt;br /&gt;
*[[Determinism]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Fundamental Interactions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Gravitational Force]]&lt;br /&gt;
*[[Gravitational Force Near Earth]]&lt;br /&gt;
*[[Gravitational Force in Space and Other Applications]]&lt;br /&gt;
*[[3 or More Body Interactions]]&lt;br /&gt;
&amp;lt;!--[[Fluid Mechanics]]--&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Introduction to Magnetic Force]]&lt;br /&gt;
*[[Strong and Weak Force]]&lt;br /&gt;
*[[Reciprocity]]&lt;br /&gt;
*[[Conservation of Momentum]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;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;
*[[Kinds of Matter]]&lt;br /&gt;
*[[Ball and Spring Model of Matter]]&lt;br /&gt;
*[[Density]]&lt;br /&gt;
*[[Length and Stiffness of an Interatomic Bond]]&lt;br /&gt;
*[[Young&#039;s Modulus]]&lt;br /&gt;
*[[Speed of Sound in Solids]]&lt;br /&gt;
*[[Malleability]]&lt;br /&gt;
*[[Ductility]]&lt;br /&gt;
*[[Weight]]&lt;br /&gt;
*[[Hardness]]&lt;br /&gt;
*[[Boiling Point]]&lt;br /&gt;
*[[Melting Point]]&lt;br /&gt;
*[[Change of State]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Identifying Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Free Body Diagram]]&lt;br /&gt;
*[[Inclined Plane]]&lt;br /&gt;
*[[Compression or Normal Force]]&lt;br /&gt;
*[[Tension]]&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;
====Curving Motion====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Curving Motion]]&lt;br /&gt;
*[[Centripetal Force and Curving Motion]]&lt;br /&gt;
*[[Perpetual Freefall (Orbit)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Jeet Bhatkar====&lt;br /&gt;
&lt;br /&gt;
====Energy Principle====&lt;br /&gt;
The Energy Principle is a fundamental concept in physics that describes the relationship between different forms of energy and their conservation within a system. Understanding the Energy Principle is crucial for analyzing the motion and interactions of objects in various physical scenarios.&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[[Kinetic Energy]]&lt;br /&gt;
Kinetic energy is the energy an object possesses due to its motion.&lt;br /&gt;
*[[Work/Energy]]&lt;br /&gt;
Potential energy arises from the position of an object relative to its surroundings. Common forms of potential energy include gravitational potential energy and elastic potential energy.&lt;br /&gt;
*[[The Energy Principle]]&lt;br /&gt;
Work and energy are closely related concepts. Work (&lt;br /&gt;
𝑊) done on an object is defined as the force (&lt;br /&gt;
𝐹) applied to the object multiplied by the displacement (&lt;br /&gt;
𝑑) of the object in the direction of the force:&lt;br /&gt;
The Energy Principle states that the total mechanical energy of a system remains constant if only conservative forces (forces that depend only on the positions of the objects) are acting on the system. &lt;br /&gt;
*[[Conservation of Energy]]&lt;br /&gt;
The principle of conservation of energy states that the total energy of an isolated system remains constant over time. In other words, energy cannot be created or destroyed, only transformed from one form to another. This principle is a fundamental concept in physics and has wide-ranging applications in mechanics, thermodynamics, and other branches of science.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Work by Non-Constant Forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Work Done By A Nonconstant Force]]&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;
====Potential Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Energy]]&lt;br /&gt;
*[[Potential Energy of Macroscopic Springs]]&lt;br /&gt;
*[[Spring Potential Energy]]&lt;br /&gt;
*[[Ball and Spring Model]]&lt;br /&gt;
*[[Gravitational Potential Energy]]&lt;br /&gt;
*[[Energy Graphs]]&lt;br /&gt;
*[[Escape Velocity]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Multiparticle Systems====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Center of Mass]]&lt;br /&gt;
*[[Multi-particle analysis of Momentum]]&lt;br /&gt;
*[[Potential Energy of a Multiparticle System]]&lt;br /&gt;
*[[Work and Energy for an Extended System]]&lt;br /&gt;
*[[Internal Energy]]&lt;br /&gt;
**[[Potential Energy of a Pair of Neutral Atoms]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Choice of System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[System &amp;amp; Surroundings]]&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;
====Thermal Energy, Dissipation, and Transfer of Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Thermal Energy]]&lt;br /&gt;
*[[Specific Heat]]&lt;br /&gt;
*[[Calorific Value(Heat of combustion)]]&lt;br /&gt;
*[[First Law of Thermodynamics]]&lt;br /&gt;
*[[Second Law of Thermodynamics and Entropy]]&lt;br /&gt;
*[[Temperature]]&lt;br /&gt;
*[[Transformation of Energy]]&lt;br /&gt;
*[[The Maxwell-Boltzmann Distribution]]&lt;br /&gt;
*[[Air Resistance]]&lt;br /&gt;
*[[The Third Law of Thermodynamics]]&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;
====Rotational and Vibrational Energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Translational, Rotational and Vibrational Energy]]&lt;br /&gt;
*[[Rolling Motion]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Different Models of a System====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Particle Systems]]&lt;br /&gt;
*[[Real Systems]]&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;
====Friction====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Friction]]&lt;br /&gt;
*[[Static Friction]]&lt;br /&gt;
*[[Kinetic Friction]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conservation of Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conservation of Momentum]]&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;
====Collisions====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Newton&#039;s Third Law of Motion]]&lt;br /&gt;
*[[Collisions]]&lt;br /&gt;
*[[Elastic Collisions]]&lt;br /&gt;
*[[Inelastic Collisions]]&lt;br /&gt;
*[[Maximally Inelastic Collision]]&lt;br /&gt;
*[[Head-on Collision of Equal Masses]]&lt;br /&gt;
*[[Head-on Collision of Unequal Masses]]&lt;br /&gt;
*[[Scattering: Collisions in 2D and 3D]]&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Coefficient of Restitution]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rotations====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rotational Kinematics]]&lt;br /&gt;
*[[Eulerian Angles]]&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;
====Angular Momentum====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Total Angular Momentum]]&lt;br /&gt;
*[[Translational Angular Momentum]]&lt;br /&gt;
*[[Rotational Angular Momentum]]&lt;br /&gt;
*[[The Angular Momentum Principle]]&lt;br /&gt;
*[[Angular Impulse]]&lt;br /&gt;
*[[Predicting the Position of a Rotating System]]&lt;br /&gt;
*[[The Moments of Inertia]]&lt;br /&gt;
*[[Right Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Analyzing Motion with and without Torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Torque]]&lt;br /&gt;
*[[Torque 2]]&lt;br /&gt;
*[[Systems with Zero Torque]]&lt;br /&gt;
*[[Systems with Nonzero Torque]]&lt;br /&gt;
*[[Torque vs Work]]&lt;br /&gt;
*[[Gyroscopes]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Introduction to Quantum Concepts====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Electron transitions]]&lt;br /&gt;
*[[Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;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 style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 2==&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====3D Vectors====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Vectors]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Right Hand Rule]]&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;
RITHWIK SHARMA FALL 2025&lt;br /&gt;
&lt;br /&gt;
====Electric field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
An electric field shows how a charged object pushes or pulls on other charges around it. The field points in the direction a positive charge would move, and its strength depends on how much charge is creating it and how far away you are.&lt;br /&gt;
*[[Electric Field and Electric Potential]]&lt;br /&gt;
Electric potential describes how much energy per charge is stored at a point in space. The electric field tells you how that potential changes from one point to another. Steeper changes in potential create stronger electric fields.&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;
== Electric force ==&lt;br /&gt;
&#039;&#039;&#039;Jeet Bhatkar – Fall 2025&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Big Idea ==&lt;br /&gt;
Electric force is the interaction between objects that have electric charge. It is:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Long-range&#039;&#039;&#039;: acts even when charges do not touch  &lt;br /&gt;
* &#039;&#039;&#039;Vector-valued&#039;&#039;&#039;: has magnitude and direction  &lt;br /&gt;
* &#039;&#039;&#039;Superposable&#039;&#039;&#039;: forces from many charges add as vectors  &lt;br /&gt;
&lt;br /&gt;
At the intro level, the electric force between two point charges is described by Coulomb’s law, the electrostatic analog of the gravitational force between masses.&lt;br /&gt;
&lt;br /&gt;
== Key Equations ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (magnitude)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{F}[/math] = magnitude of the electric force  &lt;br /&gt;
* [math]\displaystyle{k \approx 8.99 \times 10^9\ \text{N·m}^2/\text{C}^2}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_1, q_2}[/math] = charges (C)  &lt;br /&gt;
* [math]\displaystyle{r}[/math] = separation between the charges (m)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Coulomb’s Law (vector form)&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F}_{2 \leftarrow 1} = k \dfrac{q_1 q_2}{r^2} \,\hat{r}_{2 \leftarrow 1} }[/math]&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{\vec{F}_{2 \leftarrow 1}}[/math] = force on charge 2 due to charge 1  &lt;br /&gt;
* [math]\displaystyle{\hat{r}_{2 \leftarrow 1}}[/math] = unit vector from 1 to 2  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Relation to Electric Field&#039;&#039;&#039;&lt;br /&gt;
:[math]\displaystyle{ \vec{F} = q \vec{E} }[/math]&lt;br /&gt;
&lt;br /&gt;
Once you know [math]\displaystyle{\vec{E}}[/math] at a point, you can find the force on any charge [math]\displaystyle{q}[/math] placed there.&lt;br /&gt;
&lt;br /&gt;
== Conceptual Picture ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sign of charges&#039;&#039;&#039;&lt;br /&gt;
* Like charges (both positive or both negative) → &#039;&#039;&#039;repel&#039;&#039;&#039;  &lt;br /&gt;
* Unlike charges (one positive, one negative) → &#039;&#039;&#039;attract&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Distance dependence&#039;&#039;&#039;&lt;br /&gt;
* Force falls off as [math]\displaystyle{1/r^2}[/math], so doubling the distance makes the force 4 times smaller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Superposition principle&#039;&#039;&#039;&lt;br /&gt;
If there are many charges, the net force on a given charge is the vector sum of the forces from each individual charge:&lt;br /&gt;
[math]\displaystyle{ \vec{F}_\text{net} = \sum_i \vec{F}_i }[/math].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Electric vs. gravitational force&#039;&#039;&#039;&lt;br /&gt;
* Both follow inverse-square laws  &lt;br /&gt;
* Gravity is always attractive; electric force can be attractive or repulsive  &lt;br /&gt;
* Electric forces are usually much stronger at the particle scale  &lt;br /&gt;
&lt;br /&gt;
== Worked Example 1: Two Point Charges on a Line ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Two charges are placed on the x-axis:&lt;br /&gt;
&lt;br /&gt;
* [math]\displaystyle{q_1 = +3.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.00\ \text{m}}[/math]  &lt;br /&gt;
* [math]\displaystyle{q_2 = -2.0\ \mu\text{C}}[/math] at [math]\displaystyle{x = 0.40\ \text{m}}[/math]  &lt;br /&gt;
&lt;br /&gt;
What is the magnitude and direction of the force on [math]\displaystyle{q_2}[/math]?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution (outline).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Distance between charges:  &lt;br /&gt;
[math]\displaystyle{ r = 0.40\ \text{m} }[/math].&lt;br /&gt;
&lt;br /&gt;
# Magnitude using Coulomb’s law:  &lt;br /&gt;
[math]\displaystyle{&lt;br /&gt;
F = k \dfrac{|q_1 q_2|}{r^2}&lt;br /&gt;
= (8.99 \times 10^9)\,\dfrac{(3.0 \times 10^{-6})(2.0 \times 10^{-6})}{(0.40)^2}&lt;br /&gt;
}[/math]&lt;br /&gt;
&lt;br /&gt;
# Sign and direction:  &lt;br /&gt;
* [math]\displaystyle{q_1}[/math] is positive, [math]\displaystyle{q_2}[/math] is negative → force is &#039;&#039;&#039;attractive&#039;&#039;&#039;  &lt;br /&gt;
* On [math]\displaystyle{q_2}[/math], the force points toward [math]\displaystyle{q_1}[/math]  &lt;br /&gt;
* Since [math]\displaystyle{q_1}[/math] is at smaller x, the force on [math]\displaystyle{q_2}[/math] points in the &#039;&#039;&#039;−x&#039;&#039;&#039; direction  &lt;br /&gt;
&lt;br /&gt;
You can finish by computing the numerical value and writing it as a vector, e.g. [math]\displaystyle{\vec{F}_{2 \leftarrow 1} = -F\,\hat{x}}[/math].&lt;br /&gt;
&lt;br /&gt;
== Worked Example 2: Superposition with Three Charges ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Problem.&#039;&#039;&#039;  &lt;br /&gt;
Three equal charges [math]\displaystyle{q}[/math] are at the corners of an equilateral triangle of side [math]\displaystyle{a}[/math]. What is the net force on one of the charges?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Idea (no full algebra).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Each of the other two charges exerts a force of magnitude  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{q^2}{a^2} }[/math]  &lt;br /&gt;
* The angle between these two forces is [math]\displaystyle{60^\circ}[/math]  &lt;br /&gt;
* Use vector addition:  &lt;br /&gt;
  * Add components along the symmetry axis  &lt;br /&gt;
  * Perpendicular components cancel by symmetry  &lt;br /&gt;
&lt;br /&gt;
This shows how symmetry plus superposition simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
== Computational Model (GlowScript) ==&lt;br /&gt;
&lt;br /&gt;
Below is a simple GlowScript (VPython) model that computes and visualizes the electric force between two point charges in 3D.&lt;br /&gt;
&lt;br /&gt;
You can:&lt;br /&gt;
* Paste this into a new GlowScript Trinket (Python / VPython),&lt;br /&gt;
* Get the embed code from Trinket,&lt;br /&gt;
* Embed that code into this page so it runs directly here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
from vpython import *&lt;br /&gt;
&lt;br /&gt;
# constant&lt;br /&gt;
k = 8.99e9  # N·m^2/C^2&lt;br /&gt;
&lt;br /&gt;
# scene setup&lt;br /&gt;
scene.caption = &amp;quot;Drag the red charge to see how the force on the blue charge changes.\n&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# charges (positions in meters, charges in coulombs)&lt;br /&gt;
q1 = 2e-6   # C (blue, fixed)&lt;br /&gt;
q2 = -3e-6  # C (red, movable)&lt;br /&gt;
&lt;br /&gt;
charge1 = sphere(pos=vector(-0.5, 0, 0), radius=0.05, color=color.blue)&lt;br /&gt;
charge2 = sphere(pos=vector(0.5, 0, 0), radius=0.05, color=color.red, make_trail=True)&lt;br /&gt;
&lt;br /&gt;
# arrow to show force on q2 due to q1&lt;br /&gt;
F_arrow = arrow(pos=charge2.pos, axis=vector(0.2, 0, 0))&lt;br /&gt;
&lt;br /&gt;
def electric_force(q1, q2, r1, r2):&lt;br /&gt;
    r_vec = r2 - r1&lt;br /&gt;
    r = mag(r_vec)&lt;br /&gt;
    if r == 0:&lt;br /&gt;
        return vector(0, 0, 0)&lt;br /&gt;
    F_mag = k * q1 * q2 / r**2&lt;br /&gt;
    return F_mag * norm(r_vec)&lt;br /&gt;
&lt;br /&gt;
dragging = False&lt;br /&gt;
&lt;br /&gt;
def down():&lt;br /&gt;
    global dragging&lt;br /&gt;
    if scene.mouse.pick is charge2:&lt;br /&gt;
        dragging = True&lt;br /&gt;
&lt;br /&gt;
def up():&lt;br /&gt;
    global dragging&lt;br /&gt;
    dragging = False&lt;br /&gt;
&lt;br /&gt;
scene.bind(&amp;quot;mousedown&amp;quot;, lambda evt: down())&lt;br /&gt;
scene.bind(&amp;quot;mouseup&amp;quot;,   lambda evt: up())&lt;br /&gt;
&lt;br /&gt;
while True:&lt;br /&gt;
    rate(60)&lt;br /&gt;
&lt;br /&gt;
    if dragging:&lt;br /&gt;
        # move the red charge with the mouse in the x-y plane&lt;br /&gt;
        m = scene.mouse.pos&lt;br /&gt;
        charge2.pos = vector(m.x, m.y, 0)&lt;br /&gt;
&lt;br /&gt;
    F = electric_force(q1, q2, charge1.pos, charge2.pos)&lt;br /&gt;
&lt;br /&gt;
    # update arrow to show force on q2&lt;br /&gt;
    F_arrow.pos = charge2.pos&lt;br /&gt;
    # scale arrow length for visibility (purely visual)&lt;br /&gt;
    F_arrow.axis = F * 1e7&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can extend this model to include more charges or show the net force on a test charge at different locations.&lt;br /&gt;
&lt;br /&gt;
== Common Mistakes and How to Avoid Them ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Forgetting that force is a vector.&#039;&#039;&#039;  &lt;br /&gt;
  Always draw a diagram and keep track of directions. Use components in 2D/3D.&lt;br /&gt;
* &#039;&#039;&#039;Dropping the absolute value in the magnitude formula.&#039;&#039;&#039;  &lt;br /&gt;
  [math]\displaystyle{ F = k \dfrac{|q_1 q_2|}{r^2} }[/math] is a positive magnitude. Decide direction separately.&lt;br /&gt;
* &#039;&#039;&#039;Mixing up [math]\displaystyle{r}[/math] and [math]\displaystyle{r^2}[/math].&#039;&#039;&#039;  &lt;br /&gt;
  The force goes like [math]\displaystyle{1/r^2}[/math], not [math]\displaystyle{1/r}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Using wrong units.&#039;&#039;&#039;  &lt;br /&gt;
  Convert microcoulombs to coulombs, centimeters to meters, etc.  &lt;br /&gt;
  [math]\displaystyle{1\ \mu\text{C} = 1 \times 10^{-6}\ \text{C}}[/math].&lt;br /&gt;
* &#039;&#039;&#039;Trying to memorize instead of understand.&#039;&#039;&#039;  &lt;br /&gt;
  Focus on inverse-square behavior, sign of charges, and superposition.&lt;br /&gt;
&lt;br /&gt;
== Connections to Other Topics ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Electric Field&#039;&#039;&#039; – Electric force per unit charge is the electric field:  &lt;br /&gt;
  [math]\displaystyle{ \vec{E} = \dfrac{\vec{F}}{q} }[/math].&lt;br /&gt;
* &#039;&#039;&#039;Potential Energy and Electric Potential&#039;&#039;&#039; – Work done by electric forces leads to electric potential energy and voltage.&lt;br /&gt;
* &#039;&#039;&#039;Lorentz Force&#039;&#039;&#039; – The full force on a moving charge also includes magnetic fields:  &lt;br /&gt;
  [math]\displaystyle{ \vec{F} = q(\vec{E} + \vec{v} \times \vec{B}) }[/math].  &lt;br /&gt;
  This page focuses on the electric part.&lt;br /&gt;
&lt;br /&gt;
== Practice Problems ==&lt;br /&gt;
&lt;br /&gt;
You can add your own numerical values and solve them. Consider including full solutions in a collapsible section.&lt;br /&gt;
&lt;br /&gt;
# Two charges of [math]\displaystyle{+2.0\ \mu\text{C}}[/math] and [math]\displaystyle{+5.0\ \mu\text{C}}[/math] are 0.30 m apart.  &lt;br /&gt;
   * (a) Find the magnitude of the force on each charge.  &lt;br /&gt;
   * (b) Is the force attractive or repulsive? Explain.&lt;br /&gt;
&lt;br /&gt;
# A charge [math]\displaystyle{q_1 = +4.0\ \mu\text{C}}[/math] is at the origin and [math]\displaystyle{q_2 = -1.0\ \mu\text{C}}[/math] is at [math]\displaystyle{x = 0.20\ \text{m}}[/math].  &lt;br /&gt;
   * Find the electric force on [math]\displaystyle{q_1}[/math] (magnitude and direction).  &lt;br /&gt;
   * Verify that Newton’s third law holds (forces are equal and opposite).&lt;br /&gt;
&lt;br /&gt;
# Three equal positive charges are placed at the corners of a square of side [math]\displaystyle{a}[/math].  &lt;br /&gt;
   * Find the net force on one of the corner charges.  &lt;br /&gt;
   * Use symmetry to simplify the vector addition.&lt;br /&gt;
&lt;br /&gt;
# A particle with charge [math]\displaystyle{q = -1.6 \times 10^{-19}\ \text{C}}[/math] experiences an electric force of [math]\displaystyle{3.2 \times 10^{-14}\ \text{N}}[/math] in the +y direction.  &lt;br /&gt;
   * (a) What is the electric field at that point (magnitude and direction)?  &lt;br /&gt;
   * (b) If the charge were positive instead, what would the force direction be?&lt;br /&gt;
&lt;br /&gt;
== What to Review Before an Exam ==&lt;br /&gt;
&lt;br /&gt;
* Determine force direction from a diagram, not just from algebra  &lt;br /&gt;
* Practice vector addition of multiple forces  &lt;br /&gt;
* Do quick estimates: “If I double the distance, what happens to the force?”  &lt;br /&gt;
* Know the difference between:&lt;br /&gt;
  * Force between charges (Coulomb’s law)  &lt;br /&gt;
  * Electric field  &lt;br /&gt;
  * Electric potential energy&lt;br /&gt;
&lt;br /&gt;
====Electric field of a point particle====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Point Charge]]&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;
====Superposition====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superposition Principle]]&lt;br /&gt;
*[[Superposition principle]]&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;
====Dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Dipole]]&lt;br /&gt;
*[[Magnetic Dipole]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 2===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Interactions of charged objects====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Field]]&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Tape experiments====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&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;
====Polarization====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Polarization]]&lt;br /&gt;
*[[Electric Polarization]]&lt;br /&gt;
*[[Polarization of an Atom]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Conductors and Insulators====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Conductivity and Resistivity]]&lt;br /&gt;
*[[Insulators]]&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Conductors]]&lt;br /&gt;
*[[Polarization of a conductor]]&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;
====Charging and Discharging====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charge Transfer]]&lt;br /&gt;
*[[Electrostatic Discharge]]&lt;br /&gt;
*[[Charged Conductor and Charged Insulator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Field of a charged rod====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Field of a Charged Rod|Charged Rod]]&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;
====Field of a charged ring/disk/capacitor====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Ring]]&lt;br /&gt;
*[[Charged Disk]]&lt;br /&gt;
*[[Charged Capacitor]]&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;
====Field of a charged sphere====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charged Spherical Shell]]&lt;br /&gt;
*[[Field of a Charged Ball]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 5===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Potential energy====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential 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;
====Electric potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]] &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;
&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;
====Sign of a potential difference====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sign of a Potential Difference]]&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;
====Potential at a single location====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential]]&lt;br /&gt;
*[[Potential Difference at One Location]]&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;
====Path independence and round trip potential====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Path Independence of Electric Potential]]&lt;br /&gt;
*[[Potential Difference Path Independence, claimed by Aditya Mohile]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in an insulator====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Potential Difference in an Insulator]]&lt;br /&gt;
*[[Electric Field in an Insulator]]&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;
====Moving charges in a magnetic field====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Biot-Savart Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Biot-Savart Law]]&lt;br /&gt;
*[[Biot-Savart Law for Currents]]&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;
====Moving charges, electron current, and conventional current====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Moving Point Charge]]&lt;br /&gt;
&lt;br /&gt;
A moving point charge creates both electric and magnetic fields. As the charge accelerates or changes position, it alters the surrounding electromagnetic field, which can influence other charges nearby. This is the fundamental concept behind electromagnetic radiation and wave propagation. When many charges move collectively—such as electrons in a wire—this flow is referred to as electric current. This perfectly segues us into the next section of this page.&lt;br /&gt;
&lt;br /&gt;
*[[Current]]&lt;br /&gt;
&lt;br /&gt;
Current is typically measured in amperes and represents the rate at which charge flows through a surface. Although electrons carry the charge and move from negative to positive, conventional current is defined in the opposite direction: from positive to negative. This convention dates back to early scientific assumptions and remains standard in circuit diagrams and equations today.&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;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Magnetic field of a wire====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Long Straight Wire]]&lt;br /&gt;
*[[Magnetic Field of a Curved Wire]]&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;
====Magnetic field of a current-carrying loop====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Loop]]&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;
====Magnetic field of a Charged Disk====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Field of a Disk]]&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;
====Magnetic dipoles====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Dipole Moment]]&lt;br /&gt;
*[[Bar Magnet]]&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;
====Atomic structure of magnets====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Atomic Structure of Magnets]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Circuitry Basics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Understanding Fundamentals of Current, Voltage, and Resistance]]&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;
====Steady state current====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Steady State]]&lt;br /&gt;
*[[Non Steady State]]&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;
====Kirchoff&#039;s Laws====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&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;
====Electric fields and energy in circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Potential Difference]]&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;
====Macroscopic analysis of circuits====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Series Circuits]]&lt;br /&gt;
*[[Parallel Circuits]]&lt;br /&gt;
*[[Parallel Circuits vs. Series Circuits*]]&lt;br /&gt;
*[[Loop Rule]]&lt;br /&gt;
*[[Node Rule]]&lt;br /&gt;
*[[Fundamentals of Resistance]]&lt;br /&gt;
*[[Problem Solving]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Electric field and potential in circuits with capacitors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Charging and Discharging a Capacitor]]&lt;br /&gt;
*[[RC Circuit]] &lt;br /&gt;
*[[R Circuit]]&lt;br /&gt;
*[[AC and DC]]&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;
====Magnetic forces on charges and currents====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Motors and Generators]]&lt;br /&gt;
*[[Applying Magnetic Force to Currents]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Analysis of Railgun vs Coil gun technologies]]&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;
====Electric and magnetic forces====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electric Force]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[VPython Modelling of Electric and Magnetic Forces]]&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;
====Velocity selector====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Lorentz Force]]&lt;br /&gt;
*[[Combining Electric and Magnetic Forces]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Hall Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Hall Effect]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
*[[Motional Emf]]&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Magnetic force====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Force]]&lt;br /&gt;
*[[Lorentz Force]]&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;
====Magnetic torque====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Magnetic Torque]]&lt;br /&gt;
*[[Right-Hand Rule]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Gauss&#039;s Law====&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;
*[[Gauss&#039;s Law]]&lt;br /&gt;
*[[Magnetic Flux]]&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;
====Ampere&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Ampere-Maxwell Law]]&lt;br /&gt;
*[[Magnetic Field of Coaxial Cable Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Long Thick Wire Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Toroid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[Magnetic Field of a Solenoid Using Ampere&#039;s Law]]&lt;br /&gt;
*[[The Differential Form of Ampere&#039;s Law]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Semiconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Semiconductor Devices]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Faraday&#039;s Law====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Motional Emf using Faraday&#039;s Law]]&lt;br /&gt;
*[[Lenz&#039;s Law]]&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;
====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 Law]]&lt;br /&gt;
*[[Magnetic Flux]]&lt;br /&gt;
*[[Ampere&#039;s Law]]&lt;br /&gt;
*[[Faraday&#039;s Law]]&lt;br /&gt;
*[[Maxwell&#039;s Electromagnetic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Circuits revisited====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;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;
====Inductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Inductors]]&lt;br /&gt;
*[[Current in an LC Circuit]]&lt;br /&gt;
*[[Current in an RL Circuit]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
==== Electromagnetic Radiation ====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Electromagnetic Radiation]]&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;
====Sparks in the air====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Sparks in Air]]&lt;br /&gt;
*[[Spark Plugs]]&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;
====Superconductors====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Superconducters]]&lt;br /&gt;
*[[Superconductors]]&lt;br /&gt;
*[[Meissner effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:30%; padding:1%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Physics 3==&lt;br /&gt;
&lt;br /&gt;
===Week 1===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Classical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Classical Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
&lt;br /&gt;
===Weeks 2 and 3===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Special Relativity and the Lorentz Transformation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Frame of Reference]]&lt;br /&gt;
&lt;br /&gt;
*[[Einstein&#039;s Theory of Special Relativity]]&lt;br /&gt;
*[[Time Dilation]]&lt;br /&gt;
*[[Twin Paradox]]&lt;br /&gt;
*[[Lorentz Transformations]]&lt;br /&gt;
*[[Relativistic Doppler Effect]]&lt;br /&gt;
*[[Einstein&#039;s Theory of General Relativity]]&lt;br /&gt;
*[[Albert A. Micheleson &amp;amp; Edward W. Morley]]&lt;br /&gt;
*[[Magnetic Force in a Moving Reference Frame]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 4===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Photons and the Photoelectric Effect====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Spontaneous Photon Emission]]&lt;br /&gt;
*[[Light Scattering]]&lt;br /&gt;
*[[Lasers]]&lt;br /&gt;
*[[Electronic Energy Levels and Photons]]&lt;br /&gt;
*[[Quantum Properties of Light]]&lt;br /&gt;
*[[The Photoelectric Effect]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Weeks 5 and 6===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Matter Waves and Wave-Particle Duality====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Wave-Particle Duality]]&lt;br /&gt;
*[[Particle in a 1-Dimensional box]]&lt;br /&gt;
*[[Heisenberg Uncertainty Principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 7===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Wave Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Standing Waves]]&lt;br /&gt;
*[[Wavelength]]&lt;br /&gt;
*[[Wavelength and Frequency]]&lt;br /&gt;
*[[Mechanical Waves]]&lt;br /&gt;
*[[Transverse and Longitudinal Waves]]&lt;br /&gt;
*[[Fourier Series and Transform]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 8===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Schrödinger Equation====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[The Born Rule]]&lt;br /&gt;
*[[Solution for a Single Free Particle]]&lt;br /&gt;
*[[Solution for a Single Particle in an Infinite Quantum Well - Darin]]&lt;br /&gt;
*[[Solution for a Single Particle in a Semi-Infinite Quantum Well]]&lt;br /&gt;
*[[Quantum Harmonic Oscillator]]&lt;br /&gt;
*[[Solution for Simple Harmonic Oscillator]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 9===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Quantum Mechanics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Tunneling through Potential Barriers]]&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;
====The Hydrogen Atom====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 10===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Rutherford-Bohr Model====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Rutherford Experiment and Atomic Collisions]]&lt;br /&gt;
*[[Bohr Model]]&lt;br /&gt;
*[[Quantized energy levels]]&lt;br /&gt;
*[[Energy graphs and the Bohr model]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 11===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Many-Electron Atoms====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Quantum Theory]]&lt;br /&gt;
*[[Atomic Theory]]&lt;br /&gt;
*[[Pauli exclusion principle]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 12===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====The Nucleus====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nucleus]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 13===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Molecules====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Molecules]]&lt;br /&gt;
*[[Covalent Bonds]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 14===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Application of Statistics in Physics]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Week 15===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Statistical Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Temperature &amp;amp; Entropy]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Topics===&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
====Thermodynamics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Maxwell Relations]]&lt;br /&gt;
*[[Brownian Motion]]&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;
====Nuclear Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Nuclear Fission]]&lt;br /&gt;
*[[Nuclear Energy from Fission and Fusion]]&lt;br /&gt;
*[[Radioactive Decay Processes]]&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;
====Particle Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[Elementary Particles and Particle Physics Theory]]&lt;br /&gt;
*[[String Theory]]&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;
====Solid-State/Condensed Matter Physics====&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
*[[What is Condensed Matter]]&lt;br /&gt;
*[[Crystalline Structures]]&lt;br /&gt;
*[[Electric-Band Structure]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Right-Hand_Rule&amp;diff=47245</id>
		<title>Right-Hand Rule</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Right-Hand_Rule&amp;diff=47245"/>
		<updated>2025-04-23T03:29:51Z</updated>

		<summary type="html">&lt;p&gt;Rsharma443: Added more applications and edited content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claimed by Rithwik Sharma Spring 2025&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The Right-Hand Rule is an easy way to find the &#039;&#039;&#039;direction&#039;&#039;&#039; of a cross product interaction before doing the math. For any equation involving a cross product, the right hand rule is a valuable tool for finding the direction. There are two primary ways of using the right hand rule. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) The first method is to use your entire right hand. Make shape of a high five with your right hand with your right hand, with your thumb sticking out perpendicular to the direction of your fingers. Align your hand with the first vector listed in the cross product. Then, curl your fingers toward the second vector listed in the cross product without moving your palm. You must rotate your hand to whatever orientation it requires for this to be possible, while keeping your thumb perpendicular to your fingers through the entire process. Your thumb will point in the direction of the cross product. In the example depicted below the cross product points &amp;quot;out&amp;quot; of the page, the same direction as the thumb.&lt;br /&gt;
&lt;br /&gt;
[[File:RightHand1.png]]&lt;br /&gt;
[[File:RH2.png]]&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2) The second method is extremely similar to the first. Start by making a thumbs up, and maintain your thumb extended in this way through the entire process. Extend your index (pointer) finger and align it with the first vector in the cross product. Extend your middle finger and align it with the second vector while keeping your ring and pinkie fingers closed. This will force you to orient your hand in such a way that your thumb will point in the direction of the cross product. This is demonstrated below.&lt;br /&gt;
&lt;br /&gt;
[[File:Right hand rule cross product.svg|Right hand rule cross product]]&lt;br /&gt;
&lt;br /&gt;
==A Mathematical Model==&lt;br /&gt;
&lt;br /&gt;
The Right-Hand Rule is a technique for modeling the direction of a cross product:&lt;br /&gt;
:&amp;lt;math&amp;gt;\mathbf{u\times v}=(u_2v_3\mathbf{i}+u_3v_1\mathbf{j}+u_1v_2\mathbf{k})&lt;br /&gt;
-(u_3v_2\mathbf{i}+u_1v_3\mathbf{j}+u_2v_1\mathbf{k})&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The cross product can also be solved in the following form (using &#039;&#039;&#039;u&#039;&#039;&#039; and &#039;&#039;&#039;v&#039;&#039;&#039;):&#039;&#039;&lt;br /&gt;
:&amp;lt;math&amp;gt;| \mathbf{u} \times \mathbf{v} | = | \mathbf{u} | | \mathbf{v} | \sin (\theta)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Cross Product: Alternate Method 1===&lt;br /&gt;
&lt;br /&gt;
Alternate methods for computing a cross product exist, though this one is limited to cross products of 3 dimensions.&lt;br /&gt;
&lt;br /&gt;
Structure the three components in a circle and assign a clockwise direction around this circle. &lt;br /&gt;
&lt;br /&gt;
Crossing one component with another component that can be reached clockwise on on the next move around the circle yields a vector third direction. &lt;br /&gt;
&lt;br /&gt;
This can be seen in the picture below. &lt;br /&gt;
&lt;br /&gt;
[[File:CircleMethod2.png]]&lt;br /&gt;
&lt;br /&gt;
In order to quickly solve a cross product using this alternate method, see the following example.&lt;br /&gt;
&lt;br /&gt;
[[File:CircleCR3.png]]&lt;br /&gt;
&lt;br /&gt;
Note: order matters in cross products. When crossing two vectors in the counter-clockwise direction the resulting third vector is negative.&lt;br /&gt;
&lt;br /&gt;
===Cross Product: Alternate Method 2===&lt;br /&gt;
[[File:Wikicrossprod.png]]&lt;br /&gt;
&lt;br /&gt;
===Cross Product: Alternate Method 3===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re personally more of a math person, and you have taken linear algebra or have done determinants before, cross products are essentially taking determinants of a 3x3 matrix. &lt;br /&gt;
&lt;br /&gt;
1. For the first row, write down &#039;&#039;&#039;i, j, k&#039;&#039;&#039;. These are your directional components with &#039;&#039;&#039;&amp;quot;i&amp;quot;&#039;&#039;&#039; representing the +x direction, &#039;&#039;&#039;&amp;quot;j&amp;quot;&#039;&#039;&#039; the +y direction, and &#039;&#039;&#039;&amp;quot;k&amp;quot;&#039;&#039;&#039; the +z direction.&lt;br /&gt;
&lt;br /&gt;
2. If you are crossing &#039;&#039;&#039;a x b&#039;&#039;&#039;, write down the a components in the second row and b components in the third row corresponding to the x,y,z direction. If for example, ax is in the -x direction, simply make the value of ax negative.&lt;br /&gt;
&lt;br /&gt;
3. Then take the determinant of the 3x3 matrix which is shown below. Don&#039;t forget that the second term (&#039;&#039;&#039;j&#039;&#039;&#039;) must be negative.&lt;br /&gt;
&lt;br /&gt;
[[File:Crossproductdet.png]]&lt;br /&gt;
&lt;br /&gt;
==A Computational Model==&lt;br /&gt;
&lt;br /&gt;
For a computational model, the Right-Hand Rule is just an easy way to determine the direction of the result of a cross product, but the model below allows you to change the two initial vectors, which the cross product will react to, and it will show that the right hand rule is true for any set of vectors that are not facing the same direction.&lt;br /&gt;
(Note: Just because you can determine the direction of a cross product using the RHR does &#039;&#039;&#039;NOT&#039;&#039;&#039; mean that every equation involving cross products will end up with that direction. Please make sure to account for any changes in sign, magnitude, or direction when solving cross product equations.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/746a15552f&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;
&amp;lt;html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Magnetic Field for a Point Charge (Bio-Savart Law)===&lt;br /&gt;
&lt;br /&gt;
The equation written in pink in the picture below is the Bio-Savart Rule for a single charged particle which will be later explained in further chapters. As you can see, there is a cross product within the equation, and it can be a little tricky finding the direction of the magnetic field. &lt;br /&gt;
&lt;br /&gt;
Using the Right-Hand rule (alternative 2):&lt;br /&gt;
     1. place your palm in the direction of velocity since it is velocity crossed rhat&lt;br /&gt;
           2. curl your finger to the direction of rhat&lt;br /&gt;
                 3. Point your thumb up( perpendicular from your fingers) and this direction is the direction of your magnetic field, &#039;&#039;assuming that the charge is positive&#039;&#039;.&lt;br /&gt;
                     If your charge is negative, then simply flip the direction of your thumb.&lt;br /&gt;
&lt;br /&gt;
In the picture below, the direction of the magnetic field would be out of the page (+z) if the particle is positively charged. If the charge was an electron (negatively charged), then the direction of the magnetic field would be into the page (-z).&lt;br /&gt;
 &lt;br /&gt;
[[File:BioSavartUno1.png]]&lt;br /&gt;
[[File:Screen Shot 2018-11-25 at 23.13.22.png]]&lt;br /&gt;
&lt;br /&gt;
===Magnetic Force on a Moving Particle===&lt;br /&gt;
:&amp;lt;math&amp;gt;\mathbf{F} = q\mathbf{v} \times \mathbf{B}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The direction of the cross product may be found by application of the right hand rule as follows: &lt;br /&gt;
# The index finger points in the direction of the momentum vector qv.&lt;br /&gt;
# The middle finger points in the direction of the magnetic field vector B.&lt;br /&gt;
# The thumb points in the direction of magnetic force F.&lt;br /&gt;
&lt;br /&gt;
For example, for a positively charged particle moving to the right, in a region where the magnetic field points up, the resultant force points out of the page (+z). If it was the same situation, but the particle was negatively charged, the you would flip the direction of your thumb, and the resultant force points into the page (-z).&lt;br /&gt;
&lt;br /&gt;
===Magnetic Field made by a Current===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \mathbf{B} = \frac{\mu_0I}{4\pi}\int_{\mathrm{wire}}\frac{\mathrm{d}\boldsymbol{\ell} \times \mathbf{\hat r}}{r^2},&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The direction of the cross product may be found by application of the right hand rule as follows: &lt;br /&gt;
# The thumb points in the direction of current I.&lt;br /&gt;
# The index finger points in the direction of the observation vector r.&lt;br /&gt;
# The middle finger points in the direction of the magnetic field vector B.&lt;br /&gt;
&lt;br /&gt;
===Direction of Magnetic Field made by a Current===&lt;br /&gt;
&lt;br /&gt;
The direction of curl of the magnetic field can be found using a modified right hand rule:&lt;br /&gt;
# The thumb points in the direction of conventional current.&lt;br /&gt;
# The curl of the fingers indicates the direction of magnetic field at each location surrounding the flow of current.&lt;br /&gt;
&lt;br /&gt;
[[File:RHR_for_current.jpg]]&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
# In the image below, conventional current flows to the left (-x). By pointing your thumb in the -x direction and curling your fingers, the magnetic field curls in the y,z-plane, as shown.&lt;br /&gt;
&lt;br /&gt;
[[File:RHR_current.jpg]]&lt;br /&gt;
&lt;br /&gt;
===Force on a Current from a Magnetic Field===&lt;br /&gt;
:&amp;lt;math&amp;gt; \mathbf{F} = \mathbf{I} \times \mathbf{B}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The direction of the cross product may be found by application of the right hand rule as follows: &lt;br /&gt;
# The index finger points in the direction of the current I.&lt;br /&gt;
# The middle finger points in the direction of the magnetic field vector B.&lt;br /&gt;
# The thumb points in the direction of magnetic force F.&lt;br /&gt;
&lt;br /&gt;
For example, for a current moving into the page, in a region where the magnetic field points up, then the force is to the right of the current.&lt;br /&gt;
&lt;br /&gt;
===Another Force on a Current from a Magnetic Field===&lt;br /&gt;
In the situation shown below, we have a current pointing downward or in the negative y direction and we have a magnetic field into the page or in the negative z direction. Instead of using the typical right hand rule, we can use easy cross product method below to find the direction of the force. &lt;br /&gt;
&lt;br /&gt;
[[File:Lorentz1.png]]&lt;br /&gt;
&lt;br /&gt;
===Hall Effect Example===&lt;br /&gt;
&lt;br /&gt;
[[File:hall.png]]&lt;br /&gt;
&lt;br /&gt;
In the above picture, you see that all the positive charges accumulated at the top and all the negative charges accumulated to the bottom. You know the direction the particles velocity and magnetic field. Can you find out the charge of the particle using the right hand rule?&lt;br /&gt;
&lt;br /&gt;
In the picture, the particles are coming out of the negative terminal, so they are electrons. This can be verified by using the right hand rule. You curl your fingers from velocity vector to magnetic field vector to find the direction of magnetic force perpendicular. Your thumb is pointing up, but since these are negative charges, its opposite and you flip your hand and you find that the direction of the magnetic force is actually pointing down. Therefore it makes sense that the electrons would accumulate at the bottom since its magnetic force is pushing them towards there.&lt;br /&gt;
&lt;br /&gt;
==Applications in Modern Technology==&lt;br /&gt;
&lt;br /&gt;
The right-hand rule isn’t just a physics classroom trick—it underpins the functionality of numerous modern technologies. For example, electric motors and generators operate directly based on the principles of electromagnetism, where magnetic fields and currents interact to produce motion or induce voltage. In a DC motor, the current flows through coils situated in a magnetic field. The force exerted on these coils due to the magnetic field (as determined by the right-hand rule) causes them to rotate, converting electrical energy into mechanical work. Conversely, in a generator, mechanical rotation in a magnetic field generates a current, again aligning with the right-hand rule but in reverse.&lt;br /&gt;
&lt;br /&gt;
Another major application is in the field of particle accelerators and mass spectrometers, where charged particles are manipulated using magnetic fields. Engineers and physicists use the right-hand rule to design magnetic steering systems that control the trajectory of high-speed electrons, protons, or ions. Accurate directional control is essential, as even the smallest miscalculation in the force vector can cause particles to crash into containment walls or skew the results of delicate experiments.&lt;br /&gt;
&lt;br /&gt;
Additionally, magnetic resonance imaging (MRI) systems use rapidly changing magnetic fields to align and detect the spin of atomic nuclei in the human body. The right-hand rule helps explain how the magnetic fields interact with current-carrying wires in the machine’s gradient coils to produce spatially varying fields. These interactions are critical for encoding location information in the resulting medical images, showcasing how a basic vector rule plays a role in saving lives.&lt;br /&gt;
&lt;br /&gt;
The right-hand rule is also crucial in aerospace and satellite engineering, where magnetic torquers are used for attitude control of satellites. These torquers generate magnetic dipoles that interact with Earth’s magnetic field to produce torque, allowing engineers to rotate or stabilize satellites without using fuel. To predict and control these rotational effects accurately, the right-hand rule helps determine the direction of torque from the interaction between the satellite’s internal current loops and Earth’s geomagnetic field. This method of non-propulsive control is lightweight, reliable, and energy-efficient, making it ideal for long-duration missions in low Earth orbit.&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
1. How is the topic connected to something you are interested in?&lt;br /&gt;
&lt;br /&gt;
It&#039;s honestly a valuable tool in determining the direction of cross-products which allows me to see if my math is correct. For example, to figure out the direction of the conventional current that flows in a wire whose magnetic field changes the direction of a compass, I would have the use the right-hand rule to help me out.&lt;br /&gt;
&lt;br /&gt;
If a charged particle is moving at a certain speed and is under a magnetic field, the right-hand rule can be used to determine the force the particle will experience. &lt;br /&gt;
&lt;br /&gt;
2. How is it connected to your major?&lt;br /&gt;
&lt;br /&gt;
As a computer engineering major, it is very relevant in my physics class, and although we don&#039;t see the right hand rule in action first-hand, I know it plays a critical role in what we do when designing circuits and can be used to explain things at a molecular level.&lt;br /&gt;
&lt;br /&gt;
3. Is there an industrial application?&lt;br /&gt;
&lt;br /&gt;
Using sails for a boat deals with cross-product because when the wind blows, the sails experience angular momentum &#039;&#039;&#039;L = I x w&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
[[File:John Ambrose Fleming 1890.png|thumb|left| John Ambrose Fleming 1890]]&lt;br /&gt;
John Ambrose Fleming is credited with devising the right-hand rule. He was a professor at the University College, London where he was liked by many of his students. Fleming devised the right hand rule (though Fleming&#039;s original version used the left hand) in order to make relationships between current, its magnetic field, and the electromotive force easier to visualize and understand.&lt;br /&gt;
&lt;br /&gt;
Though he was best known for his right-hand rule in which he connected the observation vector, magnetic field, and current, he also had a left-hand rule as well which he used for motors. It connected force, magnetic field, and current. &lt;br /&gt;
&lt;br /&gt;
[[File:LeftHandOutline.png|thumb|Fleming&#039;s original rule]]&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
&lt;br /&gt;
#https://www.khanacademy.org/test-prep/mcat/physical-processes/magnetism-mcat/a/using-the-right-hand-rule&lt;br /&gt;
#https://ocw.mit.edu/courses/physics/8-02t-electricity-and-magnetism-spring-2005/lecture-notes/prs_w06d1.pdf&lt;br /&gt;
#http://physics.bu.edu/~duffy/semester2/d12_RHR_practice.html&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
#https://en.wikipedia.org/wiki/Right-hand_rule&lt;br /&gt;
#https://en.wikipedia.org/wiki/Magnetic_field&lt;br /&gt;
#https://nationalmaglab.org/education/magnet-academy/history-of-electricity-magnetism/pioneers/john-ambrose-fleming&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Fields]]&lt;/div&gt;</summary>
		<author><name>Rsharma443</name></author>
	</entry>
</feed>