Preprint
Article

This version is not peer-reviewed.

A Mechanical Formulation for Resistive Network Analysis: The Spring-Conductance Matrix Method

Submitted:

06 January 2026

Posted:

08 January 2026

You are already at the latest version

Abstract
We introduce a formal and systematic analogy between static mechanical spring networks and electrical resistor networks, establishing a one‑to‑one mathematical correspondence where spring displacements map to electric potentials, spring constants to conductances, and forces to currents. This equivalence transforms the static equilibrium equations of point-mass-spring systems into the nodal equations of resistor networks, enabling the construction of a conductance matrix that is identical in form to a mechanical stiffness matrix and coincides with the weighted graph Laplacian. We demonstrate the versatility of this framework through a series of examples from elementary series and parallel combinations to non-planar networks such as the 3D resistor cube and the Petersen graph. We show that the method provides both an intuitive mechanical interpretation of circuit concepts and a systematic, matrix-based computational algorithm for calculating equivalent resistance. The approach naturally extends to AC networks containing resistors, capacitors, and inductors, offering a unified treatment of linear networks in both DC and AC regimes. We discuss the pedagogical value of the analogy for teaching circuit theory and network analysis, as well as its connections to graph theory and computational implementation. Limitations of the method, including its restriction to linear elements and the numerical considerations of matrix inversion, are briefly discussed.
Keywords: 
;  ;  ;  

1. Introduction

Mathematical analogies between different physical systems have long been recognized as powerful tools for understanding and problem-solving in physics and engineering [1]. In electrical engineering education, analogies between mechanical and electrical systems are particularly valuable for developing intuition [2,3]. The well-known mass-spring-damper analogy to RLC circuits is a staple of systems dynamics education [4,5]. However, a formal analogy specifically between static spring networks and resistive circuits remains underdeveloped in the literature.
This paper establishes a precise mathematical correspondence between the equilibrium conditions of point masses connected by linear springs and the nodal analysis of resistor/impedance networks. The analogy provides not only an intuitive mechanical interpretation of electrical concepts but also a systematic matrix method for calculating equivalent resistance/impedance between any two nodes in a complex network.

1.0.0.1

The spring-resistor analogy builds upon the observation that Hooke’s Law for springs and Ohm’s Law for resistors share the same mathematical form,
F = k ( x j x i ) ( Hooke s Law )
I = G ( V j V i ) ( Ohm s Law )
where F is force, k is spring constant, x is displacement, I is current, G is conductance, and V is voltage. We note the directivity of both the electrical current and the mechanical force.

2. Mathematical Formalism

2.1. The Spring-Resistor Correspondence

Consider a system of N point masses connected by ideal springs obeying Hooke’s Law. For a spring connecting points i and j with spring constant k i j , the force exerted by the mass i on the mass j through the spring is given by,
F i j = k i j ( x j x i ) e i j
where x i and x j are the positions (abscissa) of the two endpoints relative to some reference and the unit vector e i j is directed from point mass i to point mass j. We consider a spring with a vanishing unstretched length. For a resistor obeying Ohm’s Law, the current through a resistor from node i toward node j is,
I i j = 1 R i j ( V j V i ) = G i j ( V j V i )
where V i and V j are the electric potentials at the nodes, R i j is the resistance, and G i j = 1 / R i j is the conductance. The mathematical equivalence between Eqs. 3 and 4 establishes the fundamental analogy, summarized in Table 1. The pairing shown in Figure 1 allows a transfer of intuition about mechanical equilibrium, where forces balance and displacements propagate through a spring network to the electrical domain, where currents balance and potentials distribute through a resistor network. The identical mathematical structure, when paired with the visual analogy, reinforces the conceptual bridge between mechanics and circuit theory.

2.2. Nodal Equilibrium Equations

For a point mass m connected to several springs, static equilibrium requires,
j N ( m ) F m j = j N ( m ) k m j ( x j x m ) = 0
where N ( m ) denotes the set of points connected to m.
For an electrical node m connected to several resistors, Kirchhoff’s Current Law gives,
j N ( m ) I m j = j N ( m ) G m j ( V j V m ) = 0
The mathematical identity of Equations 5 and 6 establishes the formal analogy at the nodal level.

2.3. The Stiffness/Conductance Matrix as Graph Laplacian

For a system with n nodes, we can write the equilibrium equations in matrix form. Let x = ( x 1 , x 2 , , x n ) T be the displacement vector (or potential vector V in the electrical analogy). The equilibrium conditions yield,
K x = F
where K is the stiffness matrix (or conductance matrix in the electrical context) with elements:
K i j = k i G i k if i = j G i j if i j and nodes i and j are connected 0 otherwise
and F = ( F 1 , F 2 , , F n ) T is the external force vector (current injection vector in the electrical context). We note that the matrix K is exactly the Laplacian matrix of the underlying graph weighted by conductances [3]. This connects our method to spectral graph theory.

2.4. Equivalent Resistance Calculation: Complete Algorithm

The matrix K is singular (each row sums to zero), reflecting gauge invariance of potentials (adding a constant to all potentials doesn’t change physics). To solve the system, we must ground one node (set its potential to zero). The complete algorithm is outlined as follows,  
Preprints 193245 i001
The matrix method is particularly suited to computational solution. Algorithm 1 provides pseudocode for calculating the equivalent resistance.
Algorithm 1:Calculate Equivalent Resistance Between Two Nodes
Require: 
Adjacency matrix A, resistance matrix R, number of nodes N, node indices a and b
Ensure: 
Equivalent resistance R a b between nodes a and b  N number of nodes
1:
Initialize G as N × N zero matrix
2:
for i = 0 to N 1  do
3:
    for  j = 0 to N 1  do
4:
        if  A i j = 1 and R i j 0  then
5:
            G i j 1.0 / R i j , G i i G i i + G i j
6:
        end if
7:
    end for
8:
end for
9:
Build K : K i i = G i i , K i j = G i j for i j
10:
K ¯ remove row and column b from K , K ¯ 1 invert matrix K ¯
11:
R a b ( K ¯ 1 ) a a
12:
return R a b
While mechanical–electrical analogies have a long history in physics education, the present work distinguishes itself in several important respects.
Traditional nodal analysis solves for node voltages given current injections, but does not inherently provide a physical interpretation of the conductance matrix. Our formulation explicitly identifies the conductance matrix as a stiffness matrix arising from Hookean springs, thereby giving a concrete mechanical meaning to each term in the matrix. This allows students to visualize current flow as force transmission and potential differences as spring displacements such perspective is absent in conventional circuit pedagogy. Furthermore, nodal analysis is indeed systematic, our formulation provides a single, consistent matrix method that works for DC resistor networks, AC networks with complex impedances, Arbitrary linear networks with dependent sources and Non-planar and high-symmetry networks, all within the same intuitive mechanical framework. Thus, the novelty lies not in discovering a new circuit solution method, but in reframing and enriching an existing method with mechanical intuition, graph-theoretical insight, and pedagogical clarity.

3. Applications

In this section we put the matrix method to the test showing its systematic resolution of different types of simple and complex electric circuits, in DC and AC regimes.

3.1. Series Resistors

Consider two resistors R 1 and R 2 in series between nodes A and C, with intermediate node B, as shown in Figure 2.
The conductance matrix is,
K = G 1 G 1 0 G 1 G 1 + G 2 G 2 0 G 2 G 2 , G i = 1 R i
Ground node C ( V C = 0 ),
K ¯ = G 1 G 1 G 1 G 1 + G 2 , K ¯ 1 = 1 G 1 G 2 G 1 + G 2 G 1 G 1 G 1
With current injection at A and extraction at C,
R A C = ( K ¯ 1 ) 11 = G 1 + G 2 G 1 G 2 = R 1 + R 2

3.2. Parallel Resistors

Consider two resistors R 1 and R 2 in parallel between nodes A and B, as shown in Figure 3.
After merging identical nodes:
K = G 1 + G 2 ( G 1 + G 2 ) ( G 1 + G 2 ) G 1 + G 2
Ground node B:
K ¯ = [ G 1 + G 2 ] , K ¯ 1 = 1 G 1 + G 2
Thus:
R A B = 1 G 1 + G 2 = R 1 R 2 R 1 + R 2

3.3. Square-Cross Bridge

Consider the square-cross bridge in Figure 4 where we look for the equivalent resistance R A D between the nodes A and D. This example shows the systematic nature of the matrix method irrespective of the complexity of the network.
The 5 × 5 conductance matrix is given by,
K = G 1 + G 5 + G 7 G 7 G 5 0 G 1 G 7 G 2 + G 6 + G 7 0 G 6 G 2 G 5 0 G 3 + G 5 + G 8 G 8 G 3 0 G 6 G 8 G 4 + G 6 + G 8 G 4 G 1 G 2 G 3 G 4 G 1 + G 2 + G 3 + G 4
For R A D with node D grounded, we obtain after reduction to a 4 × 4 conductance matrix,
R A D = K ¯ 1 11 = N D ,
where,
N = ( G 2 + G 6 + G 7 ) ( G 3 + G 5 + G 8 ) ( G 1 + G 2 + G 3 + G 4 ) ( G 2 + G 6 + G 7 ) G 3 2 ( G 3 + G 5 + G 8 ) G 2 2 ,
and,
D = G 3 G 4 G 5 G 6 + G 3 G 4 G 7 G 6 + G 3 G 5 G 7 G 6 + G 4 G 5 G 7 G 6 + G 3 G 4 G 5 G 7 + G 8 G 3 + G 4 [ G 5 G 6 + G 5 + G 6 G 7 ] + G 2 G 4 + G 6 G 3 G 5 + G 3 + G 5 G 7 + G 2 G 8 [ G 5 G 3 + G 4 + G 6 + G 3 + G 4 + G 5 + G 6 G 7 ] + G 1 G 3 + G 5 G 4 G 6 + G 2 G 4 + G 6 + G 4 + G 6 G 7 + G 1 G 8 G 3 + G 4 + G 5 G 6 + G 2 G 3 + G 4 + G 5 + G 6 + G 3 + G 4 + G 5 + G 6 G 7 ,
which simplifies for equal resistors R i = R to,
R A D = 2 3 R .

3.4. The 3D Resistor Cube

The resistor cube in Figure 5 has 8 nodes and 12 edges. Traditional series-parallel reduction fails due to 3D symmetry. Our matrix method solves it systematically,

Step 1: Label nodes

1=A, 2=B, ..., 8=G.

Step 2: Build K

Each node connects to 3 others with conductance G = 1 / R ,
K i i = 3 G , K i j = G if i , j connected 0 otherwise

Step 3: Ground node G (node 8)

We Remove the 8th row and column.

Step 4: Solve

With current injection at A (node 1) and extraction at G,
R A G = ( K ¯ 1 ) 11 .

Result:

After symbolic or numerical computation and for identical resistors R i = R ,
R A G = 5 6 R .
This matches known results from symmetry arguments, but obtained systematically.

3.5. A Non-Planar Network: The Petersen Graph

A principal strength of the formulated matrix method is its universal applicability to any connected graph structure. Formally, a graph G = ( V , E ) is defined by a set of vertices V and a set of edges E connecting them [6,7]. The conductance matrix K constructed in Eq. 8 is precisely the weighted Laplacian matrix of this underlying graph [8], where edge weights are given by conductances G i j . Consequently, the algorithm for computing equivalent resistance is not limited to circuits drawn in a textbook; it provides a general solution for the resistance distance, a well-known metric in graph theory, between any two nodes in any weighted, undirected graph. This makes the method directly applicable to the analysis of celebrated and well-studied graph families such as the Petersen graph [9], complete graphs ( K n ), cycle graphs ( C n ), cubic graphs, and bipartite graphs ( K n , m ) [10]. The formalism thus bridges circuit theory and structural graph theory, offering a computational tool for problems in network science, chemistry such as analyzing fullerene graphs [11], and beyond.
The Petersen graph in Figure 6, presents a significant challenge for traditional circuit analysis methods. With 10 nodes and 15 edges, it is non-planar, that is, cannot be drawn in a plane without edge crossings, and lacks the symmetry or series/parallel combinations to be simplified. Moreover, Delta-wye transformations introduces more complexity than simplifications. In general, each resistor has an arbitrary value, eliminating symmetry-based approaches. The matrix method provides the only systematic approach for such networks.

Matrix Method Solution

  • Node labeling: Label nodes as A 0 , A 1 , , A 4 (outer pentagon) and B 0 , B 1 , , B 4 (inner pentagram).
  • Conductance matrix construction: The 10 × 10 conductance matrix K has,
    • Diagonal elements: K i i = j N ( i ) G i j where G i j = 1 / R i j
    • Off-diagonal elements: K i j = G i j if nodes i and j are connected, 0 otherwise
  • Grounding: To find R A 0 B 0 between nodes A 0 and B 0 , ground node B 0 ( V B 0 = 0 ).
  • Matrix reduction: Remove row and column corresponding to B 0 , obtaining 9 × 9 matrix K ¯ .
  • Solution: The equivalent resistance is,
    R A 0 B 0 = ( K ¯ 1 ) A 0 A 0 .

Symbolic Result:

For arbitrary resistors, the symbolic expression is extremely complex (over 100 terms even for this modest network). However, for equal resistors R i j = R , symmetry yields,
R A 0 B 0 = 2 5 R .
Algorithm 2 solves for the equivalent resistance in an arbitrary Petersen graph.
Algorithm 2:Solve Arbitrary Petersen Graph Resistance
Require: 
15 resistance values R 1 , R 2 , , R 15 for edges
Ensure: 
Equivalent resistance R A 0 B 0
1:
Define node connectivity: 10 nodes, 15 edges with specific connections
2:
Build 10 × 10 adjacency matrix A (1 if connected, 0 otherwise)
3:
Build resistance matrix R m a t with corresponding values
4:
Compute conductance matrix: G i j = 1 / R m a t , i j for connected nodes
5:
Build K : K i i = j G i j , K i j = G i j for i j
6:
K ¯ remove row/column for node B 0 from K
7:
K ¯ 1 invert( K ¯ )
8:
R A 0 B 0 ( K ¯ 1 ) A 0 A 0 (where A 0 is index 0)
9:
return R A 0 B 0

3.6. AC Network with RLC Elements

The network in Figure 7 contains both energy storage elements (inductor L 1 , capacitors C 1 , C 2 ) and dissipative elements (resistors R 1 , R 2 , R 3 ). In the AC regime at angular frequency ω , we use complex impedances,
Z ˜ R = R ( resistor ) , Z ˜ L = j ω L ( inductor ) and Z ˜ C = 1 j ω C ( capacitor )
where j = 1 . The corresponding complex admittances are Y ˜ = 1 / Z ˜ .

Matrix Formulation for AC:

The spring-resistor correspondence extends naturally to AC networks by replacing conductances with complex admittances,
  • Complex admittance matrix: For each element between nodes i and j, compute complex admittance Y ˜ i j = 1 / Z ˜ i j .
  • Complex stiffness matrix: Construct K ˜ with elements,
    K ˜ i j = k i Y ˜ i k if i = j Y ˜ i j if i j and connected 0 otherwise
  • Grounding: Ground node B, removing corresponding row/column to get K ¯ ˜ .
  • Complex solution: Solve K ¯ ˜ V ˜ = I ˜ where I ˜ A = 1 A (unit current source), I ˜ i = 0 for i A , B .
  • Equivalent impedance: Z ˜ A B = V ˜ A (since I ˜ A = 1 and V B = 0 ).

Symbolic Solution:

For the network in Figure 7, after grounding node B,
K ¯ ˜ = Y ˜ R 1 + Y ˜ C 2 Y ˜ R 1 0 Y ˜ C 2 Y ˜ R 1 Y ˜ R 1 + Y ˜ L 1 + Y ˜ R 2 Y ˜ R 2 Y ˜ L 1 0 Y ˜ R 2 Y ˜ R 2 + Y ˜ C 1 Y ˜ C 1 Y ˜ C 2 Y ˜ L 1 Y ˜ C 1 Y ˜ C 2 + Y ˜ L 1 + Y ˜ C 1 + Y ˜ R 3
where rows/columns correspond to nodes A, C, D, E.
The equivalent impedance is,
Z ˜ A B = ( K ¯ ˜ 1 ) 11 .
The circuit has five nodes: A, B, C, D, and E. Node B is chosen as the reference (ground). The independent nodes are A, C, D, and E. The admittances of the components at angular frequency ω are,
Y R 1 = G 1 = 1 R 1 , Y C 2 = j ω C 2 , Y L 1 = 1 j ω L 1 = j 1 ω L 1 , Y C 1 = j ω C 1 ,
Y R 2 = G 2 = 1 R 2 , Y R 3 = G 3 = 1 R 3 , Y R 4 = G 4 = 1 R 4 .
The admittance matrix Y for nodes A, C, D, E is,
Y = G 1 + j ω C 2 G 1 0 j ω C 2 G 1 G 1 + G 2 j ω L 1 G 2 j ω L 1 0 G 2 G 2 + G 4 + j ω C 1 j ω C 1 j ω C 2 j ω L 1 j ω C 1 G 3 + j ω ( C 1 + C 2 ) j ω L 1 .
The equivalent impedance between nodes A and B is given by,
Z ˜ A B ( ω ) = Y 1 11 = det ( Y 11 ) det ( Y ) ,
where Y 11 is the 3 × 3 submatrix obtained by deleting the first row and first column of Y ,
Y 11 = G 1 + G 2 j ω L 1 G 2 j ω L 1 G 2 G 2 + G 4 + j ω C 1 j ω C 1 j ω L 1 j ω C 1 G 3 + j ω ( C 1 + C 2 ) j ω L 1 .
The determinants det ( Y ) and det ( Y 11 ) are complex polynomials in ω . Their explicit expansions are,
det ( Y 11 ) = G 2 G 3 G 4 + C 1 L 1 ( G 3 + G 4 ) + j ω C 1 G 2 ( G 3 + G 4 ) 1 ω L 1 ( G 2 G 4 + G 3 G 4 + G 2 G 3 ) .
and
det ( Y ) = ( G 4 + G 3 ) [ 1 L 1 ( G 1 C 1 + G 2 C 2 ) ω 2 C 1 C 2 ( G 1 + G 2 ) + j ω G 1 G 2 ( C 1 + C 2 ) G 1 G 2 ω L 1 + ω C 1 C 2 L 1 ] .
These expressions provide a complete analytical solution for Z ˜ A B ( ω ) . For specific component values, the determinants can be evaluated numerically or symbolically to obtain the impedance as a function of frequency. The matrix method generalizes to any linear network containing resistors, capacitors, inductors, and linear dependent sources,

Complex Admittance Matrix:

For network with N nodes at frequency ω :
Y ˜ ( ω ) V ˜ ( ω ) = I ˜ ( ω )
where Y ˜ is the N × N complex admittance matrix, V ˜ is the node voltage vector, and I ˜ is the current injection vector.

Dependent Sources:

Voltage-controlled current sources (VCCS) with transconductance g m add terms to Y ˜ ,
Y ˜ i j Y ˜ i j + g m for VCCS I i = g m V j

Matrix Solution:

After grounding one node,
V ˜ red = Y ˜ red 1 I ˜ red

Equivalent Impedance:

Z ˜ eq ( ω ) = V a V b I = ( Y ˜ red 1 ) a a + ( Y ˜ red 1 ) b b 2 ( Y ˜ red 1 ) a b
These examples demonstrate that while traditional methods fail for complex or non-planar networks, the matrix approach provides a systematic solution. The extension to AC networks shows the method’s generality, introducing students to complex numbers and frequency-domain analysis in a unified framework.

4. Discussion and Conclusion

The spring-resistor analogy provides a powerful pedagogical bridge between mechanics and circuit theory. The matrix formulation offers a systematic computational approach for equivalent resistance that complements traditional methods [2]. Table 2 compares the matrix method to other well established circuit reduction methods, highlighting its unique position as a general-purpose, analytic and systematic technique that bridges physical intuition with mathematical formalism.
From a pedagogical perspective, the spring-resistor analogy offers several distinct advantages that make it particularly valuable for introductory circuit theory education [1]. Students who have already developed intuition about mechanical systems can leverage their understanding of forces and displacements to grasp the more abstract concepts of current flow and potential differences. This physical grounding makes electrical theory more concrete and accessible. The matrix formulation, while introducing computational complexity, provides a systematic framework that works uniformly for any resistor/impedance network, eliminating the need for the pattern recognition and cleverness often required by traditional methods. This consistency helps students develop confidence in tackling complex problems. Moreover, the analogy naturally extends to visualizing current as force flow and potential as displacement, fostering physical intuition about circuit behavior that complements the mathematical analysis. The method’s generality demonstrates the unity of mathematical approaches across disciplines, connecting circuit analysis to structural mechanics, heat transfer, and even social network theory, thereby broadening students’ appreciation for mathematical modeling [3].
However. while the matrix method introduces students to computational thinking and provides a unified analytical framework, it is important to acknowledge its inherent limitations [12]. The approach fundamentally assumes linear relationships in both domains, Ohm’s law for resistors and Hooke’s law for springs, which restricts its direct application to nonlinear circuit elements. Practical considerations include potential numerical instability in large networks, where the conductance matrix may become ill-conditioned, and the computational cost of matrix inversion, which scales as O ( N 3 ) and becomes inefficient for very large networks compared to sparse solvers. Despite these constraints, the method retains substantial value for pedagogical applications and moderate-sized networks, where its systematic nature and intuitive mechanical connection provide significant educational benefits.
The method presented in this work is particularly useful for analyzing complex networks that resist solution by traditional series-parallel reduction or symmetry arguments. Future work could explore applications to random resistor networks [13], percolation theory, and the development of interactive educational tools based on this analogy, further enhancing its pedagogical impact and extending its reach to more advanced topics in network analysis and computational modeling.

References

  1. Burde, J.P.; Weatherby, T.S.; Kronenberger, A. An Analogical Simulation for Teaching Electric Circuits: A Rationale for Use in Lower Secondary School. Physics Education 2021, 56, 055010. [Google Scholar] [CrossRef]
  2. Alexander, C.K.; Sadiku, M.N.O. Fundamentals of Electric Circuits, 6th ed.; McGraw-Hill, 2017. [Google Scholar]
  3. Klein, D.J.; Randić, M. Resistance Distance. Journal of Mathematical Chemistry 1993, 12, 81–95. [Google Scholar] [CrossRef]
  4. Woodson, H.H.; Melcher, J.R. Electromechanical Dynamics; Wiley, 1968. [Google Scholar]
  5. Desoer, C.A.; Kuh, E.S. Basic Circuit Theory; McGraw-Hill, 1969. [Google Scholar]
  6. Harary, F. Graph Theory; Addison-Wesley: Reading, MA, 1969. [Google Scholar]
  7. Diestel, R. Graph Theory, 5th ed.; Springer: Berlin, Heidelberg, 2017. [Google Scholar]
  8. Merris, R. Laplacian matrices of graphs: a survey. Linear Algebra and its Applications 1994, 197-198, 143–176. [Google Scholar] [CrossRef]
  9. Petersen, J. Sur le théorème de Tait. L’Intermédiaire des Mathématiciens 1898, 5, 225–227. [Google Scholar]
  10. Bollobás, B. Modern Graph Theory; Springer: New York, NY, 1998. [Google Scholar]
  11. Fowler, P.W.; Manolopoulos, D.E. An Atlas of Fullerenes. International Series of Monographs on Chemistry 1995, 30. [Google Scholar]
  12. Golub, G.H.; Loan, C.F.V. Matrix Computations, 4th ed.; Johns Hopkins University Press, 2013. [Google Scholar]
  13. Kirkpatrick, S. Percolation and Conduction. Reviews of Modern Physics 1973, 45, 574–588. [Google Scholar] [CrossRef]
Figure 1. Fundamental analogy between a single spring and a single resistor.
Figure 1. Fundamental analogy between a single spring and a single resistor.
Preprints 193245 g001
Figure 2. Two resistors in series.
Figure 2. Two resistors in series.
Preprints 193245 g002
Figure 3. Two resistors in parallel (nodes A=C and B=D are electrically same).
Figure 3. Two resistors in parallel (nodes A=C and B=D are electrically same).
Preprints 193245 g003
Figure 4. Square-Cross bridge circuit.
Figure 4. Square-Cross bridge circuit.
Preprints 193245 g004
Figure 5. 3D resistor cube: 12 identical resistors R on edges of a cube. Finding R A G (corner to opposite corner) is nontrivial with traditional methods.
Figure 5. 3D resistor cube: 12 identical resistors R on edges of a cube. Finding R A G (corner to opposite corner) is nontrivial with traditional methods.
Preprints 193245 g005
Figure 6. Petersen graph with 10 nodes and 15 edges. This non-planar graph cannot be simplified using series-parallel or delta-wye transformations. All 15 resistors have arbitrary values R 1 , R 2 , , R 15 .
Figure 6. Petersen graph with 10 nodes and 15 edges. This non-planar graph cannot be simplified using series-parallel or delta-wye transformations. All 15 resistors have arbitrary values R 1 , R 2 , , R 15 .
Preprints 193245 g006
Figure 7. AC network with resistors, inductors, and capacitors. The goal is to find the equivalent impedance Z ˜ A B ( ω ) between nodes A and B at angular frequency ω .
Figure 7. AC network with resistors, inductors, and capacitors. The goal is to find the equivalent impedance Z ˜ A B ( ω ) between nodes A and B at angular frequency ω .
Preprints 193245 g007
Table 1. Correspondence between mechanical and electrical quantities
Table 1. Correspondence between mechanical and electrical quantities
Mechanical System (Springs) Electrical System (Resistors)
Displacement x i of point i Electric potential V i at node i
Spring constant k i j Conductance G i j = 1 / R i j
Force F i j in spring i-j Current I i j through resistor i-j
Point mass (node) Circuit node
Static equilibrium: i F i j = 0 Kirchhoff’s Current Law: i I i j = 0
Relative displacement ( x j x i ) Potential difference ( V j V i )
External force on mass Current injection at node
Stiffness matrix K Conductance matrix K
Table 2. Comparison of resistance calculation methods
Table 2. Comparison of resistance calculation methods
Method Advantages Disadvantages
Series-Parallel Reduction Intuitive, quick for simple circuits Fails for complex networks (e.g., cube, bridges)
Delta-Wye Transformation Powerful for certain symmetric circuits Limited applicability, requires pattern recognition
Nodal-Mesh Analysis Systematic, taught in standard curriculum Requires solving linear equations manually
Spring-Conductance Matrix Method Systematic for any network, connects to mechanics, computationally friendly Requires matrix operations, singular matrix handling
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.
Prerpints.org logo

Preprints.org is a free preprint server supported by MDPI in Basel, Switzerland.

Subscribe

Disclaimer

Terms of Use

Privacy Policy

Privacy Settings

© 2026 MDPI (Basel, Switzerland) unless otherwise stated