<?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=Jduque8</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=Jduque8"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Jduque8"/>
	<updated>2026-05-15T07:39:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30885</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30885"/>
		<updated>2017-11-30T03:50:08Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get the voltages:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example5.png|150px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Finally, we can find the currents using &amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example6.png|140px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30884</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30884"/>
		<updated>2017-11-30T03:49:47Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get the voltages:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example5.png|150px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Finally, we can find the currents using &amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example6.png|140px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30878</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30878"/>
		<updated>2017-11-30T03:46:16Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get the voltages:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example5.png|150px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Finally, we can find the currents using &amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example6.png|140px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example6.png&amp;diff=30877</id>
		<title>File:Linear circut example6.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example6.png&amp;diff=30877"/>
		<updated>2017-11-30T03:45:58Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: Jduque8 uploaded a new version of &amp;amp;quot;File:Linear circut example6.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example6.png&amp;diff=30876</id>
		<title>File:Linear circut example6.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example6.png&amp;diff=30876"/>
		<updated>2017-11-30T03:45:27Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30867</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30867"/>
		<updated>2017-11-30T03:39:59Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get the voltages:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example5.png|150px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Finally, we can find the currents using &amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example6.png|150px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example4.png&amp;diff=30864</id>
		<title>File:Linear circut example4.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example4.png&amp;diff=30864"/>
		<updated>2017-11-30T03:38:42Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: Jduque8 uploaded a new version of &amp;amp;quot;File:Linear circut example4.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30863</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30863"/>
		<updated>2017-11-30T03:38:00Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example5.png|150px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example5.png&amp;diff=30861</id>
		<title>File:Linear circut example5.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example5.png&amp;diff=30861"/>
		<updated>2017-11-30T03:37:31Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30859</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30859"/>
		<updated>2017-11-30T03:37:12Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example5.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30837</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30837"/>
		<updated>2017-11-30T03:31:11Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Solving for x, we get:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30833</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30833"/>
		<updated>2017-11-30T03:27:40Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30831</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30831"/>
		<updated>2017-11-30T03:27:06Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example4.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example4.png&amp;diff=30828</id>
		<title>File:Linear circut example4.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example4.png&amp;diff=30828"/>
		<updated>2017-11-30T03:26:19Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30827</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30827"/>
		<updated>2017-11-30T03:25:17Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Notice that &amp;lt;math&amp;gt; C&amp;lt;/math&amp;gt; is the identity, thus:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example2.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* Linear Algebra applications in image compression: https://math.mit.edu/~gs/linearalgebra/linearalgebra5_7-1.pdf&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Gilbert Strang&#039;s &amp;quot;Equilibrium Equations and Minimum Principles&amp;quot;: http://cns-web.bu.edu/~eric/EC500/attachments/ON(2d)LINE(20)READINGS/strang.pdf&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example1.png&amp;diff=30800</id>
		<title>File:Linear circut example1.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example1.png&amp;diff=30800"/>
		<updated>2017-11-30T03:12:20Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: Jduque8 uploaded a new version of &amp;amp;quot;File:Linear circut example1.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example1.png&amp;diff=30799</id>
		<title>File:Linear circut example1.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Linear_circut_example1.png&amp;diff=30799"/>
		<updated>2017-11-30T03:11:53Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30798</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30798"/>
		<updated>2017-11-30T03:11:25Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
Solving the system, we get:&lt;br /&gt;
&lt;br /&gt;
[[File:Linear_circut_example1.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30777</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30777"/>
		<updated>2017-11-30T02:59:26Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|600px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30774</id>
		<title>File:Graph representation example.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30774"/>
		<updated>2017-11-30T02:58:56Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: Jduque8 uploaded a new version of &amp;amp;quot;File:Graph representation example.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30772</id>
		<title>File:Graph representation example.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30772"/>
		<updated>2017-11-30T02:58:16Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: Jduque8 uploaded a new version of &amp;amp;quot;File:Graph representation example.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30767</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30767"/>
		<updated>2017-11-30T02:56:07Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|800px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30765</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30765"/>
		<updated>2017-11-30T02:55:37Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30762</id>
		<title>File:Graph representation example.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30762"/>
		<updated>2017-11-30T02:55:07Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: Jduque8 uploaded a new version of &amp;amp;quot;File:Graph representation example.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30758</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30758"/>
		<updated>2017-11-30T02:54:21Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.jpg|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30755</id>
		<title>File:Graph representation example.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Graph_representation_example.png&amp;diff=30755"/>
		<updated>2017-11-30T02:53:28Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30753</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30753"/>
		<updated>2017-11-30T02:52:58Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
It is important to note that for the exercises posted above, the solutions for those problems should be easy to compute given the number of nodes and connections. Nevertheless, bigger and more complex problems would benefit massively from the methods of linear algebra, as they could be computed in this standard way.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
Suppose we have the following circuit (along with its graph and matrix representation):&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation_example.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30685</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30685"/>
		<updated>2017-11-30T02:07:25Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance diagonal matrix &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i,i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C_{i,j} = 0&amp;lt;/math&amp;gt;,Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system of matrices to solve circuit problems.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30660</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30660"/>
		<updated>2017-11-30T01:45:16Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now use this system to solve circuit problems.&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30655</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30655"/>
		<updated>2017-11-30T01:43:38Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30653</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30653"/>
		<updated>2017-11-30T01:43:14Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; . Substituting for y in Kirchhoff&#039;s law, we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; -A^{T}CA\vec{x} = f&amp;lt;/math&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30642</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30642"/>
		<updated>2017-11-30T01:40:26Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a circuit has a source like a battery, we can treat the entire circuit as a node. The current in and out of every node within the circuit will be zero except for the nodes connected to the positive and negative ends of the battery. For the positive end the net current, &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;,  will be positive and for the negative end the net current will be negative. Thus we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;f_{i} = 0 &amp;lt;/math&amp;gt; if  &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is not one of the nodes connected to the battery,&amp;lt;math&amp;gt;f_{i} = S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the positive end and &amp;lt;math&amp;gt;f_{i} = -S&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; is connected to the negative end.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; .&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30599</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30599"/>
		<updated>2017-11-30T01:05:57Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sum of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; .&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30597</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30597"/>
		<updated>2017-11-30T01:04:14Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt;, Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; .&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30595</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30595"/>
		<updated>2017-11-30T01:03:42Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt; Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{j}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;j&amp;lt;/math&amp;gt; .&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30594</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30594"/>
		<updated>2017-11-30T01:03:02Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt; Ohm&#039;s law becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec{y} = -CA\vec{x}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i}&amp;lt;/math&amp;gt; is the current through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{i}&amp;lt;/math&amp;gt; is the voltage at node &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt; .&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30590</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30590"/>
		<updated>2017-11-30T00:59:46Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Solving Problems===&lt;br /&gt;
&lt;br /&gt;
From Ohm&#039;s law we have  &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Thus if we define the conductance vector &amp;lt;math&amp;gt;\vec{C}&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;C_{i} = \frac{1}{R_{i}}&amp;lt;/math&amp;gt; Ohm&#039;s law becomes:&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30579</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30579"/>
		<updated>2017-11-30T00:53:57Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30575</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30575"/>
		<updated>2017-11-30T00:49:48Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge &amp;lt;math&amp;gt;i&amp;lt;/math&amp;gt;.&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30573</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30573"/>
		<updated>2017-11-30T00:49:08Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;y_{i} &amp;lt;/math&amp;gt; is the current passing through edge i.&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30570</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30570"/>
		<updated>2017-11-30T00:47:46Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30567</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30567"/>
		<updated>2017-11-30T00:47:11Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
&amp;lt;math&amp;gt; A^{T}\vec{y} = 0&amp;lt;/math&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30557</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30557"/>
		<updated>2017-11-30T00:41:18Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
We know from Kirchhoff&#039;s law that the sums of the currents in each node is zero. This means that the current flowing into the node is the same as the current flowing out of the node. Therefore the multiplication of each column of A by the current vector, y, must be equal to zero:&lt;br /&gt;
 &amp;lt;math&amp;gt;A^{T}\vec{y} = 0&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30543</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30543"/>
		<updated>2017-11-30T00:31:31Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
Here, &amp;lt;math&amp;gt;x_{1}, x_{2}, x_{3}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{4}&amp;lt;/math&amp;gt; represent the voltages at the nodes. Then &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; gives the voltage differences &amp;lt;math&amp;gt;∆V&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Loop Rule (Kirchhoff&#039;s voltage law)===&lt;br /&gt;
&lt;br /&gt;
Using this creative way of transforming a circuit to a graph and getting the incidence matrix from it allows us to do some interesting things. &lt;br /&gt;
Kirchhoff&#039;s loop rule is a principle of conservation of energy that implies that the directed sum of the voltage differences around any closed network is zero. &lt;br /&gt;
&lt;br /&gt;
This means that the components of &amp;lt;math&amp;gt;A\vec{x} = b&amp;lt;/math&amp;gt; add to zero around every loop. Moreover, the voltage law can decide whether b is in the column space of A.&lt;br /&gt;
&lt;br /&gt;
We know from Ohm&#039;s law that &amp;lt;math&amp;gt; V = I * R &amp;lt;/math&amp;gt;. Then, in the previous graph for example, we would have that &amp;lt;math&amp;gt; V_{edge1} = I * R = (direction) * R_{1} =  1 * R_{1} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* Strang, G. (2016), &#039;&#039;Introduction to Linear Algebra&#039;&#039;, Wellesley-Cambridge Press, 5th edition, isbn:978-0-9802327-7-6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30502</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30502"/>
		<updated>2017-11-29T23:54:28Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
===Loop Rule===&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30501</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30501"/>
		<updated>2017-11-29T23:54:01Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
===Loop Rule===&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
\begin{filecontents*}{\jobname.bib}&lt;br /&gt;
@book{01,&lt;br /&gt;
 author={Caesar, Gaius Iulius},&lt;br /&gt;
 title={Commentarii de bello {Gallico}},&lt;br /&gt;
 year={703},&lt;br /&gt;
}&lt;br /&gt;
\end{filecontents*}&lt;br /&gt;
\documentclass{article}&lt;br /&gt;
\usepackage[numbers,square]{natbib}&lt;br /&gt;
&lt;br /&gt;
\begin{document}&lt;br /&gt;
&lt;br /&gt;
Here&#039;s a citation \cite[See:][p.~2]{01}&lt;br /&gt;
&lt;br /&gt;
Another: \cite[p.~3]{01}.&lt;br /&gt;
&lt;br /&gt;
Another: \cite{01}.&lt;br /&gt;
&lt;br /&gt;
\bibliographystyle{plainnat}&lt;br /&gt;
\bibliography{\jobname}&lt;br /&gt;
&lt;br /&gt;
\end{document}&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
Here&#039;s a citation \cite[See:][p.~2]{01}&lt;br /&gt;
&lt;br /&gt;
Another: \cite[p.~3]{01}.&lt;br /&gt;
&lt;br /&gt;
Another: \cite{01}.&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30500</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30500"/>
		<updated>2017-11-29T23:53:35Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
===Loop Rule===&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
\begin{filecontents*}{\jobname.bib}&lt;br /&gt;
@book{01,&lt;br /&gt;
 author={Caesar, Gaius Iulius},&lt;br /&gt;
 title={Commentarii de bello {Gallico}},&lt;br /&gt;
 year={703},&lt;br /&gt;
}&lt;br /&gt;
\end{filecontents*}&lt;br /&gt;
\documentclass{article}&lt;br /&gt;
\usepackage[numbers,square]{natbib}&lt;br /&gt;
&lt;br /&gt;
\begin{document}&lt;br /&gt;
&lt;br /&gt;
Here&#039;s a citation \cite[See:][p.~2]{01}&lt;br /&gt;
&lt;br /&gt;
Another: \cite[p.~3]{01}.&lt;br /&gt;
&lt;br /&gt;
Another: \cite{01}.&lt;br /&gt;
&lt;br /&gt;
\bibliographystyle{plainnat}&lt;br /&gt;
\bibliography{\jobname}&lt;br /&gt;
&lt;br /&gt;
\end{document}&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30495</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30495"/>
		<updated>2017-11-29T23:51:13Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
===Loop Rule===&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30491</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30491"/>
		<updated>2017-11-29T23:49:45Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
===Loop Rule===&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
\begin{filecontents*}{\jobname.bib}&lt;br /&gt;
@book{01,&lt;br /&gt;
 author={Caesar, Gaius Iulius},&lt;br /&gt;
 title={Commentarii de bello {Gallico}},&lt;br /&gt;
 year={703},&lt;br /&gt;
}&lt;br /&gt;
\end{filecontents*}&lt;br /&gt;
\documentclass{article}&lt;br /&gt;
&lt;br /&gt;
\makeatletter&lt;br /&gt;
\let\cite\relax&lt;br /&gt;
\DeclareRobustCommand{\cite}{%&lt;br /&gt;
  \let\new@cite@pre\@gobble&lt;br /&gt;
  \@ifnextchar[\new@cite{\@citex[]}}&lt;br /&gt;
\def\new@cite[#1]{\@ifnextchar[{\new@citea{#1}}{\@citex[#1]}}&lt;br /&gt;
\def\new@citea#1{\def\new@cite@pre{#1}\@citex}&lt;br /&gt;
\def\@cite#1#2{[{\new@cite@pre\space#1\if\relax\detokenize{#2}\relax\else, #2\fi}]}&lt;br /&gt;
\makeatother&lt;br /&gt;
&lt;br /&gt;
\begin{document}&lt;br /&gt;
&lt;br /&gt;
Here&#039;s a citation \cite[See:][p.~2]{01}&lt;br /&gt;
&lt;br /&gt;
Another: \cite[p.~3]{01}.&lt;br /&gt;
&lt;br /&gt;
Another: \cite{01}.&lt;br /&gt;
&lt;br /&gt;
Again: \cite[See:][]{01}&lt;br /&gt;
&lt;br /&gt;
\bibliographystyle{plain}&lt;br /&gt;
\bibliography{\jobname}&lt;br /&gt;
&lt;br /&gt;
\end{document}&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30488</id>
		<title>Problem Solving</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Problem_Solving&amp;diff=30488"/>
		<updated>2017-11-29T23:43:44Z</updated>

		<summary type="html">&lt;p&gt;Jduque8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Linear algebra can be used to solve large ohmic circuits. This page explains how to define the circuit problem in terms of a linear system that can be solved with computational methods like matlab or python. &lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
We can describe an electrical circuit as a graph where the nodes represent specific points and the edges represent the components connecting them. E.g:&lt;br /&gt;
&lt;br /&gt;
[[File:Graph_representation.png|500px|thumb|center|Graph representation of a circuit]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Incidence Matrix===&lt;br /&gt;
&lt;br /&gt;
The incidence matrix, A, is a matrix of dimensions m x n, where m is the number of edges and n is the number of nodes. If x is the vector that contains all the nodes in order, A satisfies: &amp;lt;math&amp;gt;A\vec{x}_{edge} = x_{end} - x_{start}&amp;lt;/math&amp;gt; Thus, the resulting matrix will have zeros in every element of each row, except for the start and the end nodes, which will be -1 and 1 respectively:&lt;br /&gt;
&lt;br /&gt;
[[File:Incidence_matrix.jpg|350px|thumb|center|Incidence matrix of a sample graph.&amp;lt;ref&amp;gt;{{Citation|last=Strang|first=Gilbert|date=July 19, 2016|title=Introduction to Linear Algebra|publisher=Wellesley-Cambridge Press|edition=5th|isbn=978-0-9802327-7-6}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
===Loop Rule===&lt;br /&gt;
&lt;br /&gt;
===Kirchhoff&#039;s Current Law===&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
What are the mathematical equations that allow us to model this topic.  For example &amp;lt;math&amp;gt;{\frac{d\vec{p}}{dt}}_{system} = \vec{F}_{net}&amp;lt;/math&amp;gt; where &#039;&#039;&#039;p&#039;&#039;&#039; is the momentum of the system and &#039;&#039;&#039;F&#039;&#039;&#039; is the net force from the surroundings.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
How do we visualize or predict using this topic. Consider embedding some vpython code here [https://trinket.io/glowscript/31d0f9ad9e Teach hands-on with GlowScript]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Be sure to show all steps in your solution and include diagrams whenever possible&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
===Middling===&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
#How is this topic connected to something that you are interested in?&lt;br /&gt;
#How is it connected to your major?&lt;br /&gt;
#Is there an interesting industrial application?&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
Put this idea in historical context. Give the reader the Who, What, When, Where, and Why.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
Internet resources on this topic&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;/div&gt;</summary>
		<author><name>Jduque8</name></author>
	</entry>
</feed>