Fix typo in integration_by_simpson_approx.py (#11501)

This commit is contained in:
CarlosZamG 2024-08-06 02:44:58 -06:00 committed by GitHub
parent dfe67954f7
commit ed1900f1b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ Github : faizan2700
Purpose : You have one function f(x) which takes float integer and returns
float you have to integrate the function in limits a to b.
The approximation proposed by Thomas Simpsons in 1743 is one way to calculate
The approximation proposed by Thomas Simpson in 1743 is one way to calculate
integration.
( read article : https://cp-algorithms.com/num_methods/simpson-integration.html )