Question
IN PYTHON: please answer all parts (a) Write a function that takes a list of function values f i and the spacing dx between them,
IN PYTHON: please answer all parts
(a) Write a function that takes a list of function values fi and the spacing dx between them, and returns a list of values for the first derivative of the function. Test your function by giving it a list of known values sin(x) and making a graph for the difference between the output of your function and the expected results.
(b) Make a similar graph as above but instead use for the derivative the Numpy built-in gradient() function.
(c) Write a function that takes a list of function values fi and the spacing dx between them, and returns a list of values for the second derivative of the function. Test your function by giving it a list of known values for exp(x) and making a graph for the difference between the output of your function and the expected results.
(d) Instead of using the function you have defined for part (c) use 2 times the function you have defined in part (a) for the 1st derivative. Again test your function with exp(x) and plot the difference between the output of your function and the expected results.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started