Compute a derivative using discrete methods - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T11:42:37Z http://stackoverflow.com/feeds/question/627055 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods 4 Compute a derivative using discrete methods Ryan 2009-03-09T16:49:09Z 2009-08-01T18:21:36Z <p>I am looking for a method to compute a derivate using a discrete and fast method. Since now I do not know the type of equation I have, I am looking for discrete methods analog to the ones that we can find for the integral such as, the Euler method.</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627077#627077 0 Answer by duffymo for Compute a derivative using discrete methods duffymo 2009-03-09T16:53:09Z 2009-03-09T16:53:09Z <p>I'll assume that your function is more complex than the simple one you posted, because the closed-form solution is far too simple.</p> <p>When you use the word "discrete" it makes me think you need "finite differences". You'll need some discretization to calculate the approximation.</p> <p>Df/Dx ~ (f2-f1)/(x2-x1), etc.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627106#627106 4 Answer by Jesse Rusak for Compute a derivative using discrete methods Jesse Rusak 2009-03-09T17:00:06Z 2009-03-09T17:00:06Z <p>A simple method is to compute the change in f over a small value for each point of the derivative you're interested in. For example, to compute ∂f/∂x, you could use this:</p> <pre><code>epsilon = 1e-8 ∂f/∂x(x, y, z) = (f(x+epsilon,y,z) - f(x-epsilon, y, z))/(epsilon * 2); </code></pre> <p>The other partials would be similar in y and z. </p> <p>The value chosen for epsilon depends on the contents of f, the precision required, the floating point type used, and probably other things. I suggest you experiment with values for it with functions you're interested in.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627122#627122 2 Answer by Ryan Fox for Compute a derivative using discrete methods Ryan Fox 2009-03-09T17:02:19Z 2009-03-09T17:02:19Z <p>Short of using a symbolic math language, like Maple, the best you can do is to approximate the derivative at various points. (And then interpolate, if you need a function.)</p> <p>If you've already got the function you want to use, then you should use the <a href="http://www.ece.uwaterloo.ca/~ece204/TheBook/12Differentiation/backward/complete.html" rel="nofollow">backward divided-difference forumla</a>, and <a href="http://www.ece.uwaterloo.ca/~ece204/TheBook/12Differentiation/richardson/complete.html" rel="nofollow">Richardson extrapolation</a> to improve your error.</p> <p>Also keep in mind that these methods work on functions of one variable. However, partial derivatives of each variable treat the other variables as constants.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627140#627140 6 Answer by Barry Wark for Compute a derivative using discrete methods Barry Wark 2009-03-09T17:07:21Z 2009-03-09T17:07:21Z <p>There is quite a bit of theory (and established practice) in calculating numerical ("finite") derivatives. Getting all the details correct, such that you believe the result, is not trivial. If there's any way you can get the analytical derivative of the function (using pen and paper, or a computer algebra system such as <a href="http://www.maplesoft.com/" rel="nofollow">Maple</a>, <a href="http://www.wolfram.com" rel="nofollow">Mathematica</a>, <a href="http://www.sagemath.org/" rel="nofollow">Sage</a>, or <a href="http://code.google.com/p/sympy/" rel="nofollow">SymPy</a>), this is by far the best option.</p> <p>If you can't get the analytical form, or you don't know the function (just it's output), then numerical estimation are your only option. This <a href="http://www.fizyka.umk.pl/nrbook/c5-7.pdf" rel="nofollow">chapter</a> in Numerical Recipies in C is a good start.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627208#627208 0 Answer by Howard May for Compute a derivative using discrete methods Howard May 2009-03-09T17:24:32Z 2009-03-09T17:24:32Z <p>If the function is linear as you have indicated then the derivatives are trivial. The derivative with respect to 'x' is 'a'; the derivative with respect to 'y' is 'b' and the derivative with respect to 'z' is 'c'. If the equation is of a more complex form and you need a formula representing the solution rather than an empirical solution, then please submit the more complex form of the equation.</p> <p>Regards</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627314#627314 1 Answer by Joseph Holsten for Compute a derivative using discrete methods Joseph Holsten 2009-03-09T17:50:49Z 2009-03-09T17:50:49Z <p>Formally, no. Either you are describing the (partial) derivitives of discrete functions or you are asking for a numerical method to approximate the (partial) derivatives of continuous functions.</p> <p>Discrete functions don't have derivatives. If you review the epsilon-delta definition of a derivative, you will see that you would need to be able to evaluate the function close to the point you want the derivative at. That doesn't make sense if the function only has values at integer values of x, y and z. So there is no way to find the derivative of a discrete function for any value of fast.</p> <p>If you want a numerical method exactly calculate the derivatives of a continuous function, you're out of luck as well. Numerical methods for derivatives are heuristic, not algorithmic. There is no numerical method which guarantees an exact solution. Fortunately, there exist many good heuristics. Mathematica uses a specialized version of <a href="http://reference.wolfram.com/mathematica/tutorial/UnconstrainedOptimizationPrincipalAxisMethod.html" rel="nofollow">Brent's principle axis method</a> by default. I would recommend you use the <a href="http://www.gnu.org/software/gsl/" rel="nofollow">GNU Scientific Library</a>, which has a very good implementation of Brent's method. I owe my entire grade in one of my math courses to the GSL. The ruby bindings are pretty good if that's your thing. If necessary, most numerical differentiation libraries have a handful of different methods available. </p> <p>If you really want, I can whip out some sample code. Let me know.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/632451#632451 0 Answer by david for Compute a derivative using discrete methods david 2009-03-10T21:56:51Z 2009-03-10T21:56:51Z <p>I hope this may be helpful <a href="http://math.fullerton.edu/mathews/n2003/NumericalDiffMod.html" rel="nofollow">NUMERICAL DIFFERENTIATION.</a></p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/632538#632538 4 Answer by Andrea Ambu for Compute a derivative using discrete methods Andrea Ambu 2009-03-10T22:27:04Z 2009-03-12T09:08:47Z <p>I think you are looking for the derivative calculated in a point. If this is the case, here there is a simple way to do that. You need to know the derivative in a point, say <strong>a</strong>. It is given by the limit of the difference quotient for h->0:</p> <p><img src="http://upload.wikimedia.org/math/2/e/1/2e182ba47dd0ff925c5b7a4acf0522a2.png" alt="difference quotient" /></p> <p>You actually need to implement the limit function. So you:</p> <ul> <li>Define an epsilon, set it more small to be more precise, bigger to be faster</li> <li>calculate the difference quotient in a starting h, suppose h=0.01, store it in <strong>f1</strong></li> <li><p>Now in a DO-WHILE loop:</p> <p>1- divide h by 2 (or by 10, the important thing is to make it smaller)<br /> 2- calculate again the difference quotient with the new value of h, store this in <strong>f2</strong><br /> 3- set <strong>diff = abs(f2-f1)</strong> <br /> 4- assign <strong>f1 = f2</strong><br /> 5- repeat from point 1 <strong>while (diff>epsilon)</strong></p></li> <li>You can finally return f1 (or f2) as the value of your f'(a)</li> </ul> <p>Remember: You are assuming the function is differentiable in <strong>a</strong>. Every result you will get will be wrong due of errors of the finite decimal digit your computer can handle, there is no escape from this.</p> <p>Example in python:</p> <pre><code>def derive(f, a, h=0.01, epsilon = 1e-7): f1 = (f(a+h)-f(a))/h while True: # DO-WHILE h /= 2. f2 = (f(a+h)-f(a))/h diff = abs(f2-f1) f1 = f2 if diff&lt;epsilon: break return f2 print "derivatives in x=0" print "x^2: \t\t %.6f" % derive(lambda x: x**2,0) print "x:\t\t %.6f" % derive(lambda x: x,0) print "(x-1)^2:\t %.6f" % derive(lambda x: (x-1)**2,0) print "\n\nReal values:" print derive(lambda x: x**2,0) print derive(lambda x: x,0) print derive(lambda x: (x-1)**2,0) </code></pre> <p>Output:</p> <pre><code>derivatives in x=0 x^2: 0.000000 x: 1.000000 (x-1)^2: -2.000000 Real values: 7.62939453125e-08 1.0 -1.99999992328 </code></pre> <p>The first time I've got "precise" value" because of using only the first 6 digits of the result, note I used 1e-7 as epsilon. The REAL calculated values are printed after that, and they are obviously mathematically wrong. The choose of how small epsilon is depends on how precise you want your results to be.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/637969#637969 1 Answer by Phil H for Compute a derivative using discrete methods Phil H 2009-03-12T10:09:13Z 2009-03-12T10:09:13Z <p>To do numerical differentiation, which is always an approximation, there are two common scenarios: </p> <ol><li>You have a way (algorithm, equation) to calculate the value of f(x) at any given x, or</li> <li>You have the value of f(x) at a set of equally spaced values of x (f(1), f(1.5), f(2) etc): </li></ol> <br /> <ol><li>If you have the algorithm, then you are best looking at <a href="http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/632538#632538">Andrea Ambu's answer</a>*: <ol><li>Start with the values of f(a+h) and f(a-h) and do<br /> f'(a) = { f(a+h)-f(a-h) } / 2h<br /> This is known as a central difference.</li> <li>Reduce the size of the offset h until f'(a) stops changing, as per Andrea's answer.</li></ol> <ul><li>Be careful that you don't divide by 2h without checking it is larger than 0 or you'll get divide by zero errors.</li> </ul> </li> <li>If you have the value of the function at a set of values of f(x) = f(x<sub>n</sub>) = f<sub>n</sub>, then we can do something similar to the above method, but our accuracy will be limited by the values of x<sub>n</sub> and the gaps between them. <li>The first approximation is just to use the same central difference operator as above;<br /> f'<sub>n</sub> = (f<sub>n+1</sub> - f<sub>n-1</sub>)/2h,<br /> where h is the equal spacing between the values of x<sub>n</sub>.</li> <li>The next is to use a <a href="http://en.wikipedia.org/wiki/Five-point_stencil" rel="nofollow">five-point stencil</a>, although it has only 4 coefficients as detailed on that wikipedia page. This uses the values from f<sub>n-2</sub> to f<sub>n+2</sub>: f'<sub>n</sub> = (-f<sub>n+2</sub> + 8f<sub>n+1</sub> - 8f<sub>n-1</sub> +f<sub>n-2</sub>)/12h.</li> <li>there are higher order approximations using more points, but they get increasingly difficult to calculate for diminishing returns, and become more unstable numerically.</li> <li>**Note**: These finite-difference formulae rely on f being approximately the same shape as a polynomial in the range x<sub>n-1</sub>&le; x &le;<sub>n+1</sub>. For functions like sine waves, they can be quite bad at calculating the derivative to a good degree of accuracy.</li> </ol> <p>*&nbsp;Andrea's answer uses the forward difference operator {f(a+h) - f(a)}/h instead of the central difference operator {f(a+h) - f(a-h)}/2h, but the forward difference operator is less accurate in numerical solutions.</p> http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/1217161#1217161 2 Answer by Jay Kominek for Compute a derivative using discrete methods Jay Kominek 2009-08-01T18:21:36Z 2009-08-01T18:21:36Z <p><a href="http://en.wikipedia.org/wiki/Automatic%5Fdifferentiation" rel="nofollow">Automatic differentiation</a> is the most accurate and conceptually awesome way of doing this kind of thing. Just a bit more complicated.</p>