- What's the difference between 'i' and 'j' notation for complex numbers?
- In mathematics, 'i' represents √−1; in electrical engineering, 'j' is used to avoid confusion with electrical current (I). COMPLEX defaults to 'i' but supports 'j' for domain-specific work. Both formats are mathematically equivalent—choose based on your application's standard.
- Can I use negative numbers in COMPLEX?
- Yes. Negative real or imaginary components work directly: =COMPLEX(−3, 5) returns '−3+5i', and =COMPLEX(2, −7) returns '2−7i'. COMPLEX handles all real numbers, positive, negative, and zero without special handling.
- How do I calculate with complex numbers after using COMPLEX?
- COMPLEX creates formatted text, not a computational complex type. Extract components using IMREAL() and IMAGINARY(), perform arithmetic on those values separately, then reconstruct with COMPLEX if needed. For advanced complex arithmetic, consider external tools like Python scipy or MATLAB.
- Why would I use COMPLEX in spreadsheets if it doesn't calculate?
- COMPLEX is invaluable for data export, technical documentation, and importing into specialized math software that expects standard complex notation. It ensures precise formatting and bridges spreadsheets with engineering and scientific workflows that require complex number interchange.