Sagot :
Réponse :
Bonsoir,
Explications étape par étape :
1)
[tex]\forall n \in \mathbb{N}:\\\left\{\begin{array}{ccc}a_{n+1}&=&0.8*a_n+0.3*b_n\\b_{n+1}&=&20000-a_n\ ou\ 0.2*a_n+0.7*b_n\\\end {array} \right.\\\\[/tex]
Résolution mathématique:
[tex]a_{n+1}=0.8*a_n+0.3*(20000-a_n)\\\\\boxed{a_{n+1}=\dfrac{a_n}{2} +6000}\\\\\\Calcul\ de\ la\ limite:\\\\L=\dfrac{L}{2}+6000 \\\\L=12000\\\\On\ pose\ u_n=a_n-12000\\\\u_{n+1}=a_{n+1}-12000\\\\=\dfrac{a_n}{2} +6000-12000\\\\=\dfrac{a_n}{2} -6000\\\\=\dfrac{1}{2}*(a_n-12000)\\\\=\dfrac{1}{2}*u_n\\\\u_0=a_0-12000\\\\u_n=(a_0-12000)*(\dfrac{1}{2})^n\\\\\boxed{a_n=(a_0-12000)*(\dfrac{1}{2})^n+12000}\\\\b_n=20000-a_n\\\\\boxed{b_n=8000+(12000-a_n)*(\dfrac{1}{2})^n}[/tex]
2)
A=int(input("effectif de l'île A"))
n=int(input"nombre d'années"))
B=20000-A
for i in range(n):
___ a,b=0.8*A+0.3*B,0.2*A+0.7*B
# il n'y a pas d'interférence entre A et B
#car les valeurs primitives sont placées sur une pile
print (A,B)