Derivatives in C/C++? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:18:24Zhttp://stackoverflow.com/feeds/question/422594http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/422594/derivatives-in-c-c7Derivatives in C/C++?idontwanttortfm2009-01-07T23:18:54Z2009-07-22T07:41:26Z
<p>I have some expressions such as x^2+y^2 that I'd like to use for some math calculations. On of the things I'd like to do is to take partial derivatives of the expressions. So if f(x,y) = x^2 + y^2 then the partial of f with respect to x would be 2x, the partial with respect to y would be 2y. I wrote a dinky function using a finite differences method but I'm running into lots of problems with floating point precision. For example, I end up with 1.99234 instead of 2. Are there any libraries that support symbolic differentiation? Any other suggestions?</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/422611#4226116Answer by arul for Derivatives in C/C++?arul2009-01-07T23:27:28Z2009-01-07T23:27:28Z<p>Not exactly library, but there's a lot to learn from:</p>
<p><a href="http://www.codeproject.com/KB/recipes/Differentiation.aspx" rel="nofollow">Codeproject: Symbolic Differentiation</a></p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/422672#4226723Answer by Barry Wark for Derivatives in C/C++?Barry Wark2009-01-07T23:45:03Z2009-01-07T23:45:03Z<p>Getting numerical differentiation "right" (in the sense of minimizing errors) can be quite tricky. To get started, you may want to take a look at the Numerical Recipies' section on <a href="http://www.nrbook.com/a/bookcpdf/c5-7.pdf" rel="nofollow">numerical derivatives</a>.</p>
<p>For free symbolic math packages, you should look at <a href="http://www.ginac.de/" rel="nofollow">GiNaC</a>. You could also check out <a href="http://code.google.com/p/sympy/" rel="nofollow">SymPy</a>, a self-contained, pure-python symbolic math package. You will find that SymPy is much easier to explore, since you can use it interactively from the Python command line.</p>
<p>On the commercial end, both Mathematica and Maple have C APIs. You need an installed/licensed version of the program to use the libraries, but both can easily do the type of symbolic differentiation you're after.</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/422674#4226740Answer by nlucaroni for Derivatives in C/C++?nlucaroni2009-01-07T23:46:11Z2009-01-08T00:45:39Z<p>This is kind of an aside since it applies to Lisp and not C/C++, but it could help others looking for similar tasks or you might get some ideas on implementing something similar in C/C++ on your own. SICP has some lectures on the subject for lisp:</p>
<ol>
<li>derivative rules <a href="http://video.google.com/videoplay?docid=5571878527594356342" rel="nofollow">3b</a></li>
<li>algebraic rules <a href="http://video.google.com/videoplay?docid=6196234900528730258" rel="nofollow">4a</a></li>
</ol>
<p>In Lisp, it's pretty straight forward (and in other functional languages with powerful pattern matching and polymorphic types). In C, you would probably have to heavily utilize enums and structs to get the same power (not to mention allocation/deallocation). One could definitly code what you need in ocaml in under an hour --I'd say typing speed is the limiting factor. If you need C, you can actually call ocaml from C (and vice versa).</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/422695#4226954Answer by Norman Ramsey for Derivatives in C/C++?Norman Ramsey2009-01-07T23:57:05Z2009-01-07T23:57:05Z<p>I've implemented such libraries in several different languages, but unfortunately not C. If you are dealing only with polynomials (sums, products, variables, constants, and powers) it is pretty easy. Trig functions are also not too bad. Anything more complicated and you will probably be better off taking the time to master somebody else's library.</p>
<p>If you decide to roll your own, I have a few suggestions that will simplify your life:</p>
<ul>
<li><p>Use immutable data structures (purely functional data structures) to represent expressions.</p></li>
<li><p>Use <a href="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" rel="nofollow">Hans Boehm's garbage collector</a> to manage the memory for you.</p></li>
<li><p>To represent a linear sum, use a finite map (e.g., a binary search tree) to map each variable to its coefficient.</p></li>
</ul>
<p>If you're willing to embed <a href="http://www.lua.org/" rel="nofollow">Lua</a> into your C code and do your computations there, I have put my Lua code at <a href="http://www.cs.tufts.edu/~nr/drop/lua" rel="nofollow">http://www.cs.tufts.edu/~nr/drop/lua</a>. One of the nicer features is that it can take a symbolic expression, differentiate it, and compile the results into Lua. You will of course find no documentation whatever :-(</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/423082#4230820Answer by duffymo for Derivatives in C/C++?duffymo2009-01-08T02:50:47Z2009-01-08T02:50:47Z<p>Get a copy of <a href="http://maxima.sourceforge.net/" rel="nofollow">Maxima</a> or <a href="http://www.wolfram.com/" rel="nofollow">Mathematica</a>.</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/423134#4231340Answer by duffymo for Derivatives in C/C++?duffymo2009-01-08T03:19:01Z2009-01-08T03:19:01Z<p>If this really is the kind of function you want to use, it'd be easy enough to write a class library. Start with a single Term, with a coefficient and an exponent. Have a Polynomial that would consist of a Collection of Terms. </p>
<p>If you define an interface for the mathematical methods of interest (e.g., add/sub/mul/div/differentiate/integrate), you're looking at a GoF Composite pattern. Both Term and Polynomial would implement that interface. The Polynomial would simply iterate over each Term in its Collection.</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/423305#4233050Answer by j_random_hacker for Derivatives in C/C++?j_random_hacker2009-01-08T04:52:50Z2009-01-08T04:52:50Z<p>It would certainly be easier to leverage an existing package than to write your own, but if you're determined to write your own, and you are prepared to spend some time learning about some dark corners of C++, you can use the <a href="http://boost-sandbox.sourceforge.net/libs/proto/doc/html/index.html" rel="nofollow">Boost.Proto</a> from <a href="http://www.boost.org/" rel="nofollow">Boost</a> to engineer your own library.</p>
<p>Basically, Boost.Proto allows you to convert any valid C++ expression, such as <code>x * x + y * y</code> to an <a href="http://www.google.co.nz/search?q=expression+template" rel="nofollow">expression template</a> -- basically a representation of the parse tree of that expression using nested <code>struct</code>s -- and then perform any arbitrary computation over that parse tree at a later time by calling <code>proto::eval()</code> on it. By default, <code>proto::eval()</code> is used to evaluate the tree as though it had been run directly, though there's no reason why you couldn't modify the behaviour of each function or operator to take a symbolic derivative instead.</p>
<p>Although this would be an <em>extremely</em> complex solution to your problem, it would nevertheless be much easier than trying to roll your own expression templates using C++ template metaprogramming techniques.</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/986427#9864272Answer by eduffy for Derivatives in C/C++?eduffy2009-06-12T12:42:00Z2009-06-12T12:42:00Z<p>If you're doing numerical differentiation ("evaluate the derivative of <em>f(x)</em> at <em>x</em> = <em>x0</em>") and you know you're equations in advance (ie, not user input), then I'd recommend <a href="http://www.fadbad.com/fadbad.html" rel="nofollow">FADBAD++</a>. It's a C++ template library for solving numeric derivatives using <a href="http://en.wikipedia.org/wiki/Automatic%5Fdifferentiation" rel="nofollow">Automatic differentiation</a>. It's very quick, and accurate.</p>
http://stackoverflow.com/questions/422594/derivatives-in-c-c/1163672#11636720Answer by Andy for Derivatives in C/C++?Andy2009-07-22T07:41:26Z2009-07-22T07:41:26Z<p>Have you tried <a href="http://www.obacs.com/products/core/ScinetMath" rel="nofollow">Scinet Math</a> yet? I believe it is for the MS. NET platform but I heard great things about it. </p>