Calculate the Currents in a given circuit

In summary, CLever-Name is asking for help with Kirchoff's Rule. He is having trouble doing the calculations and would appreciate a different approach. He also asks if matrices are an easier way to solve a problem. After explaining matrix solving, CLever-Name asks if numbers can be substituted into the equation. When doing so, he gets the following values for the currents in the circuit.
  • #1
Vazer
12
0
The question involves Kirchoff's Rule.
I'm having a hard time trying to calculate the currents in the given circuit.
I'm trying to solve question number 3 in the attached image (the image on the bottom left hand corner). I have already measured the currents in lab, but I'm having trouble doing the calculation part.
I'd appreciate the help, thanks.
 

Attachments

  • PhysicsHW-1.jpg
    PhysicsHW-1.jpg
    53.9 KB · Views: 442
Last edited:
Physics news on Phys.org
  • #2
Are you comfortable solving a matrix?

Try setting up the equations in matrix form and solving.
 
  • #3
It's been some time since I've done matrix. Is it an easier way to figure out the five currents? I'd be glad to learn this different approach to solving the problem.
 
  • #4
That's always the method I use for solving so I would say yes, it's definitely an easier way to solve this type of problem. Using the equations given I would set it up as follows:

[tex]
\left[ {\begin{array}{cc}
1 & 1 & -1 & 0 & 0 \\
0 & 0 & -1 & 1 & 1 \\
-R_{1} & R_{2} & 0 & 0 & 0 \\
0 & 0 & 0 & -R_{4} & R_{5} \\
0 & R_{2} & R_{3} & 0 & R_{4} \\
\end{array} } \right]
\left[ {\begin{array}{cc}
I_{1}\\
I_{2}\\
I_{3}\\
I_{4}\\
I_{5}\\
\end{array} } \right]
=
\left[ {\begin{array}{cc}
0\\
0\\
0\\
0\\
E_{1}\\
\end{array} } \right]
[/tex]

Do you see where this comes from when using your equations? Do you remember how to row-reduce?
 
  • #5
I'm trying to understand, but can't seem to figure how you placed them in matrix. No, don''t remember how to reduce.
 
  • #6
I'll look over matrices online, I'm seeing the pattern. I appreciate the help CLever-Name, thank you.
 
  • #7
Using matrices is a difficult concept to grasp at first but it's an extremely useful tool once you understand, for that reason I am going to try and explain it here.

I have set up your equations in the form
[tex] Ax = b [/tex]
Where A is your matrix of known values, x is your column vector of unknowns, which is what you're trying to solve for, and b is also a column vector you know.

To expand out a system like this you have to multiply each ROW of A by the column vector x and set it equal to the corresponding ROW in b (which is just a single value, in this case we have 4 0's and one E_1)

For example, for the first row we have
[tex] \left[ {\begin{array}{cc}
1 & 1 & -1 & 0 & 0
\end{array} } \right]
\left[ {\begin{array}{cc}
I_{1}\\
I_{2}\\
I_{3}\\
I_{4}\\
I_{5}\\
\end{array} } \right]
=
0
[/tex]

We multiply across the row and down the column.

[tex] 1*I_{1} + 1*I_{2} - 1*I_{3} + 0*I_{4} + 0*I_{5} = 0 [/tex]

Simplifying this we get back the original first equation:

[tex] I_{1} + I_{2} = I_{3} [/tex]

As an exercise try doing this with each row and you'll see that you get back your original equations. To be more explicit I am going to do the same thing with the last row so you see a more complicated example: ***I made a mistake in my previous post in the last row, the [itex] R_{4} [/itex] should be an [itex] R_{5} [/itex] *****

[tex] \left[ {\begin{array}{cc}
0 & R_{2} & R_{3} & 0 & R_{5}
\end{array} } \right]
\left[ {\begin{array}{cc}
I_{1}\\
I_{2}\\
I_{3}\\
I_{4}\\
I_{5}\\
\end{array} } \right]
=
E_{1}
[/tex]

Expanding out we get:
[tex] 0*I_{1} + R_{2}*I_{2} + R_{3}*I_{3} + 0*I_{4} + R_{5}*I_{5} = E_{1}[/tex]

Simplifying we can get back the original 5th equation:

[tex]E_{1} - R_{2}I_{2} - R_{3}I_{3} - R_{5}I_{5} = 0[/tex]

Now the way to solve this system is to row-reduce the matrix. Rather.. put it in the following form:

[tex]
\left[ {\begin{array}{cc}
1 & 1 & -1 & 0 & 0 \\
0 & 1 & X & X & X \\
0 & 0 & 1 & X & X \\
0 & 0 & 0 & 1 & X \\
0 & 0 & 0 & 0 & 1 \\
\end{array} } \right]
\left[ {\begin{array}{cc}
I_{1}\\
I_{2}\\
I_{3}\\
I_{4}\\
I_{5}\\
\end{array} } \right]
=
\left[ {\begin{array}{cc}
0\\
0\\
0\\
0\\
X\\
\end{array} } \right]
[/tex]
The X's are there because the process of row-reducing MAY change what these values are.

By doing this process we end up being able to re-expand everything and get a something equivalent to our original equations but incredibly simple to solve for the currents. As you may see if we were to expand out the last row we would get [itex] I_{5} = X [/itex] The X will depend on the process of row reducing and simplifying.

I think it would be easier at this point to substitute in numbers in our matrix. The values I can read from your pictures produce the following (correct me if I'm wrong):
[tex]
\left[ {\begin{array}{cc}
1 & 1 & -1 & 0 & 0 \\
0 & 0 & -1 & 1 & 1 \\
-10.6 & 5.00 & 0 & 0 & 0 \\
0 & 0 & 0 & -10.2 & 5.00 \\
0 & 5.00 & 34.5 & 0 & 5.00 \\
\end{array} } \right]
\left[ {\begin{array}{cc}
I_{1}\\
I_{2}\\
I_{3}\\
I_{4}\\
I_{5}\\
\end{array} } \right]
=
\left[ {\begin{array}{cc}
0\\
0\\
0\\
0\\
9.9\\
\end{array} } \right]
[/tex]

You said you have worked with matrices in the past so I am going to stop here. Hopefully it has refreshed your memory on how to row-reduce. If not then I can continue on and give you a little more guidance as to how to procede
 
Last edited:
  • #8
On the I5 row of last matrix posted the 10.2 should be a 5.00 = R5.

So after reducing, I can solve for all five currents?
I1=-1A
I2=-1A
I3=5.6A
I4=5.2A
I5=-34.6A
 
  • #9
*fixed*

And those currents don't look right. Plug you values back into the first equation
[tex] I_{1} + I_{2} = I_{3} [/tex]
It doesn't add up.

Are you able to show your steps? Maybe I can find where you went wrong.
 
  • #10
Since the equations are set up in Ax=b form then:

For example on the Fifth row(I5):

Ax=b

[0+5.00+34.5+0+5.00] [I5] = [9.9]
44.5 I5= 9.9
I5=2.22x10-1A
when rounding it to three significant figures.

I1 through I4= 0
All are the same values when I try this on the other equations.
 
  • #11
Sorry it's 5.00I2+34.5I3+5.00I5=9.9
for row five (I5)
 
  • #12
The first way you wrote it isn't correct, but you corrected it in the second post so that's good.

With a system set up this way you need to perform some operations on the matrix first before you can evaluate for your missing quantities. I'll show you some of the steps for this situation:

[tex]
\left[ {\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
0 & 0 & -1 & 1 & 1 & 0 \\
-10.6 & 5.00 & 0 & 0 & 0 & 0 \\
0 & 0 & 0 & -10.2 & 5.00 & 0 \\
0 & 5.00 & 34.5 & 0 & 5.00 & 9.9 \\
\end{array} } \right]
[/tex]

Here I have set it up as an augmented matrix. So we have [A|b] in the above matrix, this is easier to work with but you need to recognize that the vertical line indicates Ax = b and not just A = b.

Continuing on we want to reorganize it so that we can easily row-reduce. So first I want to do the following:
Shift the 3rd row to the 2nd, the 5th row to the 3rd, the 2nd row to the 4th, and the 4th row to the 5th. Giving us:

[tex]
\left[ {\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
-10.6 & 5.00 & 0 & 0 & 0 & 0 \\
0 & 5.00 & 34.5 & 0 & 5.00 & 9.9 \\
0 & 0 & -1 & 1 & 1 & 0 \\
0 & 0 & 0 & -10.2 & 5.00 & 0 \\
\end{array} } \right]
[/tex]

It now has this sort of 'step' form. Our next step is the following:
We need to modify the 2nd row, we can't have anything in the slot where the -10.6 is. So we have to 'modify' it using the 1st row. So the operation is: [itex] 10.6R_{1} + R_{2} \rightarrow R_{2} [/itex]
Giving us:
[tex]
\left[ {\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
0 & 15.60 & -10.6 & 0 & 0 & 0 \\
0 & 5.00 & 34.5 & 0 & 5.00 & 9.9 \\
0 & 0 & -1 & 1 & 1 & 0 \\
0 & 0 & 0 & -10.2 & 5.00 & 0 \\
\end{array} } \right]
[/tex]

We have now 'eliminated' that pesky -10.6 in the left-most column of row 2. Since it's row 2 we don't want any number other than 0 in the first column. For row 3 we don't want any number other than 0 in the first 2 columns, and so on.

The next step would be [itex] R_{3} - \frac{5}{15.6}R_{2} \rightarrow R_{3} [/itex] The reason we're doing this is to eliminate the pesky 5 in the 2nd column of row 3.

This gives us:

[tex]
\left[ {\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
0 & 15.60 & -10.6 & 0 & 0 & 0 \\
0 & 0 & 37.897 & 0 & 5.00 & 9.9 \\
0 & 0 & -1 & 1 & 1 & 0 \\
0 & 0 & 0 & -10.2 & 5.00 & 0 \\
\end{array} } \right]
[/tex]

Can you see what our next step would be?
 
  • #13
Shouldn't the 37.8974 on the third row be 32.8974?
After this then the -1 on the fourth row needs to be eliminated then the -10.2 on the fifth row.
 
  • #14
Nevermind, sorry another mistake. Figured how you did the elimination in row three:
(34.5+5.00) - (5.00/15.6)*5.00 = 37.8974
 
  • #15
So, that means in the next row:
R4 + (1/37.897)R3 -> R4
(1+1)+(1/37.897)(34.5) = 2.910
R4=2.910

And the last row -10.2 needs to be eliminated.
R5 + (10.2/2.910)R4 -> R5
R5 = 50.952
 
Last edited:
  • #16
Is this correct? Learning how to post the matrices in code, don't know how to hide the left, right text from code.

left[{\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
0 & 15.60 & -10.6 & 0 & 0 & 0 \\
0 & 0 & 37.897 & 0 & 5.00 & 9.9 \\
0 & 0 & 0 & 2.910 & 1 & 0 \\
0 & 0 & 0 & 0 & 50.952 & 0 \\
\end{array} }\right]
 
  • #17
Almost, but not quite.

Our operation on Row 4 is [itex] R_{4} + \frac{1}{37.897}R{3} \rightarrow R_{4} [/itex]

Giving us:

[tex]
\left[ {\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
0 & 15.60 & -10.6 & 0 & 0 & 0 \\
0 & 0 & 37.897 & 0 & 5.00 & 9.9 \\
0 & 0 & 0 & 1 & 1.132 & 0.261 \\
0 & 0 & 0 & -10.2 & 5.00 & 0 \\
\end{array} } \right]
[/tex]

Explicitly we have to assign the operation to EACH column of Row 4 and 3.

Thus we have 0 + 0 for the first column. 0 + 0 for the 2nd column. -1 + (1/37.897)(37.897) = 0 for the 3rd column. 1 + 0 = 1 for the 4th column. 1 + (1/37.897)(5) = 1.132 for the 5th column. And this operation also has to be applied to the outside column as well. Giving us 0 + (1/37.897)(9.9) = 0.261 outside.
 
  • #18
Thanks for the help and the patience Clever-Name, appreciate the step by step procedure as to how to solve this problem using matrices. Seems a lot a work than I thought it would be, but I actually like this approach, just need to practice more. Thanks.
 
  • #19
It does seem pretty daunting at first but once you get the hang of it it really is a nice method. We might as well go the next 2 steps to complete our solution. From my last matrix we do the following step: [itex] R_{5} + 10.2R_{4} \rightarrow R_{5} [/itex]

Giving:

[tex]
\left[ {\begin{array}{ccccc|c}
1 & 1 & -1 & 0 & 0 & 0 \\
0 & 15.60 & -10.6 & 0 & 0 & 0 \\
0 & 0 & 37.897 & 0 & 5.00 & 9.9 \\
0 & 0 & 0 & 1 & 1.132 & 0.261 \\
0 & 0 & 0 & 0 & 16.546 & 2.662\\
\end{array} } \right]
[/tex]

If we were to now write this again in it's full (Ax = b) form we would have:
[tex]
\left[ {\begin{array}{cc}
1 & 1 & -1 & 0 & 0 \\
0 & 15.60 & -10.6 & 0 & 0 \\
0 & 0 & 37.897 & 0 & 5.00 \\
0 & 0 & 0 & 1 & 1.132 \\
0 & 0 & 0 & 0 & 16.546 \\
\end{array} } \right]
\left[ {\begin{array}{cc}
I_{1}\\
I_{2}\\
I_{3}\\
I_{4}\\
I_{5}\\
\end{array} } \right]
=
\left[ {\begin{array}{cc}
0\\
0\\
9.9\\
0.261\\
2.662\\
\end{array} } \right]
[/tex]

This is equivalent to the same setup we had at the very beginning. We can now expand this out to give us some linear equations and we end up with:

[tex] I_{1} + I_{2} - I_{3} = 0[/tex]
[tex]15.60I_{2} - 10.6I_{3} = 0[/tex]
[tex]37.897I_{3} + 5I_{5} = 9.9[/tex]
[tex]I_{4} + 1.132I_{5} = 0.261[/tex]
[tex]16.546I_{5} = 2.662[/tex]

Now you can easily work from the bottom up and solve for I_5, then I_4, etc. etc. Getting all of your currents out of it.
 

Related to Calculate the Currents in a given circuit

1. What is a circuit?

A circuit is a closed loop or pathway through which electricity can flow. It typically includes a power source, such as a battery or generator, and various components, such as resistors, capacitors, and switches, which control the flow of electricity.

2. How do you calculate currents in a circuit?

To calculate currents in a circuit, you can use Ohm's Law, which states that current (I) is equal to the voltage (V) divided by the resistance (R). So, I = V/R. You can also use Kirchhoff's Current Law, which states that the sum of currents entering a node in a circuit is equal to the sum of currents leaving that node.

3. What is the unit of measurement for current?

The unit of measurement for current is the ampere (A), which is defined as the amount of electric charge passing through a specific point in one second. It is named after the French physicist André-Marie Ampère.

4. What factors affect the current in a circuit?

The current in a circuit is affected by the voltage of the power source, the resistance of the components in the circuit, and the type of circuit (series or parallel). Changes in any of these factors can result in a change in current.

5. Why is it important to calculate currents in a circuit?

Calculating currents in a circuit is important for understanding how electricity flows and how it is affected by different components. It is also crucial for designing and troubleshooting circuits, as well as for ensuring the safe and efficient operation of electrical systems.

Similar threads

  • Introductory Physics Homework Help
Replies
5
Views
337
  • Introductory Physics Homework Help
Replies
8
Views
927
  • Introductory Physics Homework Help
Replies
8
Views
277
  • Introductory Physics Homework Help
2
Replies
39
Views
3K
  • Introductory Physics Homework Help
Replies
5
Views
1K
  • Introductory Physics Homework Help
Replies
2
Views
345
  • Introductory Physics Homework Help
Replies
13
Views
1K
  • Introductory Physics Homework Help
Replies
4
Views
1K
  • Introductory Physics Homework Help
Replies
13
Views
1K
  • Introductory Physics Homework Help
Replies
1
Views
196
Back
Top