Saturday, October 25, 2025
HomeLanguagesPython | Scipy integrate.fixed_quad() method

Python | Scipy integrate.fixed_quad() method

With the help of scipy.integrate.fixed_quad() method, we can get the computation of a definite integral using fixed order gaussian quadrature by using scipy.integrate.fixed_quad() method.

Syntax : scipy.integrate.fixed_quad(func, a, b, n)
Return : Return the computed value of a definite integral.

Example #1 :
In this example we can see that by using scipy.integrate.fixed_quad() method, we are able to get the definite integral using fixed order gaussian quadrature by using this method.




# import scipy.integrate
from scipy import integrate
func = lambda x: x**3
  
# using scipy.integrate.fixed_quad() method
gfg = integrate.fixed_quad(func, 0.0, 1.0, n = 2) # n is the order of integration
  
print(gfg)


Output :

0.24999999999999997

Example #2 :




# import scipy.integrate
from scipy import integrate
func = lambda x: x**2 + 4 * x + 4
  
# using scipy.integrate.fixed_quad() method
gfg = integrate.fixed_quad(func, 1.0, 2.0, n = 2) # n is the order of integration
  
print(gfg)


Output :

12.333333333333332

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS