Extreme Optimization™: Complexity made simple.

Numerical Components
for .NET

  • Home
  • Features
    • Math Library
    • Vector and Matrix Library
    • Statistics Library
    • Performance
    • Usability
  • Documentation
    • Introduction
    • Math Library User's Guide
    • Vector and Matrix Library User's Guide
    • Statistics Library User's Guide
    • Reference
  • Resources
    • Downloads
    • QuickStart Samples
    • Sample Applications
    • Frequently Asked Questions
    • Technical Support
  • Blog
  • Order
  • Company
    • About us
    • Testimonials
    • Customers
    • Press Releases
    • Careers
    • Contact us
Introduction
Deployment Guide
Using Parallelism
Expand Mathematics Library User's GuideMathematics Library User's Guide
Expand Vector and Matrix Library User's GuideVector and Matrix Library User's Guide
Expand Statistics Library User's GuideStatistics Library User's Guide
Expand ReferenceReference
  • Home
    • Features
    • Solutions
    • Documentation
    • QuickStart Samples
    • Sample Applications
    • Downloads
    • Technical Support
    • Download trial
    • How to buy
    • Blog
    • Company
    • Resources
  • Documentation
    • Introduction
    • Deployment Guide
    • Using Parallelism
    • Mathematics Library User's Guide
    • Vector and Matrix Library User's Guide
    • Statistics Library User's Guide
    • Reference
  • Mathematics Library User's Guide
    • General Classes
    • Mathematical Functions
    • Complex Numbers
    • Arbitrary Precision Arithmetic
    • Automatic Differentiation
    • Curves
    • Curve Fitting
    • Solving Equations
    • Optimization
    • Calculus
    • Fast Fourier Transforms
    • Generic Arithmetic
    • Appendices
  • Complex Numbers
Collapse image Expand Image Copy image CopyHover image
         




Complex Numbers

Complex numbers arise in algebra in the solution of quadratic equations. The equation x2 = 1 does not have any real solutions. However, if we define a new number, i as the square root of -1, then we have two solutions: i and -i. This, in turn, gives rise to an entirely new class of numbers of the form a + ib with a and b real, and i defined as above. These are the complex numbers.

The Extreme Optimization Mathematics Library for .NET provides value types for single and double precision complex numbers. The DoubleComplex value type represents double-precision complex numbers. Value types are implemented using structures.

Constructing complex numbers

The DoubleComplex structure has three constructors.

The first constructor takes two arguments: the real and imaginary parts of the complex number.

C#  Copy imageCopy
DoubleComplex a = new DoubleComplex(2, 4);
Visual Basic  Copy imageCopy
Dim a As DoubleComplex = New DoubleComplex(2, 4)

The second constructor takes one real argument. It constructs a complex number whose imaginary part is zero.

C#  Copy imageCopy
DoubleComplex b = new DoubleComplex(-3);
Visual Basic  Copy imageCopy
Dim b As DoubleComplex = New DoubleComplex(-3)

The third constructor takes three arguments: two real numbers and a boolean parameter named polar. If polar is true, the first two arguments are treated as the modulus and argument of the complex number. If polar is false, the first two arguments are treated as the real and imaginary part of the complex number.

C#  Copy imageCopy
DoubleComplex c = new DoubleComplex(2, Constants.Pi/3, true);
Visual Basic  Copy imageCopy
Dim c As DoubleComplex = New DoubleComplex(2, Constants.Pi/3, True)

Finally, the static RootOfUnity(Int32, Int32) method constructs a complex number that is one of the solutions to the equation xn = 1. The solutions to this equation are n complex numbers spaced equally on the unit circle. The first parameter of the method is the degree, n, of the root. The second parameter is the index of the root in the series, counting counter-clockwise on the unit circle. An index of 0 corresponds to the root x = 1.

Complex constants

The complex structure provides several constants for commonly used and special complex numbers. These are listed in the following table:

Complex number constants

Field

Description

I

The number i, the square root of 1.

Zero

DoubleComplex zero: 0 + 0i.

One

DoubleComplex one: 1 + 0i.

Infinity

DoubleComplex infinity.

NaN

DoubleComplex Not-a-Number.

Two values in the above list deserve special attention. The Infinity field represents complex infinity. It is the result of dividing any non-zero complex number by zero.DoubleComplexinfinity does not have a sign. Because the complex numbers do not have a natural ordering, is does not make sense to speak of positive or negative numbers. Directed infinities, where the modulus of the complex number is infinite, but its argument is not, are not supported. The static IsInfinity(DoubleComplex) method verifies whether a complex number equals DoubleComplex.Infinity .

The NaN field represents complex Not-a-Number. It is a special value that is the result of dividing zero by zero.The static IsNaN(DoubleComplex) method verifies whether a complex number equals DoubleComplex.NaN. You can not use the equality operator for this purpose, as it always returns false.

Working with complex numbers

Working with complex numbers is easy. The Re property gets the real component of the complex number, while Im gets the imaginary part. The Modulus property returns the square root of the sum of the squares of the real and imaginary components. The Argument property returns the angle between the positive real axis and a line from the origin to the complex number, measured counter-clockwise.

The modulus is computed every time the Modulus property is called. The same is true for the Argument property. If you use these values multiple times, you should consider caching them in a variable.

Details of complex arithmetic

When performing binary operations, if one of the operands is a DoubleComplex, then the other operand is required to be an integral type or a floating-point type (Double or Single) or a complex type (DoubleComplex). Prior to performing the operation, if the other operand is not a DoubleComplex, it is converted to DoubleComplex, and the operation is performed using at least DoubleComplex range and precision. If the operation produces a numerical result, the type of the result is DoubleComplex. Exceptions to this are methods that return a real property of a number: Argument, Modulus, ModulusSquared and Abs(DoubleComplex). In these cases, the return type is Double.

The Extreme Optimization Mathematics Library for .NET extends the IEEE-754 standard definition of NaN's for real numbers to complex numbers as follows.

The floating-point operators, including the assignment operators, do not throw exceptions. Instead, in exceptional situations, the result of a floating-point operation is zero, Infinity, or NaN, as described below:

  • If the result of a complex floating-point operation is too small for the destination format, the result of the operation is zero.
  • If the magnitude of the complex result of a floating-point operation is too large for the destination format, the result of the operation is DoubleComplex.Infinity.
  • If a complex floating-point operation on complex numbers is invalid, the result of the operation is DoubleComplex.NaN.
  • If one or both operands of a complex floating-point operation are NaN (real or complex), the result of the operation is DoubleComplex.NaN.

Arithmetic operations

The Extreme Optimization Mathematics Library for .NET provides methods for all basic arithmetic operators on complex numbers. Most contain special versions for cases where one of the operands is real. Overloaded versions of the arithmetic operators are provided for languages that support them. For languages that don't support operator overloading, equivalent static (Shared in Visual Basic) methods are supplied.

For example, here is some C# code:

[C#] DoubleComplexa = DoubleComplex(1, 2); DoubleComplexb = DoubleComplex(-3, 4); DoubleComplexc = 2 - 1 / (a + b);

and here is the equivalent Visual Basic.NET code:

[Visual Basic] a DoubleComplex= DoubleComplex(1, 2) b DoubleComplex= DoubleComplex(-3, 4) c DoubleComplex= _ DoubleComplex.Subtract(2, DoubleComplex.Divide(1, DoubleComplex.Add(a, b)))

Specific to complex numbers is the static Conjugate()()()() method. This method returns the conjugate of a complex number, leaving the original unchanged.

Complex number operators and their static (Shared) method equivalents

Operator

Static method equivalent

Description

+z

(no equivalent)

Returns the complex number z.

-z

Negate(DoubleComplex)

Returns the negation of the complex number z.

z1 + z2

DoubleComplex.Add(z1, z2)

Adds the complex numbers z1 and z2.

z + a

DoubleComplex.Add(z, a)

Adds the complex number z and the real number a.

a + z

DoubleComplex.Add(a, z)

Adds the real number a to the complex number z.

z++

(no equivalent)

Increments the complex number z by one.

z1 - z2

DoubleComplex.Subtract(z1, z2)

Subtracts the complex numbers z1 and z2.

z - a

DoubleComplex.Subtract(z, a)

Subtracts the real number a from the complex number z.

a - z

DoubleComplex.Subtract(a, z)

Subtracts the complex number z from the real number a.

z--

(no equivalent)

Decrements the complex number z by one.

z1 * z2

DoubleComplex.Multiply(z1, z2)

Multiplies the complex numbers z1 and z2.

z * a

DoubleComplex.Multiply(z, a)

Multiplies the complex number z and the real number a.

a * z

DoubleComplex.Multiply(a, z)

Multiplies the real number a and the complex number z.

z1 / z2

DoubleComplex.Divide(z1, z2)

Divides the complex number z1 by z2.

z / a

DoubleComplex.Divide(z, a)

Divides the complex number z by the real number a.

a / z

DoubleComplex.Divide(a, z)

Divides the real number a by the complex number z.

~z

Conjugate()()()()

Returns the complex conjugate of the complex number z.

There is one other static method that does not have an operator equivalent. The ConjugateMultiply method returns the product of the conjugate of the first argument and the second argument.

Because the complex numbers don't have a natural ordering, only equality and inequality operators are available. No other comparison operators are available.

Functions of complex numbers

TheDoubleComplextype defines static methods for the most common mathematical functions of complex numbers, including: logarithmic, exponential, trigonometric and hyperbolic functions.

Some functions of real numbers have a limited domain when the result is restricted to be real, but are defined for all real numbers if the result can be complex. Examples of this are the inverse sine and cosine, which are real only for arguments between -1 and +1. TheDoubleComplextype defines methods that extend these functions to return a complex result.

These functions are often discontinuous along the part of the real axis where they are complex-valued. Which of the two limit values is chosen is arbitrary. However, the most consistent choice is the one that preserves any symmetry or anti-symmetry about the origin. For example, the function Arcsin(x) satisfies Arcsin(-x) = -Arcsin(x) when x is within [-1, 1]. The Arcsin method with real argument also satisfies this identity.

Most elementary functions have been extended to cover the entire complex plane. Once again, many of them are multi-valued, and a suitable choice has to be made regarding which of the two possible limit values is returned. The choice is made easier by the fact that the discontinuities lie along the real or imaginary axis. This makes it possible to distinguish between the 'limit from above' and the 'limit from below' by using the value of negative zero for the limit from below. The situation is somewhat simplified by the fact that any analytic function satisfies the identity f(conj(z) = conj(f(z)).

The tables below summarize these methods, and their meaning. Special functions with complex argument may be available from the Extreme.Mathematics.Special namespace.

Logarithmic and exponential functions of complex numbers.

Method

Description

Exp(DoubleComplex)

The number E raised to the complex power z.

ExpI(Double)

The number E raised to I times the real number a.

RootOfUnity(Int32, Int32)

The number E raised to I times TwoPi*i/n.

Sqrt(DoubleComplex)

The first square root of the complex number number z.

Sqrt(Double)

The first square root of the real number number a, which may be negative.

Pow(DoubleComplex, DoubleComplex)

The complex number z1 raised to the complex power z2.

Pow(DoubleComplex, Double)

The complex number z raised to the real power a.

Pow(DoubleComplex, Int32)

The complex number z raised to the integer power n.

Log(DoubleComplex)

Natural logarithm of the complex number z.

Log(DoubleComplex, DoubleComplex)

Base z1 logarithm of the complex number z2.

Log10(DoubleComplex)

Base 10 (common) logarithm of the complex number z.

Trigonometric functions of complex numbers

Method

Description

Sin(DoubleComplex)

Sine of the complex number z.

Cos(DoubleComplex)

Cosine of the complex number z.

Tan(DoubleComplex)

Tangent of the complex number z.

Asin(DoubleComplex)

Inverse sine of the complex number z.

Asin(Double)

Inverse sine of the real number a.

Acos(DoubleComplex)

Inverse cosine of the complex number z.

Acos(Double)

Inverse cosine of the real number a.

Atan(DoubleComplex)

Inverse tangent of the complex number z.

Hyperbolic functions of complex numbers

Method

Description

Sinh(DoubleComplex)

Hyperbolic sine of the complex number z.

Cosh(DoubleComplex)

Hyperbolic cosine of the complex number z.

Tanh(DoubleComplex)

Hyperbolic tangent of the complex number z.

Asinh(DoubleComplex)

Inverse hyperbolic sine of the complex number z.

Acosh(DoubleComplex)

Inverse hyperbolic cosine of the complex number z.

Atanh(DoubleComplex)

Inverse hyperbolic tangent of the complex number z.

Send comments on this topic to support@extremeoptimization.com

Copyright (c) 2004-2011 ExoAnalytics Inc.

Copyright © 2003-2013, Extreme Optimization. All rights reserved.
Extreme Optimization, Complexity made simple, M#, and M Sharp are trademarks of ExoAnalytics Inc.
Microsoft, Visual C#, Visual Basic, Visual Studio, Visual Studio.NET, and the Optimized for Visual Studio logo
are registered trademarks of Microsoft Corporation.