Difference between revisions of "Functional differentiation"

From HaskellWiki
Jump to navigation Jump to search
(functional analysis)
(Add another blog entry)
Line 29: Line 29:
 
* [http://vandreev.wordpress.com/2006/12/04/non-standard-analysis-and-automatic-differentiation/ Non-standard analysis, automatic differentiation, Haskell, and other stories.]
 
* [http://vandreev.wordpress.com/2006/12/04/non-standard-analysis-and-automatic-differentiation/ Non-standard analysis, automatic differentiation, Haskell, and other stories.]
 
* [http://sigfpe.blogspot.com/2005/07/automatic-differentiation.html Automatic Differentiation]
 
* [http://sigfpe.blogspot.com/2005/07/automatic-differentiation.html Automatic Differentiation]
  +
* [http://cdsmith.wordpress.com/2007/11/29/some-playing-with-derivatives/ Some Playing with Derivatives]
   
 
[[Category:Mathematics]]
 
[[Category:Mathematics]]

Revision as of 21:45, 29 November 2007

Introduction

Functional differentiation means computing or approximating the derivative of a function. There are several ways to do this:

  • Approximate the derivative by where is close to zero. (or at best the square root of the machine precision .
  • Compute the derivative of symbolically. This approach is particularly interesting for Haskell.

Functional analysis

If you want to explain the terms Higher order function and Currying to mathematicians, this is certainly a good example. The mathematician writes

and the Haskell programmer writes

derive :: a -> (a -> a) -> (a -> a)
derive h f x = (f (x+h) - f x) / h    .

Haskell's derive h approximates the mathematician's . In functional analysis is called a (linear) function operator, because it maps functions to functions. In Haskell derive h is called a higher order function for the same reason. is in curried form. If it would be uncurried, you would write .


Blog Posts

There have been several blog posts on this recently. I think we should gather the information together and make a nice wiki article on it here. For now, here are links to articles on the topic.