Complex Computations, Add, Subtract, etc.


To add two complex numbers x = x.r + i * x.i and y = y.r + i * y.i,

x + y = (x.r + y.r) + i * (x.i + y.i) = {x.r + y.r, x.i + y.i}

where {x.r + y.r, x.i + y.i} is the 2-dimensional vector equivalent.

To subtract:

x − y = {x.r − y.r, x.i − y.i}

To multiply:

x*y = {x.r*y.r − x.i*y.i, x.r*y.i + x.i*y.r}

To divide:

x/y = {(x.r*y.r + x.i*y.i)/y2, (x.i*y.r − x.r*y.i)/y2}
where y2 = y.r^2 + y.i^2 and y != 0.

Return to Complex Computations
Return to Harry's Home Page


This page accessed times since January 5, 2006.
Page created by: [email protected]
Changes last made on Wednesday, 15-Feb-06 20:51:56 PST

Hosted by www.Geocities.ws

1