Bonsoir ;
1)
f(21) = 8 x 21 = 168 .
g(21) = 5 x 21 + 91 = 105 + 91 = 196 .
Comme : f(21) < g(21) ; alors c'est la deuxième
proposition qui est la plus avantageuse si Armelle
veut travailler 21 heures .
2)
Pour : x ∈ [1 ; 40] , on a :
f(x) = 8x et g(x) = 5x + 91 .
3)
> > > P1 = 6
> > > P2 = 96
> > > k = 1
> > > while (P2 > P1) :
. . . k = k + 1
. . . P1 = 8 * k
. . . P2 = 5 * k + 91
> > > print(k) .