To calculate conductance from resistance, divide 1 by the resistance value expressed in base ohms. The fundamental formula is G = 1 / R. Conductance (G) measures how easily electrical current flows through a component, making it the exact mathematical reciprocal of resistance (R), which measures how much a component opposes current flow. While resistance is the standard metric for physical component selection, conductance drastically simplifies the math for parallel circuit analysis and nodal matrix calculations.
The Core Formula and Symbol Definitions
The relationship between conductance and resistance is an inverse proportion. As resistance increases, conductance decreases. The primary formula is:
G = 1 / R
| Symbol | Parameter | SI Unit | Unit Abbreviation |
|---|---|---|---|
| G | Conductance | Siemens | S (formerly mho, ℧) |
| R | Resistance | Ohms | Ω |
When the Formula Applies and Its Assumptions
The formula G = 1 / R applies strictly under the following assumptions:
- Ohmic Linearity: The component must obey Ohm's Law, meaning the resistance is constant regardless of the applied voltage. This applies to standard carbon film, metal film, and wirewound resistors.
- Constant Temperature: Resistance changes with temperature (defined by the Temperature Coefficient of Resistance, or TCR). Conductance is only a static reciprocal if the thermal environment is stable. A 10Ω power resistor will have a lower conductance when hot than when cold.
- DC or Purely Resistive AC: This formula applies to DC circuits and AC circuits containing only resistors. If your AC circuit contains capacitors or inductors, you must calculate Admittance (Y = 1 / Z) using complex impedance (Z), not just scalar conductance.
- Non-Ohmic Devices: For diodes, transistors, and thermistors, static conductance (G = I / V) only gives a snapshot at one specific operating point. For small-signal AC analysis of these components, engineers use dynamic conductance (g = dI / dV), which is the derivative of the I-V curve.
Rearranged Forms for Circuit Analysis
Depending on the known variables in your circuit, you will need to rearrange the core formula. Here is the complete list of algebraic forms used in bench and SPICE analysis:
- Solving for Resistance: R = 1 / G
- Solving for Conductance (via Ohm's Law): Since I = V / R and G = 1 / R, then G = I / V
- Solving for Current: I = V × G (Highly useful in nodal analysis to avoid division)
- Power via Conductance: P = V2 × G
- Power via Resistance: P = I2 / G
In SPICE simulation and manual nodal analysis, we use I = V × G instead of I = V / R. Multiplying by conductance allows us to build a linear matrix of linear equations (Gv = i) without introducing non-linear division operators into the matrix algebra. See the MIT OpenCourseWare Circuits and Electronics materials for deep-dives into nodal matrix construction.
Worked Examples with Strict Unit Tracking
The most common point of failure in conductance calculations is mishandling metric prefixes. You must always convert to base units (Ohms and Siemens) before inverting, then convert back to engineering notation.
Problem 1: Basic Conversion of a Standard Resistor
Given: A standard metal film resistor with a measured resistance of R = 4.7 kΩ.
Find: The conductance G in millisiemens (mS) and microsiemens (µS).
- Convert to base units:
4.7 kΩ = 4.7 × 103 Ω = 4700 Ω - Apply the core formula:
G = 1 / 4700 Ω - Calculate the base result:
G = 0.0002127659 S - Convert to engineering notation (mS):
0.0002127659 S × (103 mS / 1 S) = 0.213 mS - Convert to engineering notation (µS):
0.0002127659 S × (106 µS / 1 S) = 212.8 µS
Problem 2: Summing Parallel Resistors Using Conductance
Given: Three resistors in parallel: R1 = 100 Ω, R2 = 200 Ω, R3 = 50 Ω.
Find: Total conductance (Gtotal) and equivalent resistance (Req).
- Calculate individual conductances:
G1 = 1 / 100 Ω = 0.01 S
G2 = 1 / 200 Ω = 0.005 S
G3 = 1 / 50 Ω = 0.02 S - Sum the conductances (Parallel conductances add directly):
Gtotal = G1 + G2 + G3
Gtotal = 0.01 S + 0.005 S + 0.02 S = 0.035 S - Invert to find equivalent resistance:
Req = 1 / Gtotal
Req = 1 / 0.035 S = 28.57 Ω
Note: The traditional product-over-sum formula (Req = (R1 × R2) / (R1 + R2)) only works for two resistors. Conductance addition works for any number of parallel branches, making it vastly superior for complex networks.
Realistic Magnitudes and Unit Mistakes That Break the Math
Understanding what a 'normal' answer looks like prevents silent calculation errors. In practical electronics, you rarely deal with whole Siemens unless you are measuring busbars, PCB ground planes, or heavy-gauge wire.
| Component / Scenario | Typical Resistance | Resulting Conductance |
|---|---|---|
| Heavy Copper Busbar | 0.001 Ω (1 mΩ) | 1000 S |
| Standard Pull-down Resistor | 10 kΩ | 0.1 mS (100 µS) |
| High-Impedance Sensor Bias | 1 MΩ | 1 µS |
| Fiberglass PCB Substrate (Leakage) | 100 GΩ | 0.01 nS (10 pS) |
The 'Prefix Trap' Unit Mistakes
The most frequent error that breaks conductance math is failing to invert the metric prefix alongside the number. According to the NIST Guide to the SI, the prefix is part of the unit and must be resolved to base units before mathematical inversion.
- The Mistake: Calculating 1 / 2 kΩ and writing the answer as 0.5 S.
- The Reality: 1 / (2 × 103) = 0.0005 S, which is 0.5 mS, not 0.5 S. The reciprocal of kilo (103) is milli (10-3).
- The Mistake: Calculating 1 / 5 MΩ and writing 0.2 S.
- The Reality: 1 / (5 × 106) = 0.2 µS. The reciprocal of Mega (106) is micro (10-6).
Legacy Note: If you are reading schematics or textbooks printed before 1971, conductance was measured in 'mhos' and represented by an upside-down Omega symbol (℧). 1 mho is exactly equal to 1 Siemens. The Electronics Tutorials archive maintains excellent references on legacy component notation.
Decision Path: When to Use Conductance vs. Resistance
Use this decision tree to determine which metric to use for your specific engineering task. Do not mix them in the same equation block.
| If your task involves... | Then use... | Why? |
|---|---|---|
| Selecting physical components from a distributor (DigiKey, Mouser) | Resistance (Ω) | Resistors are manufactured, binned, and sold by their resistance value, not conductance. |
| Analyzing series circuits | Resistance (Ω) | Series resistances add directly (Rtotal = R1 + R2). Using conductance here requires messy reciprocal sums. |
| Measuring with a handheld multimeter | Resistance (Ω) | Multimeters inject a known current and measure voltage drop, displaying the result directly in Ohms. |
| Summing 3 or more parallel branches | Conductance (S) | Parallel conductances add directly (Gtotal = G1 + G2 + G3), bypassing the limitations of the product-over-sum rule. |
| Writing SPICE netlists or solving Nodal Matrices | Conductance (S) | Nodal analysis relies on linear matrices (Gv = i). Multiplication by G keeps the matrix linear; division by R complicates the algebra. |
| Calculating leakage current across insulation | Conductance (S) | Leakage paths act as parallel high-value resistors. Summing their microsiemens values yields total leakage directly. |
For physical component selection, series wiring, and general multimeter troubleshooting on the bench, default strictly to Resistance (Ohms). Only switch your math to Conductance (Siemens) when you are summing more than two parallel branches, calculating PCB leakage paths, or building nodal analysis matrices for SPICE simulation. When in doubt, stick to Ohms.






