Click here to Skip to main content
15,884,177 members
Articles / Programming Languages / C#
Article

A C# Class for Complex Polynomials

Rate me:
Please Sign up or sign in to vote.
3.76/5 (14 votes)
3 Jul 2007CPOL2 min read 83K   2.4K   38   21
A C# class for complex polynomials providing polynomial arithmetics, differentiation and integration

Introduction

PolyLib is a C# class library providing basic polynomial arithmetics such as addition, multiplication and exponentiation, differentiation and integration, computation of the complex roots of a polynomial, factorization and evaluation at a complex point.

Background

Polynomials such as...

p(x) = 1 + x^2 + 2*x^3

... are a common thing, I hope. For an introduction to complex numbers, read the last chapter of the documentation of the C# Matrix Library (look for CSML on CodeProject).

Using the Code

There are, as for any open source library, two basic concepts of using PolyLib: Either you add PolyLib.dll to your project as reference and type...

C#
using PolyLib; 

... at the beginning of the class in which you want to use polynomials; or you just add the files Polynomial.cs and Complex.cs as existing items to your project and adjust the namespace at the head of these classes.

Initializing a polynomial is easy:

C#
// init p(x) = 1 + x^2 + 2+x^3
Polynomial p = new Polynomial(1, 0, 1, 2);

Now we compute the roots of p:

C#
Complex[] roots = p.Roots(); // compute roots of p

Do we need the derivative?

C#
Polynomial p1 = Polynomial.Derivative(p); // p1(x) = p'(x)

Output is intuitive as well (assuming we have a textbox txtOut):

C#
txtOut.Text = p.ToString();

Points of Interest

I said it was easy, didn't I? The structure of polynomials is not complicated, and this is reflected by the simplicity of this class. Most of the work lies within the method Roots(), which forced the implementation of complex numbers.

You can also factorize a polynomial using Roots(); a structure for factorized polynomials is implemented. Of course you can again expand the factorized polynomial, but the inherent inaccuracy of floating point arithmetics becomes visible that way. Evaluation at a point is therefore possible for both (expanded) polynomials and factorized polynomials.

I issued the complex numbers class library on CodeProject as a single project as well (look for CompLib). Another library using Complex.cs is CSML, the C# Matrix Library, where I tried to port some of Matlabs functionality to C# .NET (also on CodeProject). This project is growing quickly, now consisting of almost a hundred methods for numerical linear algebra and matrix manipulation.

In future, I will try to merge PolyLib with CSML to an even more powerful class library, where matrix computation with matrices of polynomials will be possible.

History

Update July 4, 2007

  • Constructors adjusted (see Leppies comment below)

Update July 3, 2007

  • Major bug in Arg() fixed (thanks Petr Stanislav!); this affected Log(), Pow() and Sqrt()

Upload July 3, 2007

  • Uploaded PolyLib with basic functionality; no complaints so far

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Yes, yes... Pin
Steve Hansen3-Jul-07 23:07
Steve Hansen3-Jul-07 23:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.