Introduction - If you have any usage issues, please Google them yourself
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.