Réponse :
Explications étape par étape :
Bonjour
Exercice76
1) Moyenne
Script
def moy(a,b):
m=(a+b)/2
return(m)
Réaliastion
*** Console de processus distant Réinitialisée ***
>>> moy(10,8)
9.0
>>>
2) Harmo
return (m)
def harmo(x,y):
a=moy(1/x,1/y)
b=1/a
return(b)
Exécution avec 2 et 4
>>> harmo(2,4)
2.6666666666666665
3) h= (1/x+1/y)/2
h= (x+y)/xy / 2h = 2xy / (x + y)
Vérification avec Python
def harmo2(x,y):
h=2*x*y/(x+y)
return( h)
exécution
>>> harmo2(2,4)
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Réponse :
Explications étape par étape :
Bonjour
Exercice76
1) Moyenne
Script
def moy(a,b):
m=(a+b)/2
return(m)
Réaliastion
*** Console de processus distant Réinitialisée ***
>>> moy(10,8)
9.0
>>>
2) Harmo
Script
def moy(a,b):
m=(a+b)/2
return (m)
def harmo(x,y):
a=moy(1/x,1/y)
b=1/a
return(b)
Exécution avec 2 et 4
*** Console de processus distant Réinitialisée ***
>>> harmo(2,4)
2.6666666666666665
>>>
3)
h= (1/x+1/y)/2
h= (x+y)/xy / 2
h = 2xy / (x + y)
Vérification avec Python
def harmo2(x,y):
h=2*x*y/(x+y)
return( h)
exécution
*** Console de processus distant Réinitialisée ***
>>> harmo2(2,4)
2.6666666666666665
>>>