partie3_ex77.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

132 Bytes


def sommet(a, x1, x2):
    alpha = (x1 + x2) / 2
    ord = a * (alpha - x1) * (alpha - x2)
    return alpha, ord