The IMPRODUCT function in Google Sheets returns the result of multiplying a series of complex numbers together.
Parameters
factor1: The first complex number or range to include in the product.factor2, ...: [Optional] Additional complex numbers or ranges to include in the product.
Step-by-Step Tutorial
-
Using
IMPRODUCTwith individual complex numbers:- Example:
=IMPRODUCT(2+3i, 4+5i) - Result:
(2+3i) * (4+5i) = (-7+22i)
- Example:
-
Using
IMPRODUCTwith a range of cells:- Example: If
A1:A3has the complex numbers(2+3i), (4+5i), (-1-2i), then=IMPRODUCT(A1:A3)will return(2+3i) * (4+5i) * (-1-2i) = (50-29i).
- Example: If
Working with a Single Value, a List, and a Range
IMPRODUCT accepts complex numbers one at a time, as a comma-separated list, or as a range — mix and match freely.
- Single value:
=IMPRODUCT(A1)— just returns the complex number inA1. - List of values:
=IMPRODUCT(A1, A2)— multiplies each cell individually. IfA1is1+1iandA2is2+0i, the result is2+2i. - Range:
=IMPRODUCT(A1:A3)— multiplies every complex number in the range. IfA1:A3holds1+1i, 2+0i, 1-1i, the result is4. - Mixed:
=IMPRODUCT(A1, A3:A4)— you can combine single cells and ranges in one call.
Use Cases and Scenarios
- Electrical Engineering: Calculate the product of impedance values in a circuit.
- Signal Processing: Multiply complex numbers to analyze signal characteristics.
- Financial Analysis: Perform complex number operations in financial models.
Related Functions
None.
Related Articles
None.