SolveEqD: Solve 2nd/3rd degree equation

title   : SolveEqD
version : 1.1
date    : Mar 11, 2000
language: Borland Delphi 3.0
usage   : Windows 95/NT application
author  : J R Ferguson
e-mail  : j.r.ferguson@iname.com
download: http://hello.to/ferguson

This program  and its sources may be copied and used freely without charge,
but only for non commercial purposes. In no way the author can be held res-
ponsible  to  any  damage or loss of data that may be caused by the use of
this software.

To compile this program,  you will need a unit called NumLib, which is part
of the jrfpas Pascal routine library which can be found at the author's web
site http://hello.to/ferguson.


With this program you can solve a mathematical equation of the second degree:

  a x^2 + b x + c = 0

and also one of the third degree:

  a x^3 + b x^2 + c x + d = 0

where a, b, c and d are real coefficients.

The program finds both real and complex roots x, with a precision of up to
18 digits.


History:
v1.1 Mar 11,2000
- Language switch Dutch/English
v1.0 Feb 20,2000
- First release
