Given that r = 2 Ω and R = 6 Ω , find the equivalent resistance (in ohms) across A B .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Great solution sir!
edges = { 1 ↔ 2 , 1 ↔ 3 , 1 ↔ 4 , 2 ↔ 3 , 3 ↔ 4 , 2 ↔ 5 , 3 ↔ 5 , 4 ↔ 5 }
weights = { 2 , 1 , 6 , 1 , 1 , 6 , 1 , 2 }
resistance = With [ { Γ = PseudoInverse [ With [ { wam = WeightedAdjacencyMatrix [ $#$1 ] } , DiagonalMatrix [ Tr /@ wam T ] − wam ] ] } , Outer [ Plus , Diagonal [ Γ ] , Diagonal [ Γ ] ] − Γ − Γ T ] & ;
g = PlanarGraph [ edges , EdgeWeight → Table [ r 1 , { r , weights } ] , VertexLabels → Automatic , EdgeLabels → EdgeWeight ]
⎝ ⎜ ⎜ ⎜ ⎜ ⎛ 0 1 4 1 3 1 1 2 7 5 2 8 3 3 4 5 1 4 1 3 0 1 1 2 7 5 4 5 2 8 3 3 1 1 2 7 5 1 1 2 7 5 0 1 1 2 7 5 1 1 2 7 5 2 8 3 3 4 5 1 1 2 7 5 0 1 4 1 3 4 5 2 8 3 3 1 1 2 7 5 1 4 1 3 0 ⎠ ⎟ ⎟ ⎟ ⎟ ⎞
Problem Loading...
Note Loading...
Set Loading...
I can think of two ways to do this one:
1) Apply a fictitious voltage source and use linear algebra to solve for the node voltages, source current, and equivalent resistance
2) Apply successive delta-wye transforms and simplify. I have outlined this approach below. Pardon the eccentric color schemes.