This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from math import * | |
| from student import * | |
| from ulab.scipy.optimize import newton | |
| # 1. A editer | |
| def mg(x): | |
| """ Membre de gauche de l'equation """ | |
| return invt(0.975, x - 1) * (17.4389 / sqrt(x)) * sqrt(1 - x/300) | |
| def md(x): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from math import * | |
| from student import * | |
| # 1. A editer | |
| def mg(x): | |
| """ Membre de gauche de l'equation """ | |
| return invt(0.975, x - 1) * (17.4389 / sqrt(x)) * sqrt(1 - x/300) | |
| def md(x): | |
| """ Membre de droite de l'equation """ |