forked from tsai/mathnet-numerics
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
5.2 KiB
139 lines
5.2 KiB
// <copyright file="Cubic.cs" company="Math.NET">
|
|
// Math.NET Numerics, part of the Math.NET Project
|
|
// http://numerics.mathdotnet.com
|
|
// http://github.com/mathnet/mathnet-numerics
|
|
// http://mathnetnumerics.codeplex.com
|
|
//
|
|
// Copyright (c) 2009-2014 Math.NET
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person
|
|
// obtaining a copy of this software and associated documentation
|
|
// files (the "Software"), to deal in the Software without
|
|
// restriction, including without limitation the rights to use,
|
|
// copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following
|
|
// conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
// </copyright>
|
|
|
|
using System;
|
|
|
|
#if !NOSYSNUMERICS
|
|
using Complex = System.Numerics.Complex;
|
|
#endif
|
|
|
|
namespace MathNet.Numerics.RootFinding
|
|
{
|
|
/// <summary>
|
|
/// Finds roots to the cubic equation x^3 + a2*x^2 + a1*x + a0 = 0
|
|
/// Implements the cubic formula in http://mathworld.wolfram.com/CubicFormula.html
|
|
/// </summary>
|
|
public static class Cubic
|
|
{
|
|
// D = Q^3 + R^2 is the polynomial discriminant.
|
|
// D > 0, 1 real root
|
|
// D = 0, 3 real roots, at least two are equal
|
|
// D < 0, 3 real and unequal roots
|
|
|
|
/// <summary>
|
|
/// Q and R are transformed variables.
|
|
/// </summary>
|
|
private static void QR(double a2, double a1, double a0, out double Q, out double R)
|
|
{
|
|
Q = (3 * a1 - a2 * a2)/9.0;
|
|
R = (9.0 * a2 * a1 - 27 * a0 - 2 * a2 * a2 * a2)/54.0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// n^(1/3) - work around a negative double raised to (1/3)
|
|
/// </summary>
|
|
private static double PowThird(double n)
|
|
{
|
|
return Math.Pow(Math.Abs(n), 1d / 3d) * Math.Sign(n);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Find all real-valued roots of the cubic equation a0 + a1*x + a2*x^2 + x^3 = 0.
|
|
/// Note the special coefficient order ascending by exponent (consistent with polynomials).
|
|
/// </summary>
|
|
public static Tuple<double, double, double> RealRoots(double a0, double a1, double a2)
|
|
{
|
|
double Q, R;
|
|
QR(a2, a1, a0, out Q, out R);
|
|
|
|
var Q3 = Q * Q * Q;
|
|
var D = Q3 + R * R;
|
|
var shift = -a2 / 3d;
|
|
|
|
double x1;
|
|
double x2 = double.NaN;
|
|
double x3 = double.NaN;
|
|
|
|
// when D >= 0, use eqn (54)-(56) where S and T are real
|
|
if (D >= 0)
|
|
{
|
|
double sqrtD = Math.Pow(D, 0.5);
|
|
double S = PowThird(R + sqrtD);
|
|
double T = PowThird(R - sqrtD);
|
|
x1 = shift + (S + T);
|
|
if (D == 0)
|
|
x2 = shift - S;
|
|
}
|
|
// 3 real roots, use eqn (70)-(73) to calculate the real roots
|
|
else
|
|
{
|
|
double theta = Math.Acos(R / Math.Sqrt(-Q3));
|
|
x1 = 2d * Math.Sqrt(-Q) * Math.Cos(theta / 3.0) + shift;
|
|
x2 = 2d * Math.Sqrt(-Q) * Math.Cos((theta + 2.0 * Constants.Pi) / 3d) + shift;
|
|
x3 = 2d * Math.Sqrt(-Q) * Math.Cos((theta - 2.0 * Constants.Pi) / 3d) + shift;
|
|
}
|
|
return new Tuple<double, double, double>(x1, x2, x3);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Find all three complex roots of the cubic equation d + c*x + b*x^2 + a*x^3 = 0.
|
|
/// Note the special coefficient order ascending by exponent (consistent with polynomials).
|
|
/// </summary>
|
|
public static Tuple<Complex, Complex, Complex> Roots(double d, double c, double b, double a)
|
|
{
|
|
double A = b*b - 3*a*c;
|
|
double B = 2*b*b*b - 9*a*b*c + 27*a*a*d;
|
|
double s = -1/(3*a);
|
|
|
|
double D = (B*B - 4*A*A*A)/(-27*a*a);
|
|
if (D == 0d)
|
|
{
|
|
if (A == 0d)
|
|
{
|
|
var u = new Complex(s*b, 0d);
|
|
return new Tuple<Complex, Complex, Complex>(u, u, u);
|
|
}
|
|
|
|
var v = new Complex((9*a*d - b*c)/(2*A), 0d);
|
|
var w = new Complex((4*a*b*c - 9*a*a*d - b*b*b)/(a*A), 0d);
|
|
return new Tuple<Complex, Complex, Complex>(v, v, w);
|
|
}
|
|
|
|
var C = (A == 0)
|
|
? new Complex(B, 0d).CubicRoots()
|
|
: ((B + Complex.Sqrt(B*B - 4*A*A*A))/2).CubicRoots();
|
|
|
|
return new Tuple<Complex, Complex, Complex>(
|
|
s*(b + C.Item1 + A/C.Item1),
|
|
s*(b + C.Item2 + A/C.Item2),
|
|
s*(b + C.Item3 + A/C.Item3));
|
|
}
|
|
}
|
|
}
|
|
|