IMDIV


Returns the result of dividing one complex number by another.

Syntax:

IMDIV(complexnum1, complexnum2)


complexnum1 and complexnum2 are text representing complex numbers, for example as a+bi or a+bj.

IMDIV returns complexnum1/complexnum2 as text.

Example:

IMDIV("9+8i", "1+2i")

returns 5-2i as text.


Application:

An application of the IMDIV function can be found in electrical engineering, specifically when dealing with AC circuits. In these circuits, components like resistors, capacitors, and inductors have a property called impedance, which is the total opposition to the flow of alternating current. Impedance is represented by a complex number, where the real part is the resistance and the imaginary part is the reactance (the opposition from capacitors and inductors).


A common calculation in AC circuits is finding the total impedance of components connected in parallel. For two impedances, Z1​ and Z2​, in parallel, the total impedance Ztotal​ is calculated using the following formula:



This formula can also be expressed as:



Let's say we have a circuit with two components in parallel:

  • Component 1: A resistor with impedance Z1​=50+0j Ω.
  • Component 2: An inductor with impedance Z2​=0+20j Ω.


To find the total impedance of this parallel circuit, we need to perform complex number multiplication and division.


Here is an example of how you would use the IMDIV function to solve this problem:

Value

Description

A
B
1
50+0i

Impedance of Component 1 (Z1)

2
0+20i

Impedance of Component 2 (Z2)

3
IMPRODUCT(A1, A2)

Numerator: Z1 * Z2

4
IMSUM(A1, A2)

Denominator: Z1 + Z2

5
IMDIV(A3, A4)

Total Impedance: (Z1 * Z2)/Z1 + Z2)


In this example, the result in cell A5, which is the total impedance of the parallel circuit, would be approximately 8+20i.

The IMDIV function takes two complex numbers as arguments and returns their quotient, simplifying what would be a tedious manual calculation involving complex conjugates. This makes it a valuable tool for engineers and students working with AC circuit analysis.





This page is protected by Google reCAPTCHA. Privacy - Terms.
 
Built using Zapof