I would like to compare different methods of finding roots of functions in python (like Newton's methods or other simple calc based methods). I don't think I will have too much trouble writing the algorithms. What would be a good way to make the actual comparison? I read up a little bit about Big-O. Would this be the way to go?

(any project ideas or twists would also be appreciated)

Thanks.

link|improve this question
feedback

5 Answers

The answer from @sarnold is right -- it doesn't make sense to do a Big-Oh analysis.

The principal differences between root finding algorithms are:

  • rate of convergence (number of iterations)
  • computational effort per iteration
  • what is required as input (i.e. do you need to know the first derivative, do you need to set lo/hi limits for bisection, etc.)
  • what functions it works well on (i.e. works fine on polynomials but fails on functions with poles)
  • what assumptions does it make about the function (i.e. a continuous first derivative or being analytic, etc)
  • how simple the method is to implement

I think you will find that each of the methods has some good qualities, some bad qualities, and a set of situations where it is the most appropriate choice.

link|improve this answer
feedback

Big O notation is ideal for expressing the asymptotic behavior of algorithms as the inputs to the algorithms "increase". This is probably not a great measure for root finding algorithms.

Instead, I would think the number of iterations required to bring the actual error below some epsilon ε would be a better measure. Another measure would be the number of iterations required to bring the difference between successive iterations below some epsilon ε. (The difference between successive iterations is probably a better choice if you don't have exact root values at hand for your inputs. You would use a criteria such as successive differences to know when to terminate your root finders in practice, so you could or should use them here, too.)

While you can characterize the number of iterations required for different algorithms by the ratios between them (one algorithm may take roughly ten times more iterations to reach the same precision as another), there often isn't "growth" in the iterations as inputs change.

Of course, if your algorithms take more iterations with "larger" inputs, then Big O notation makes sense.

link|improve this answer
2  
You can use Big O to count the number of iterations as epsilon->0. For instance, Newton needs typically O(1/sqrt(epsilon)) iterations to reach precision epsilon, Brent needs O(1 / epsilon^{0.618}). – Alexandre C. Dec 13 '11 at 10:39
@Alexandre: true enough, but both your examples have different treatments of epsilon -- my first draft was actually about using - log(epsilon) as the independent variable for Big O analysis, but the more I thought about it, the less I liked it. – sarnold Dec 13 '11 at 23:40
feedback

Big-O notation is designed to describe how an alogorithm behaves in the limit, as n goes to infinity. This is a much easier thing to work with in a theoretical study than in a practical experiment. I would pick things to study that you can easily measure that and that people care about, such as accuracy and computer resources (time/memory) consumed.

When you write and run a computer program to compare two algorithms, you are performing a scientific experiment, just like somebody who measures the speed of light, or somebody who compares the death rates of smokers and non-smokers, and many of the same factors apply.

Try and choose an example problem or problems to solve that is representative, or at least interesting to you, because your results may not generalise to sitations you have not actually tested. You may be able to increase the range of situations to which your results reply if you sample at random from a large set of possible problems and find that all your random samples behave in much the same way, or at least follow much the same trend. You can have unexpected results even when the theoretical studies show that there should be a nice n log n trend, because theoretical studies rarely account for suddenly running out of cache, or out of memory, or usually even for things like integer overflow.

Be alert for sources of error, and try to minimise them, or have them apply to the same extent to all the things you are comparing. Of course you want to use exactly the same input data for all of the algorithms you are testing. Make multiple runs of each algorithm, and check to see how variable things are - perhaps a few runs are slower because the computer was doing something else at a time. Be aware that caching may make later runs of an algorithm faster, especially if you run them immediately after each other. Which time you want depends on what you decide you are measuring. If you have a lot of I/O to do remember that modern operating systems and computer cache huge amounts of disk I/O in memory. I once ended up powering the computer off and on again after every run, as the only way I could find to be sure that the device I/O cache was flushed.

link|improve this answer
feedback

You can get wildly different answers for the same problem just by changing starting points. Pick an initial guess that's close to the root and Newton's method will give you a result that converges quadratically. Choose another in a different part of the problem space and the root finder will diverge wildly.

What does this say about the algorithm? Good or bad?

link|improve this answer
feedback

I would suggest you to have a look at the following Python root finding demo. It is a simple code, with some different methods and comparisons between them (in terms of the rate of convergence).

http://www.math-cs.gordon.edu/courses/mat342/python/findroot.py

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.