[Ex3 - Q5] Ajout début de réponse
Il manque la réponse à la fin de la question : "Cela est-il conforme à l’hypothèse d’un taux d’accroissement constant ? Justifier."
This commit is contained in:
parent
4106af07f2
commit
cb56e254da
@ -43,3 +43,4 @@ Les réponses aux questions des exercices sont situées dans les README des doss
|
|||||||
2. [Pays ayant un taux d'accroissement négatif](ex3/#q2)
|
2. [Pays ayant un taux d'accroissement négatif](ex3/#q2)
|
||||||
3. [Moyenne](ex3/#q3)
|
3. [Moyenne](ex3/#q3)
|
||||||
4. [Moyenne par continent](ex3/#q4)
|
4. [Moyenne par continent](ex3/#q4)
|
||||||
|
5. [Estimation de la population mondiale en 2050](ex3/#q5)
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
2. [Pays ayant un taux d'accroissement négatif](#q2)
|
2. [Pays ayant un taux d'accroissement négatif](#q2)
|
||||||
3. [Moyenne](#q3)
|
3. [Moyenne](#q3)
|
||||||
4. [Moyenne par continent](#q4)
|
4. [Moyenne par continent](#q4)
|
||||||
|
5. [Estimation de la population mondiale en 2050](#q5)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -93,6 +94,22 @@ bar(tauxAccroissementMoyenParContient)
|
|||||||
|
|
||||||
![Taux d'accroissement moyen par continent](img/ex3-4.png)
|
![Taux d'accroissement moyen par continent](img/ex3-4.png)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Question 5 : Estimation de la population mondiale en 2050 {#q5}
|
||||||
|
|
||||||
|
> Quelle est la population mondiale prévue en 2050 ? Cela est-il conforme à l’hypothèse d’un taux d’accroissement constant ? Justifier.
|
||||||
|
|
||||||
|
**[Script Scilab](scripts/ex3-5.sce) :**
|
||||||
|
|
||||||
|
```scilab
|
||||||
|
population2050 = sum(data(:, 6)*1000000)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Résultat :**
|
||||||
|
|
||||||
|
- La population mondiale prévue en 2050 est de 9 848 330 000 habitants.
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
4
ex3/scripts/ex3-5.sce
Normal file
4
ex3/scripts/ex3-5.sce
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
data = csvRead("data.csv");
|
||||||
|
|
||||||
|
population2050 = sum(data(:, 6)*1000000);
|
||||||
|
mprintf("La population mondiale prévue en 2050 est de %.0f habitants.\n", population2050);
|
Loading…
Reference in New Issue
Block a user