What if we had more than two resistors in parallel?
First, let's make a quick note about finding the resistance of circuits in series.
The total resistance of resistors in a series is simply the sum of their resistances.
RΞ£nβ=i=1βnβ=R1β+R2β+R3β+β―+Rnββ
So as long a the resistors are part of a path, they can be seen as one big resistor.
I could also probably go over Ohm's Law (
R=V/I
or
V=IR
where
V
is voltage in volts,
I
is the electrical current in amperes, and
R
is the resistance in ohms), but I don't want to do that. Maybe in another article.
This article is about parallel resistors.
Suppose we have three resistors in parallel.
RΞ£3β1ββ=R1β1β+R2β1β+R3β1ββ
We can use the formula for two resistors in parallel, but we would need to add a third resistor.
We now have a formula we can use to find the resistance of three resistors in parallel.
What if we have four resistors in parallel? We can use the formula from our three parallel resistor example and use it to find a formula for four parallel resistors.
Right now, you are probably think to yourself "Ugh! That's a lot of things I can't track" or "My head hurts from looking at this!"
This is why when formulas like this get this complicated I like to shift towards Sigma (
Ξ£
) and Pi (
Ξ
) notations for for series of sums and products.
The basic concepts of these notations is to avoid having to write things over and over. Let's say we wanted to find the sum of numbers 1 through 4.
i=1β4βi=1+2+3+4=10β
Factorial (
n!
) is just a prettier way to write the product of a series of numbers starting at 1.
4!=i=1β4βi=1β 2β 3β 4=24β
But we can use
Ξ£
and
Ξ
at different starting and ending points.
The denominators will require a bit more understanding. Each item in the denominator is the numerator divided by one term to cancel out one of the factors in a term.
But writing this is problematic. Nobody wants to write all that stuff I just wrote when they can use a
Ξ
notation to indicate that when we multiply by all our factors, we can skip
Rjβ
. That's where this neat little hack comes in.
vjββ=jξ =iββRjββ
Basically we say here "skip
j
if it is equal to
i
because
j
should not equal
i
".
This is important because keep in mind, our denominator is the sum of products. Microsoft Excel geeks might now about the SUMPRODUCT function which acts as a filter add only matching items. With
βjξ =iβ
, we basically added a filter to exclude multiplying
Rjβ
when
j=i
.
There is a reason I put that subscripted
j
next to
v
. Its because we need the denominator (
v
) to be the sum of each
vjβ
of which each
vjβ
is the product of all the resistors (
u
) except when
j=i
.
Confused? Think of this as having two for loops. In the following code sample, our initial sum is zero and our initial product is one. Starting with a sum of one would throw our answer off by one, and starting with a product of zero would mean all the products are zero. We can't have that. I've opted to shift our product index by one because arrays in JavaScript start a zero, but our math examples start at one.
letr={1.5,1.5,4,4};// each resister with values in ohmsfunctiondenominator(r){letsum=0;for(leti=1;i<=n;i++){// sigma sumletproduct=1;for(letj=1;j<=n;j++){// pi productif(i===j)continue;// if i equals j, skip this stepproduct*=r[j-1];}sum+=product;}returnsum;}console.log(denominator(r));// => 66
There's probably a more modern way to do this with JavaScript with the Array class's filter() or reduce() functions, but we still have to include our numerator in the formula!
For those wonder, here's what the code would be for the numerator.
But I didn't spend about a hour writing thsi just to show you this.
Remember last post where we wanted to find the rates of change in a resistor? There's a reason I used
u
and
v
in this example, because we're not done yet! We want to find the derivative of
RΞ£nβ
.
Get the ibuprofen handy, because I'm going to make your head hurt.
Because
RΞ£nβ
is the quotient of two values, so will our
RΞ£nβ²β
. Which means, we will need to break out the the quotient rule.
You know what, let's drop the
(t)
's. I know they are important to remind ourselves that we are working with functions with respect to time, and there are many ways to write your notation. But Team Lagrange for the win.
OK, so that was our formula for two resistors in parallel. What about three? The numerator is easy to figure out. The product rule indicates that one of the values in each term is the first derivative. The denominator will require the sum rule and the product rule.
For brevity, I decided not to include some of my work because there was a lot of F.O.I.L. and cancelling. You can expect the same when I work on four factors in a bit. The point here is to find patterns.
That took me over an hour to write, not including the stuff I cut out for clarity.
So what can we learn from this? Firstly, we don't need to expand the denominator. Just don't. It's a lot of busy work. In fact, I won't be expanding the denominator in or four parallel resistor example or in the
n
th example. So lets assume that in any first derivative, of
RΞ£nβ
, the denominator is as follows
We can see that the terms in the numerator for
RΞ£2β
are multiplied by
[R3β]2
. If we group our numerator terms together, we see that each numerator term is a denominator term multiplied by the derivative of a resistor. We will need to prove this in our four parallel resistor example to validate our generalization.
See how complex this is. Fortunately, we can see our pattern.
With every new factor, for each product term, at least one of the factors is derived while the others are squared. With this information, we can generalize the numerator. Let's start with how to describe each term
[uiβ]β²β=Riβ²βjξ =iββ[Rjβ]2β
Each subterm is the product of the derivative multiplied by the squares of the other factors except when
j=i
We can also describe the sum of these subterms. This will describe our numerator.
I wanted to interpret the derived formula into code, but I just don't have the energy left after having figure out all the terms for four resistors in parallel. Maybe in a future post. Stay tuned.