I am trying to do my homework. I have to write method of derivative. I am thinking to write a function of derivative. (It is Scala)

Please give me a hint here.

Thank you

link|improve this question

50% accept rate
1  
Your question isn't clear. Is this a calculus derivative? Of what kind of function? What does Scala have to do with it? – duffymo Mar 24 '11 at 9:24
@duffymo I think the OP wants to write a function to find a derivative of an equation or something? – gideon Mar 24 '11 at 9:26
Are you sure? Could s/he be talking about evaluating financial derivatives? I'm being flip with the question - I know calculus well, so it was my first thought. But even that opens up a mine field. Derivatives for polynomial functions? Transcendental functions? Numerical or closed form? It's not possible to answer as written. – duffymo Mar 24 '11 at 13:14
feedback

closed as not a real question by duffymo, Alexandre C., interjay, walkytalky, Jesper Mar 24 '11 at 15:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 0 down vote accepted

The question is not completely clear, it could be a numerical derivative, on the other hand, finding a derivative analytically is actually mostly very easy. The hardest part is to parse the expression, once you have the function represented in a polish notation, or as a tree or a linked list, you just recursively apply the derivative rules, transforming for example

(* expression1 expression2) 

into

(+ (* derivative_of_expression1 expression2) (* expression1 derivative_of_expression2))

It is a fairly simple exercise in recursion. At the end, you can co through the resulting expression once more, getting rid of things like multiplications by 1 and additions of 0, to simplify the result a bit.

link|improve this answer
feedback

One definition of the derivative of a function f(x) is

lim( dx -> 0 ) { (f(x+dx) - f(x))/dx }

which can only be computed exactly if done analytically. However, analytic solutions require a computer algebra system in general, and that's a lot of work. Fortunately, you can approximate it numerically; if your functions vary relatively slowly, then you might be able to just write a method that looks like

def approxDeriv(f: Double => Double, x: Double, dx: Double = 1e-6) = {
  // You fill in this part, knowing the definition
}

and testing it should give you answers like

scala> (0 to 1000).map(_*math.Pi/500).map(x => math.cos(x) - approxDeriv(math.sin,x)).max
res0: Double = 5.000444503524028E-7

showing that the difference between the analytic solution to d(sin x)/dx, namely cos x, and the solution you calculate numerically, is quite small.

Alternatively, you could approximately differentiate and return not the derivative at a point but a new function:

def numericalApproxDiff(f: Double => Double, dx: Double = 1e-6) = {
  (x: Double) =>  /* calculate a derivative */
}
link|improve this answer
feedback

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