Description: Newtons method in C#.
i.e. solve an equation using formula:
Pn+1 = Pn - f(Pn)/f (Pn).
Program can be easily altered for different equations, solved to your specified required accuracy, within your desired number of iterations.
File list (Check if you may need any files):
NewtonsMethod\NewtonsMethod
.............\.............\bin
.............\.............\...\Debug
.............\.............\...\.....\NewtonsMethod.exe
.............\.............\...\.....\NewtonsMethod.pdb
.............\.............\...\.....\NewtonsMethod.vshost.exe
.............\.............\...\Release
.............\.............\NewtonsMethod.csproj
.............\.............\NewtonsMethod.csproj.user
.............\.............\obj
.............\.............\...\Debug
.............\.............\...\.....\NewtonsMethod.csproj.FileListAbsolute.txt
.............\.............\...\.....\NewtonsMethod.exe
.............\.............\...\.....\NewtonsMethod.pdb
.............\.............\...\.....\TempPE
.............\.............\...\Release
.............\.............\Program.cs
.............\.............\Properties
.............\.............\..........\AssemblyInfo.cs
.............\NewtonsMethod.sln
.............\NewtonsMethod.suo
NewtonsMethod