SimReal / Python / Matlab: Programming - Exercise - Mathematics - Differentiation UiA Logo




SimReal - Python - Matlab - JSXGraph
001. Differentiation

Write an application that study the derivate of a function by sliding a secant closer and closer to the tangent at a given point.


SimReal - Python - Matlab - JSXGraph
002. Differentiation - scipy.derivative

Given the function y = f(x) = xcos(x).
Use scipy.derivative to find the derivative y' = f'(x) of this function.
Draw the graph of both y and y'.


SimReal - Python - Matlab - JSXGraph
003. Differentiation - scipy.derivative - Tangent

Given the function y = f(x) = xcos(x).
Use scipy.derivative to find the derivative y' = f'(x) of this function.
Draw the graph of both y, y' and the tangent to y = f(x) at x = 2.


SimReal - Python - Matlab
004. Derivative - Symbolic

Programming the symbolic derivative of the function: f(x) = x·cos(x).
Draw the graph of both the function f and it's derivative function.

MatRIC Logo