exmc.py

Created by david-cobac

Created on May 16, 2023

266 Bytes

exemple Monte-Carlo


from random import uniform


def f(t):
    return -t ** 2 + 4 * t


N = 1_000
AIRE_CARRE = 16

compteur = 0
for i in range(N):
    x = uniform(0, 4)
    y = uniform(0, 4)
    if f(x) >= y:
        compteur = compteur + 1

print(AIRE_CARRE * compteur / N)

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.