cschear87 said:
I'm just really frustrated that this isn't just popping into my head, second nature. I just can't seem to understand this 100%. Grr
tiny-tim said:
ok, then the 3 KVL equations (one for each loop) are …
20i1 - 40i2 = 0
40i2 - 80i3 = 0
10i5 + 20i1 = 10
and the KCL equation is …
i5 = i1 + i2 + i3
… so what
are the actual values of i
1 i
2 and i
3 ?
The physics has led to a set of equations that must be satisfied and now you have transitioned to math which will tell you how to solve the equations.
What you have is called a system of linear equations. It's a system because you have more than one equation that must be satisfied at the same time. It's linear because the equations are sums of constants times variables. No square roots, squares, sines of variables appear. Because this type of problem is so common, a branch of mathematics called linear algebra evolved to solve it but there's no need to go too deeply into that. You'll see that solving a system of linear equations is almost common sense.
To solve systems like this, it is almost always easiest to use Gaussian elimination. Scroll down to the section "Solve the following system of equations using Gaussian elimination." on
http://www.purplemath.com/modules/systlin6.htm for an overview. Writing down all the +/- signs and unknowns repetitively is a pain so we usually use a matrix shortcut, see
http://www.sosmath.com/matrix/system1/system1.html . Sorry I have a hard time finding a decent link, surprising as this is a pretty elementary subject.
Gaussian elimination, a method for solving systems of linear equations, follows three rules:
* Given a set of equations written down in order, you can change the order of the equations without changing the solution (this is called interchanging of rows).
* You can multiply an equation by a constant without changing the solutions (x+y=2 is the same equation as 2x+2y=4).
* You can add two equations together to get another equation consistent with the system (if you have " x - y = 6" and "x + y = 10" then you can add them together to get "2x = 16"). Note that you are not finding more information by doing this so you want to replace one of those two original equations with this new one.
You need as many equations as unknowns to find a unique solution. In your problem you have four independent equations and four unknowns (i1,i2,i3,is).
Take a look at those webpages and see if you can get anywhere with your system of equations.