About
These exercises are designed to get students started on using computers to solve systems of linear equations. Students should have some experience in an appropriate computational package before attempting this. Mathematica is a very good choice of tools for this exercise, closely followed by Python/numpy and MatLab. C/C++ also works, with appropriate libraries. The systems of equations we’ll be using come from resistor networks typical of a second-semester physics course, but the same techniques can be used for any system of linear equations regardless of their source.
Being able to solve systems of equations is an important computational skill, with applications in everything from mechanical engineering to quantum physics. For small systems of equations it is fairly simple to solve the systems algebraically, but for large complex systems it’s important to be able to solve them numerically using computers.
We first express the system of equations as a single matrix equation,
Since there are as many equations (rows in ) as there are variables (columns in ), will be a square matrix. If there is a solution to this set of equations, then there will exist another matrix such that , where is the identity matrix. In that case,
There are algorithmic methods for finding (and thus ; in our case we’ll be using standard libraries to calculate this matrix and the corresponding solution. One standard method is to have the computer calculate directly using an “invert()” function, and then multiply that inverse matrix by to obtain .
Most computational packages that have the ability to calculate also have an additional function, often called “solve()”, that takes care of the multiplication as well, and gives the user directly.
For more information about how these functions work, see Numerical Recipes in C by Flannery, Teukolsky, Press, and Vetterling, or similar text.
Exercise 1: Introductory Problem
Consider the network of resistors and batteries shown in the first figure below.
There are three unknowns in that circuit, , , and . We can solve for these unknowns by building a system of equations using Kirchhoff’s Laws:
- The sum of voltages around any loop is zero.
- The sum of currents at any junction is zero.
Applying the voltage law to the left-hand loop, we get
From the right-hand loop, we get
We need one more equation, for which we can use the junction at top center and the current law:
We now have the requisite three independent equations, which we can solve using methods learned in high-school algebra.
There’s another way of solving this, using matrix methods. First, rewrite the equations just a bit.
And now we can see that this can be written as a matrix equation!
This matrix equation,
has solution
where is the inverse of . Most computational packages have built-in capability for inverting matrices.
ASSIGNMENT
- By carrying out the matrix multiplication explicitly, show that the matrix equation above reduces to the system of equations from which it is derived.
- Use a matrix-solving package to find the currents.
- Check your answers by substituting the currents into the equations and verifying that they are solutions.
Exercise 2: More complicated problem
The resistor network below is perhaps a bit more challenging.
ASSIGNMENT
- Write a system of equations that can be used to solve for the currents in the circuit above.
- Re-write the system of equations from part 1 of this assignment as a matrix equation.
- Use a matrix-solving package to find the currents.
- Check your answers: do the values of currents you found solve the equations with which you started?
- You may notice something interesting if you compare your solution here to your solution for exercise 1. (Assuming the same values of and were used in both exercises.) Explain why this happened.
Unless your instructor provides you with other values, assume each voltage source and each resistor has a value its identifying number. (i.e. V, .)
- 1) By carrying out the matrix multiplication explicitly, show that the matrix equation above reduces to the system of equations from which it is derived.
- 2) Use a matrix-solving package to find the currents.
- 3) Check your answers by substituting the currents into the equations and verifying that they are solutions.
'''
resistor.py
Eric Ayars
June 2016
A demonstration program for solving a system of linear equations using Python.
'''
import numpy as np
# Start by getting the values of R and V
R1 = float(input("R1 = "))
R2 = float(input("R2 = "))
R3 = float(input("R3 = "))
V1 = float(input("V1 = "))
V2 = float(input("V2 = "))
# Use these values to build the matrix M. Note that this matrix
# will vary depending on the equation set selected to solve the
# problem: here I use the equations from the PICUP webpage.
# Here is the matrix M:
M = np.array([ [R1, 0, R3],
[0,-R2, R3],
[1, -1, -1] ])
# here is the right-hand-side b:
b = np.array([V1,V2,0])
# And this is all it takes to get a solution:
x = np.linalg.solve(M,b)
# show the result.
print(x)
# The result is an array of currents:
# [-0.09090909 -0.45454545 0.36363636]
# The first one is I_1, the second is I_2, etc.
Translations
Code | Language | Translator | Run | |
---|---|---|---|---|
Credits
Fremont Teng; Loo Kang Wee
Sample Learning Goals
[text]
For Teachers
Solving Resistor Networks JavaScript Simulation Applet HTML5
Instructions
Combo Box and Functions
Toggling Full Screen
Reset Button
Research
[text]
Video
[text]
Version:
- https://www.compadre.org/PICUP/exercises/exercise.cfm?I=118&A=linearEquations
- http://weelookang.blogspot.com/2018/05/solving-resistor-networks-javascript.html
Other Resources
[text]
end faq
{accordionfaq faqid=accordion4 faqclass="lightnessfaq defaulticon headerbackground headerborder contentbackground contentborder round5"}
- Details
- Written by Fremont
- Parent Category: 05 Electricity and Magnetism
- Category: 06 Practical Electricity
- Hits: 3873