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
|
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
| |||||||||
feedback
|
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.
|
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
into
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. | |||
|
feedback
|
|
One definition of the derivative of a function
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
and testing it should give you answers like
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:
| |||
|
feedback
|