A | B | C | D | E | F | G | H | I | |
1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | |
2 | 3000 | 2926 | 2856 | 2789 | 2725 | 2665 | 2608 | 2554 |
xxxxxxxxxx
n = 0
u = 3000
while ...
n = ...
u = ...
xxxxxxxxxx
n = 0
u = 12
while ...
u = ...
n = ...
print(...)
xxxxxxxxxx
from math import*
d = log(2)/2
k = 2
while d > 0.00001:
k = k + 1
d = log(k)/k
print(k)
1 | f(x)=x*exp(-x)+1 | |
2 | g(x)=Dériver( Dériver(f(x)) ) | |
3 | Résoudre( g(x) >= 0 ) |
xxxxxxxxxx
from math import*
def f(x):
return (3*x-4)*exp(-x)+2
x = 0
while f(x) < 0:
x = x+...
print(...)
xxxxxxxxxx
from math import*
def B(x):
return -0.5*x**2+65*x-1000*log(0.1*x+1)-30
max = B(0)
xmax = 0
for i in range(1,81):
if B(i) > max:
max = B(i)
xmax = i
print(xmax)
xxxxxxxxxx
def seuil(p):
n = 1
while 1-(5.0/6)**n <= p:
n = n+1
return n