Réponse :
Explications étape par étape
question 1)
On applique la formule de recurrence
u0 = 1
u1 = -3 x 1 + 2 x 0 + 4 = 1
u2 = -3 x 1 + 2 x 1 + 4 = -3
u3 = -3 x (-3) + 2 x 2 + 4 = 9 + 4 + 4 = 17
question 2)
def suite(n);
u=1
for i in range(0,n):
u = -3*u + 2*i + 4
return(u)
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Réponse :
Explications étape par étape
question 1)
On applique la formule de recurrence
u0 = 1
u1 = -3 x 1 + 2 x 0 + 4 = 1
u2 = -3 x 1 + 2 x 1 + 4 = -3
u3 = -3 x (-3) + 2 x 2 + 4 = 9 + 4 + 4 = 17
question 2)
def suite(n);
u=1
for i in range(0,n):
u = -3*u + 2*i + 4
return(u)