Derivative of a curve python

In this article, we will plot the derivative of a function using matplotlib and python. For this we are using some modules in python which are as follows:

  • Matplotlib:Matplotlib is one of the most popular Python packages used for data visualization. It is a cross-platform library for making 2D plots from data in arrays.
  • NumPy:It is a python library that is used for working with arrays, it also supports large multi-dimensional arrays and matrices, it also has several mathematical functions.
  • SciPy:Python has a library named as SciPy that is used for mathematical, scientific, and engineering calculations. This library depends on NumPy, and provides various numerical operations.

To plot the derivative of a function first, we have to calculate it. The scipy.misc library has a derivative() function which accepts one argument as a function and the other is the variable w.r.t which we will differentiate the function. So we will make a method named function() that will return the original function and a second method named deriv() that will return the derivative of that function.

After this calculation of the derivative of the input function, we will use the NumPy linspace() function which sets the range of the x-axis. The plot() function will be used to plot the function and also the derivative of that function.

Approach:

  • Import the modules required.
  • Define methods for function and its derivative
  • Use NumPy linspace function to make x-axis spacing.
  • Plot the function and its derivative
  • Change the limits of axis using gca() function
  • Plot the text using text() function

Example 1: (Derivative of cubic) 

In this example, we will give the function f(x)=2x3+x+3 as input, then calculate the derivative and plot both the function and its derivative.

Python3

import matplotlib.pyplot as plt

from scipy.misc import derivative

import numpy as np

def function(x):

    return 2*x*x*x+x+3

def deriv(x):

    return derivative(function, x)

y = np.linspace(-6, 6)

plt.plot(y, function(y), color='purple', label='Function')

plt.plot(y, deriv(y), color='green', label='Derivative')

plt.legend(loc='upper left')

plt.grid(True)

Output:

Derivative of a curve python

Example 2: (Derivative of Poly degree polynomial) 

In this example, we will give the function f(x)=x4+x2+5 as input, then calculate the derivative and plot both the function and its derivative.

Python3

import matplotlib.pyplot as plt

from scipy.misc import derivative

import numpy as np

def function(x):

    return x*x*x*x+x*x+5

def deriv(x):

    return derivative(function, x)

y = np.linspace(-15, 15)

plt.plot(y, function(y), color='red', label='Function')

plt.plot(y, deriv(y), color='green', label='Derivative')

plt.legend(loc='upper left')

plt.grid(True)

Output:

Example 3: (Derivative of quadratic with formatting by text) 

In this example, we will plot the derivative of f(x)=4x2+x+1. Also, we will use some formatting using the gca() function that will change the limits of the axis so that both x, y axes intersect at the origin. The text() function which comes under matplotlib library plots the text on the graph and takes an argument as (x, y) coordinates. We will also do some formatting.

Python3

import matplotlib.pyplot as plt

from scipy.misc import derivative

import numpy as np

def function(x):

    return 4*x**2+x+1

def deriv(x):

    return derivative(function, x)

y = np.linspace(-6, 6)

plt.plot(y, function(y), color='brown', label='Function')

plt.plot(y, deriv(y), color='blue', label='Derivative')

plt.gca().spines['left'].set_position('zero',)

plt.gca().spines['bottom'].set_position('zero',)

plt.legend(loc='upper left')

plt.text(5.0, 1.0, r"$f'(x)=8x+1$", horizontalalignment='center',

         fontsize=18, color='blue')

plt.text(-4.4, 25.0, r'$f(x)=4x^2+x+1$', horizontalalignment='center',

         fontsize=18, color='brown')

plt.grid(True)

Output:


How do you find the derivative in Python?

Calculate Derivative Functions in Python.
Import SymPy. In order to do symbolic differentiation, we'll need a library called SymPy. ... .
Make a symbol. Variables are not defined automatically in SymPy. ... .
Write symbolic expression. ... .
Take the derivative. ... .
Substituting values into expressions. ... .
The lambdify function..

Can Python take derivatives?

Solving Derivatives in Python SymPy has lambdify function to calculate the derivative of the function that accepts symbol and the function as argument. Let's look at example of calculating derivative using SymPy lambdify function.

Can NumPy do derivatives?

Generally, NumPy does not provide any robust function to compute the derivatives of different polynomials. However, NumPy can compute the special cases of one-dimensional polynomials using the functions numpy. poly1d() and deriv().