Newton-Raphson method in .NET (C# and Visual Basic)
The Newton-Raphson or Newton routine finds the unconstrained minimum of a scalar function. It's an iterative method that calculates the next point according to xn+1=xn⋅f(xn)f′(xn)
where f is the function to be minimized, f′ its derivative and xi is the i-th point in the iteration. For more details see the Wikipedia article.
A simple Example for the Newton-Raphson method
A simple quadratic example.
You can learn more about unconstrained optimization here. The class reference of the Newton-Raphson method is found here.