forked from tsai/mathnet-numerics
8 changed files with 253 additions and 59 deletions
@ -0,0 +1,94 @@ |
|||
// <copyright file="NewtonRaphson.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-2013 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; |
|||
|
|||
namespace MathNet.Numerics.RootFinding |
|||
{ |
|||
/// <summary>
|
|||
/// Pure Newton-Raphson root-finding algorithm without any recovery measures in cases it behaves badly.
|
|||
/// The algorithm aborts immediately if the root leaves the bound interval.
|
|||
/// </summary>
|
|||
/// <seealso cref="RobustNewtonRaphson"/>
|
|||
public static class NewtonRaphson |
|||
{ |
|||
/// <summary>Find a solution of the equation f(x)=0.</summary>
|
|||
/// <param name="f">The function to find roots from.</param>
|
|||
/// <param name="df">The first derivative of the function to find roots from.</param>
|
|||
/// <param name="initialGuess">Initial guess of the root.</param>
|
|||
/// <param name="lowerBound">The low value of the range where the root is supposed to be. Aborts if it leaves the interval.</param>
|
|||
/// <param name="upperBound">The high value of the range where the root is supposed to be. Aborts if it leaves the interval.</param>
|
|||
/// <param name="accuracy">Desired accuracy. The root will be refined until the accuracy or the maximum number of iterations is reached. Example: 1e-14.</param>
|
|||
/// <param name="maxIterations">Maximum number of iterations. Example: 100.</param>
|
|||
/// <returns>Returns the root with the specified accuracy.</returns>
|
|||
/// <exception cref="NonConvergenceException"></exception>
|
|||
public static double FindRoot(Func<double, double> f, Func<double, double> df, double initialGuess, double lowerBound, double upperBound, double accuracy, int maxIterations) |
|||
{ |
|||
double root; |
|||
if (TryFindRoot(f, df, initialGuess, lowerBound, upperBound, accuracy, maxIterations, out root)) |
|||
{ |
|||
return root; |
|||
} |
|||
throw new NonConvergenceException("The algorithm failed or has exceeded the number of iterations allowed. Consider to use RobustNewtonRaphson instead."); |
|||
} |
|||
|
|||
/// <summary>Find a solution of the equation f(x)=0.</summary>
|
|||
/// <param name="f">The function to find roots from.</param>
|
|||
/// <param name="df">The first derivative of the function to find roots from.</param>
|
|||
/// <param name="initialGuess">Initial guess of the root.</param>
|
|||
/// <param name="lowerBound">The low value of the range where the root is supposed to be. Aborts if it leaves the interval.</param>
|
|||
/// <param name="upperBound">The high value of the range where the root is supposed to be. Aborts if it leaves the interval.</param>
|
|||
/// <param name="accuracy">Desired accuracy. The root will be refined until the accuracy or the maximum number of iterations is reached. Example: 1e-14.</param>
|
|||
/// <param name="maxIterations">Maximum number of iterations. Example: 100.</param>
|
|||
/// <param name="root">The root that was found, if any. Undefined if the function returns false.</param>
|
|||
/// <returns>True if a root with the specified accuracy was found, else false.</returns>
|
|||
public static bool TryFindRoot(Func<double, double> f, Func<double, double> df, double initialGuess, double lowerBound, double upperBound, double accuracy, int maxIterations, out double root) |
|||
{ |
|||
root = initialGuess; |
|||
for (int i = 0; i < maxIterations && root >= lowerBound && root <= upperBound; i++) |
|||
{ |
|||
// Evaluation
|
|||
double fx = f(root); |
|||
double dfx = df(root); |
|||
|
|||
// Netwon-Raphson step
|
|||
double step = fx/dfx; |
|||
root -= step; |
|||
|
|||
if (Math.Abs(step) < accuracy && Math.Abs(fx) < accuracy) |
|||
{ |
|||
return true; |
|||
} |
|||
} |
|||
|
|||
return false; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,127 @@ |
|||
// <copyright file="BrentTest.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-2013 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; |
|||
using MathNet.Numerics.RootFinding; |
|||
using NUnit.Framework; |
|||
|
|||
namespace MathNet.Numerics.UnitTests.RootFindingTests |
|||
{ |
|||
[TestFixture] |
|||
public class RobustNewtonRaphsonTest |
|||
{ |
|||
[Test] |
|||
public void MultipleRoots() |
|||
{ |
|||
// Roots at -2, 2
|
|||
Func<double, double> f1 = x => x * x - 4; |
|||
Func<double, double> df1 = x => 2 * x; |
|||
Assert.AreEqual(0, f1(RobustNewtonRaphson.FindRoot(f1, df1, -5, 5, 1e-14, 100, 20))); |
|||
Assert.AreEqual(-2, RobustNewtonRaphson.FindRoot(f1, df1, -5, -1, 1e-14, 100, 20)); |
|||
Assert.AreEqual(2, RobustNewtonRaphson.FindRoot(f1, df1, 1, 4, 1e-14, 100, 20)); |
|||
Assert.AreEqual(0, f1(RobustNewtonRaphson.FindRoot(x => -f1(x), x => -df1(x), -5, 5, 1e-14, 100, 20))); |
|||
Assert.AreEqual(-2, RobustNewtonRaphson.FindRoot(x => -f1(x), x => -df1(x), -5, -1, 1e-14, 100, 20)); |
|||
Assert.AreEqual(2, RobustNewtonRaphson.FindRoot(x => -f1(x), x => -df1(x), 1, 4, 1e-14, 100, 20)); |
|||
|
|||
// Roots at 3, 4
|
|||
Func<double, double> f2 = x => (x - 3) * (x - 4); |
|||
Func<double, double> df2 = x => 2 * x - 7; |
|||
Assert.AreEqual(0, f2(RobustNewtonRaphson.FindRoot(f2, df2, -5, 5, 1e-14, 100, 20))); |
|||
Assert.AreEqual(3, RobustNewtonRaphson.FindRoot(f2, df2, -5, 3.5, 1e-14, 100, 20)); |
|||
Assert.AreEqual(4, RobustNewtonRaphson.FindRoot(f2, df2, 3.2, 5, 1e-14, 100, 20)); |
|||
Assert.AreEqual(3, RobustNewtonRaphson.FindRoot(f2, df2, 2.1, 3.9, 0.001, 50, 20), 0.001); |
|||
Assert.AreEqual(3, RobustNewtonRaphson.FindRoot(f2, df2, 2.1, 3.4, 0.001, 50, 20), 0.001); |
|||
} |
|||
|
|||
[Test] |
|||
public void LocalMinima() |
|||
{ |
|||
Func<double, double> f1 = x => x * x * x - 2 * x + 2; |
|||
Func<double, double> df1 = x => 3 * x * x - 2; |
|||
Assert.AreEqual(0, f1(RobustNewtonRaphson.FindRoot(f1, df1, -5, 5, 1e-14, 100, 20))); |
|||
Assert.AreEqual(0, f1(RobustNewtonRaphson.FindRoot(f1, df1, -2, 4, 1e-14, 100, 20))); |
|||
} |
|||
|
|||
[Test] |
|||
public void Pole() |
|||
{ |
|||
Func<double, double> f1 = x => 1/(x - 2) + 2; |
|||
Func<double, double> df1 = x => -1/(x*x - 4*x + 4); |
|||
Assert.AreEqual(1.5, RobustNewtonRaphson.FindRoot(f1, df1, 1, 2, 1e-14, 100, 20)); |
|||
Assert.AreEqual(1.5, RobustNewtonRaphson.FindRoot(f1, df1, 1, 6, 1e-14, 100, 20)); |
|||
Assert.AreEqual(1.5, FindRoots.OfFunctionAndDerivative(f1, df1, 1, 6)); |
|||
|
|||
Func<double, double> f2 = x => -1/(x - 2) + 2; |
|||
Func<double, double> df2 = x => 1/(x*x - 4*x + 4); |
|||
Assert.AreEqual(2.5, RobustNewtonRaphson.FindRoot(f2, df2, 2, 3, 1e-14, 100, 20)); |
|||
Assert.AreEqual(2.5, RobustNewtonRaphson.FindRoot(f2, df2, -2, 3, 1e-14, 100, 20)); |
|||
Assert.AreEqual(2.5, FindRoots.OfFunctionAndDerivative(f2, df2, -2, 3)); |
|||
|
|||
Func<double, double> f3 = x => 1/(x - 2) + x + 2; |
|||
Func<double, double> df3 = x => -1/(x*x - 4*x + 4) + 1; |
|||
Assert.AreEqual(-Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f3, df3, -2, -1, 1e-14, 100, 20), 1e-14); |
|||
Assert.AreEqual(Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f3, df3, 1, 1.99, 1e-14, 100, 20)); |
|||
Assert.AreEqual(Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f3, df3, -1.5, 1.99, 1e-14, 100, 20)); |
|||
Assert.AreEqual(Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f3, df3, 1, 6, 1e-14, 100, 20)); |
|||
|
|||
Func<double, double> f4 = x => 1/(2 - x) - x + 6; |
|||
Func<double, double> df4 = x => 1/(x*x - 4*x + 4) - 1; |
|||
Assert.AreEqual(4 + Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f4, df4, 5, 6, 1e-14, 100, 20), 1e-14); |
|||
Assert.AreEqual(4 - Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f4, df4, 2.01, 3, 1e-14, 100, 20)); |
|||
Assert.AreEqual(4 - Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f4, df4, 2.01, 5, 1e-14, 100, 20)); |
|||
Assert.AreEqual(4 - Math.Sqrt(3), RobustNewtonRaphson.FindRoot(f4, df4, -2, 4, 1e-14, 100, 20)); |
|||
} |
|||
|
|||
[Test] |
|||
public void Cubic() |
|||
{ |
|||
// with complex roots (looking for the real root only): 3x^3 + 4x^2 + 5x + 6, derivative 9x^2 + 8x + 5
|
|||
Func<double, double> f1 = x => Evaluate.Polynomial(x, 6, 5, 4, 3); |
|||
Func<double, double> df1 = x => Evaluate.Polynomial(x, 5, 8, 9); |
|||
Assert.AreEqual(-1.265328088928, RobustNewtonRaphson.FindRoot(f1, df1, -2, -1, 1e-10, 100, 20), 1e-6); |
|||
Assert.AreEqual(-1.265328088928, RobustNewtonRaphson.FindRoot(f1, df1, -5, 5, 1e-10, 100, 20), 1e-6); |
|||
|
|||
// real roots only: 2x^3 + 4x^2 - 50x + 6, derivative 6x^2 + 8x - 50
|
|||
Func<double, double> f2 = x => Evaluate.Polynomial(x, 6, -50, 4, 2); |
|||
Func<double, double> df2 = x => Evaluate.Polynomial(x, -50, 8, 6); |
|||
Assert.AreEqual(-6.1466562197069, RobustNewtonRaphson.FindRoot(f2, df2, -8, -5, 1e-10, 100, 20), 1e-6); |
|||
Assert.AreEqual(0.12124737195841, RobustNewtonRaphson.FindRoot(f2, df2, -1, 1, 1e-10, 100, 20), 1e-6); |
|||
Assert.AreEqual(4.0254088477485, RobustNewtonRaphson.FindRoot(f2, df2, 3, 5, 1e-10, 100, 20), 1e-6); |
|||
} |
|||
|
|||
[Test] |
|||
public void NoRoot() |
|||
{ |
|||
Func<double, double> f1 = x => x * x + 4; |
|||
Func<double, double> df1 = x => 2 * x; |
|||
Assert.Throws<NonConvergenceException>(() => RobustNewtonRaphson.FindRoot(f1, df1, -5, 5, 1e-14, 50, 20)); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue