resoudrec.py

Created by hicham-choukour

Created on September 28, 2024

431 Bytes


import cmath

def solve_quadratic(a, b, c):
    # Calcul du discriminant
    discriminant = (b**2) - (4*a*c)
    # Trouver les racines
    root1 = (-b + cmath.sqrt(discriminant)) / (2 * a)
    root2 = (-b - cmath.sqrt(discriminant)) / (2 * a)
    return root1, root2

# Exemple d'utilisation
a = 1
b = 2
c = 10
root1, root2 = solve_quadratic(a, b, c)
print(f"Les racines de l'équation sont : {root1} et {root2}")

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.