up vote 9 down vote favorite
3
share [g+] share [fb]

I need to use some heavy-duty numerical methods - quadrature, interpolation, ODE solution with expensive derivative terms, etc. What's the best book on the subject?

I will be using packages where I can, but I can already tell there will be times when I need to write my own routines...

link|improve this question

73% accept rate
feedback

6 Answers

If you consider Numerical Recipes, you should probably be aware of some criticism: Why not use Numerical Recipes?

Some alternatives are listed here.

link|improve this answer
Last link is broken. – Jon Harrop Jul 1 '10 at 21:26
Thanks. Fixed it. – mattiast Jul 9 '10 at 9:31
feedback

Numerical Recipes is a good reference, but if I were to recommend a book to read cover to cover, it would be Numerical Methods that Work. It covers the kinds of problems you listed, but more importantly it teaches you how to think like a numerical analyst. Some of the examples are a bit dated, but the principles are very applicable.

link|improve this answer
feedback

Try Hamming's Numerical Methods for Scientists and Engineers.

link|improve this answer
feedback

The venerable and unmatched Stroud.

Engineering Mathematics and Advanced Engineering Mathematics.

link|improve this answer
IIRC, that book is a poor man's version of Riley, Hobson and Bence's "Mathematical Methods for Physics and Engineering" and it barely touches numerical methods because it is a symbolic algebra book for undergrads. – Jon Harrop Jul 1 '10 at 23:02
IMHO you don't RC... – annakata Jul 2 '10 at 10:10
feedback

Even if there are critisism, I write heavy-duty numerical methods all the day and Numerical Recipes is a great book, which teaches you a lot if you are willing to read the chapter and not copy and paste the code directly.

For production code, please use canned routines for linear algebra, but otherwise, I never had any problems with the code in NR regarding integration and ODE, and the interpolation classes in the third version of the book is my daily bread and butter.

But please be aware that the code in NR has to be adapted to your needs, since it is generally poor production code (but the design is generally good in the C++ 3rd version).

link|improve this answer
feedback

This is a good book but if you're looking to learn the derivations, then don't bother. These simply have some good implementations in matlab that you can use.

http://wps.aw.com/aw_sauer_numerical_1/

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.