forked from AllenDowney/ModSimPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorld_population_estimates.html
More file actions
2634 lines (2631 loc) · 139 KB
/
World_population_estimates.html
File metadata and controls
2634 lines (2631 loc) · 139 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">
<head>
<meta charset="UTF-8"/>
<title>World population estimates - Wikipedia</title>
<script>document.documentElement.className = document.documentElement.className.replace( /(^|\s)client-nojs(\s|$)/, "$1client-js$2" );</script>
<script>(window.RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"World_population_estimates","wgTitle":"World population estimates","wgCurRevisionId":846638507,"wgRevisionId":846638507,"wgArticleId":7982330,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["CS1 maint: Multiple names: authors list","Webarchive template wayback links","All articles with unsourced statements","Articles with unsourced statements from January 2017","Use mdy dates from July 2013","Articles containing potentially dated statements from 2015","All articles containing potentially dated statements","World population","Demographic history"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"World_population_estimates","wgRelevantArticleId":7982330,"wgRequestId":"WymlZQpAAEQAAAU85q4AAAAH","wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgFlaggedRevsParams":{"tags":{}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgWikiEditorEnabledModules":[],"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsShouldSendModuleToUser":true,"wgPopupsConflictsWithNavPopupGadget":false,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en","usePageImages":true,"usePageDescriptions":true},"wgPreferredVariant":"en","wgMFExpandAllSectionsUserOption":true,"wgMFEnableFontChanger":true,"wgMFDisplayWikibaseDescriptions":{"search":true,"nearby":true,"watchlist":true,"tagline":false},"wgRelatedArticles":null,"wgRelatedArticlesUseCirrusSearch":true,"wgRelatedArticlesOnlyUseCirrusSearch":false,"wgULSCurrentAutonym":"English","wgNoticeProject":"wikipedia","wgCentralNoticeCookiesToDelete":[],"wgCentralNoticeCategoriesUsingLegacy":["Fundraising","fundraising"],"wgWikibaseItemId":"Q3400788","wgScoreNoteLanguages":{"arabic":"العربية","catalan":"català","deutsch":"Deutsch","english":"English","espanol":"español","italiano":"italiano","nederlands":"Nederlands","norsk":"norsk","portugues":"português","suomi":"suomi","svenska":"svenska","vlaams":"West-Vlams"},"wgScoreDefaultNoteLanguage":"nederlands","wgCentralAuthMobileDomain":false,"wgCodeMirrorEnabled":true,"wgVisualEditorToolbarScrollOffset":0,"wgVisualEditorUnsupportedEditParams":["undo","undoafter","veswitched"],"wgEditSubmitButtonLabelPublish":true});mw.loader.state({"ext.gadget.charinsert-styles":"ready","ext.globalCssJs.user.styles":"ready","ext.globalCssJs.site.styles":"ready","site.styles":"ready","noscript":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","ext.globalCssJs.site":"ready","user":"ready","user.options":"ready","user.tokens":"loading","ext.cite.styles":"ready","mediawiki.legacy.shared":"ready","mediawiki.legacy.commonPrint":"ready","wikibase.client.init":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","ext.wikimediaBadges":"ready","mediawiki.skinning.interface":"ready","skins.vector.styles":"ready"});mw.loader.implement("user.tokens@1dqfd7l",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({"editToken":"+\\","patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
});mw.loader.load(["ext.cite.a11y","site","mediawiki.page.startup","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.toc","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.watchlist-notice","ext.gadget.DRN-wizard","ext.gadget.charinsert","ext.gadget.refToolbar","ext.gadget.extra-toolbar-buttons","ext.gadget.switcher","ext.centralauth.centralautologin","mmv.head","mmv.bootstrap.autostart","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging.subscriber","ext.wikimediaEvents","ext.navigationTiming","ext.uls.eventlogger","ext.uls.init","ext.uls.compactlinks","ext.uls.interface","ext.3d","ext.centralNotice.geoIP","ext.centralNotice.startUp","skins.vector.js"]);});</script>
<link rel="stylesheet" href="/w/load.php?debug=false&lang=en&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector"/>
<script async="" src="/w/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector"></script>
<meta name="ResourceLoaderDynamicStyles" content=""/>
<link rel="stylesheet" href="/w/load.php?debug=false&lang=en&modules=ext.gadget.charinsert-styles&only=styles&skin=vector"/>
<link rel="stylesheet" href="/w/load.php?debug=false&lang=en&modules=site.styles&only=styles&skin=vector"/>
<meta name="generator" content="MediaWiki 1.32.0-wmf.8"/>
<meta name="referrer" content="origin"/>
<meta name="referrer" content="origin-when-crossorigin"/>
<meta name="referrer" content="origin-when-cross-origin"/>
<link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/World_population_estimates"/>
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=World_population_estimates&action=edit"/>
<link rel="edit" title="Edit this page" href="/w/index.php?title=World_population_estimates&action=edit"/>
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png"/>
<link rel="shortcut icon" href="/static/favicon/wikipedia.ico"/>
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)"/>
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd"/>
<link rel="license" href="//creativecommons.org/licenses/by-sa/3.0/"/>
<link rel="canonical" href="https://en.wikipedia.org/wiki/World_population_estimates"/>
<link rel="dns-prefetch" href="//login.wikimedia.org"/>
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<!--[if lt IE 9]><script src="/w/load.php?debug=false&lang=en&modules=html5shiv&only=scripts&skin=vector&sync=1"></script><![endif]-->
</head>
<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-World_population_estimates rootpage-World_population_estimates skin-vector action-view"> <div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="siteNotice" class="mw-body-content"><!-- CentralNotice --></div><div class="mw-indicators mw-body-content">
</div>
<h1 id="firstHeading" class="firstHeading" lang="en">World population estimates</h1> <div id="bodyContent" class="mw-body-content">
<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div> <div id="contentSub"></div>
<div id="jump-to-nav"></div> <a class="mw-jump-link" href="#mw-head">Jump to navigation</a>
<a class="mw-jump-link" href="#p-search">Jump to search</a>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p>This article lists estimates of <a href="/wiki/World_population" title="World population">world population</a>, as well as projections of <a href="/wiki/Projections_of_population_growth" title="Projections of population growth">future developments</a>. In summary, estimates for the progression of world population since the late medieval period are in the following ranges:</p>
<table class="wikitable">
<tr>
<td>year</td>
<td>1400</td>
<td>1500</td>
<td>1600</td>
<td>1700</td>
<td>1800</td>
<td>1900</td>
<td>2000</td>
<td>2100<sup id="cite_ref-UNProspect2017_1-0" class="reference"><a href="#cite_note-UNProspect2017-1">[1]</a></sup></td>
</tr>
<tr>
<td>population<br />
(in billions)</td>
<td>0.35–0.40</td>
<td>0.42–0.50</td>
<td>0.50–0.58</td>
<td>0.60–0.68</td>
<td>0.89–0.98</td>
<td>1.56–1.71</td>
<td>6.06–6.15</td>
<td>ca. 10–13</td>
</tr>
<tr>
<td>growth p.a.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">[2]</a></sup></td>
<td><0%</td>
<td><0.12%</td>
<td>0.15%–0.3%</td>
<td>0.1%–0.15%</td>
<td>0.3%–0.5%</td>
<td>0.5%–0.6%</td>
<td>1.3%–1.4%</td>
<td>0.7%–0.8%</td>
</tr>
</table>
<p>Estimates for pre-modern times are necessarily fraught with great uncertainties, and few of the published estimates have <a href="/wiki/Confidence_interval" title="Confidence interval">confidence intervals</a>; in the absence of a straightforward means to assess the error of such estimates, a rough idea of expert consensus can be gained by comparing the values given in independent publications. Population estimates cannot be considered accurate to more than two decimal digits; for example, world population for the year 2012 was estimated at 7.02, 7.06 and 7.08 billion by the <a href="/wiki/United_States_Census_Bureau" title="United States Census Bureau">United States Census Bureau</a>, the <a href="/wiki/Population_Reference_Bureau" title="Population Reference Bureau">Population Reference Bureau</a> and the <a href="/wiki/United_Nations_Department_of_Economic_and_Social_Affairs" title="United Nations Department of Economic and Social Affairs">United Nations Department of Economic and Social Affairs</a>, respectively, corresponding to a spread of estimates of the order of 0.8%.</p>
<p></p>
<div id="toc" class="toc">
<div class="toctitle" lang="en" dir="ltr">
<h2>Contents</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Deep_prehistory"><span class="tocnumber">1</span> <span class="toctext">Deep prehistory</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Historical_population"><span class="tocnumber">2</span> <span class="toctext">Historical population</span></a>
<ul>
<li class="toclevel-2 tocsection-3"><a href="#Before_1950"><span class="tocnumber">2.1</span> <span class="toctext">Before 1950</span></a></li>
<li class="toclevel-2 tocsection-4"><a href="#1950_to_present"><span class="tocnumber">2.2</span> <span class="toctext">1950 to present</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-5"><a href="#Projections"><span class="tocnumber">3</span> <span class="toctext">Projections</span></a></li>
<li class="toclevel-1 tocsection-6"><a href="#By_world_region"><span class="tocnumber">4</span> <span class="toctext">By world region</span></a></li>
<li class="toclevel-1"><a href="#See_also"><span class="tocnumber">5</span> <span class="toctext">See also</span></a></li>
<li class="toclevel-1 tocsection-7"><a href="#References"><span class="tocnumber">6</span> <span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-8"><a href="#Further_reading"><span class="tocnumber">7</span> <span class="toctext">Further reading</span></a></li>
<li class="toclevel-1 tocsection-9"><a href="#External_links"><span class="tocnumber">8</span> <span class="toctext">External links</span></a></li>
</ul>
</div>
<p></p>
<h2><span class="mw-headline" id="Deep_prehistory">Deep prehistory</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=World_population_estimates&action=edit&section=1" title="Edit section: Deep prehistory">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<div role="note" class="hatnote navigation-not-searchable">Further information: <a href="/wiki/Paleodemography" title="Paleodemography">Paleodemography</a></div>
<div class="thumb tright">
<div class="thumbinner" style="width:352px;"><a href="/wiki/File:Population_curve.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Population_curve.svg/350px-Population_curve.svg.png" width="350" height="212" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Population_curve.svg/525px-Population_curve.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Population_curve.svg/700px-Population_curve.svg.png 2x" data-file-width="547" data-file-height="332" /></a>
<div class="thumbcaption">
<div class="magnify"><a href="/wiki/File:Population_curve.svg" class="internal" title="Enlarge"></a></div>
Graph of world population over the past 12,000 years (<a href="/wiki/Holocene" title="Holocene">Holocene</a>).</div>
</div>
</div>
<p>As a general rule, the confidence of estimates on historical world population decreases for the more distant past. Robust population data only exists for the last two or three centuries. Until the late 18th century, few governments had ever performed an accurate census. In many early attempts, such as in <a href="/wiki/Census_in_Egypt" class="mw-redirect" title="Census in Egypt">Ancient Egypt</a> and the <a href="/wiki/Achaemenid_Empire" title="Achaemenid Empire">Persian Empire</a>, the focus was on counting merely a subset of the population for purposes of taxation or military service.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3">[3]</a></sup> Published estimates for the 1st century ("<a href="/wiki/AD_1" title="AD 1">AD 1</a>") suggest an uncertainty of the order of 50% (estimates range between 150 and 330 million). Some estimates extend their timeline into deep prehistory, to "<a href="/wiki/10,000_BC" class="mw-redirect" title="10,000 BC">10,000 BC</a>", i.e. the <a href="/wiki/Holocene" title="Holocene">early Holocene</a>, when world population estimates range roughly between one and ten million (with an uncertainty of up to an order of magnitude).<sup id="cite_ref-4" class="reference"><a href="#cite_note-4">[4]</a></sup><sup id="cite_ref-5" class="reference"><a href="#cite_note-5">[5]</a></sup></p>
<p>Estimates for yet deeper prehistory, into the <a href="/wiki/Paleolithic" title="Paleolithic">Paleolithic</a>, are of a different nature. At this time human populations consisted entirely of non-sedentary <a href="/wiki/Hunter-gatherer" title="Hunter-gatherer">hunter-gatherer</a> populations, with <a href="/wiki/Anatomically_modern_humans" class="mw-redirect" title="Anatomically modern humans">anatomically modern humans</a> existing alongside <a href="/wiki/Archaic_humans" title="Archaic humans">archaic human varieties</a>, some of which are still ancestral to the modern human population due to <a href="/wiki/Archaic_human_admixture_with_modern_humans" title="Archaic human admixture with modern humans">interbreeding with modern humans</a> during the <a href="/wiki/Upper_Paleolithic" title="Upper Paleolithic">Upper Paleolithic</a>. Estimates of the size of these populations are a topic of <a href="/wiki/Paleoanthropology" title="Paleoanthropology">paleoanthropology</a>. A late human <a href="/wiki/Population_bottleneck" title="Population bottleneck">population bottleneck</a> is postulated by some scholars at approximately 70,000 years ago, during the <a href="/wiki/Toba_catastrophe_theory" title="Toba catastrophe theory">Toba catastrophe</a>, when <i><a href="/wiki/Homo_sapiens" title="Homo sapiens">Homo sapiens</a></i> population may have dropped to as low as between 1,000 and 10,000 individuals.<sup id="cite_ref-ambrose1998_6-0" class="reference"><a href="#cite_note-ambrose1998-6">[6]</a></sup><sup id="cite_ref-robock2009_7-0" class="reference"><a href="#cite_note-robock2009-7">[7]</a></sup> For the time of speciation of <i><a href="/wiki/Homo_sapiens" title="Homo sapiens">Homo sapiens</a></i>, some 200,000 years ago, an <a href="/wiki/Effective_population_size" title="Effective population size">effective population size</a> of the order of 10,000 to 30,000 individuals has been estimated, with an actual "census population" of early <i>Homo sapiens</i> of roughly 100,000 to 300,000 individuals.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">[8]</a></sup></p>
<p><span id="Cumulative_population"></span><span id="Number_of_humans_who_have_ever_lived"></span> The question of "how many people have ever lived?" or "what percentage of people who have ever lived are alive today" can be traced to the 1970s.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9">[9]</a></sup> The more dramatic phrasing of "the living outnumber the dead" also dates to the 1970s, a time of <a href="/wiki/Population_explosion" class="mw-redirect" title="Population explosion">population explosion</a> and growing fears of <a href="/wiki/Human_overpopulation" title="Human overpopulation">human overpopulation</a> in the wake of <a href="/wiki/Decolonization" title="Decolonization">decolonization</a> and before the adoption of China's <a href="/wiki/One-child_policy" title="One-child policy">One-child policy</a>. The claim that "the living outnumber the dead" was never accurate (although it may be roughly accurate if only <a href="/wiki/Effective_population_size" title="Effective population size">ancestral population</a> is considered). <a href="/wiki/Arthur_C._Clarke" title="Arthur C. Clarke">Arthur C. Clarke</a> in <i><a href="/wiki/2001:_A_Space_Odyssey" title="2001: A Space Odyssey">2001: A Space Odyssey</a></i> (1968) has the claim that "Behind every man now alive stand 30 ghosts, for that is the ratio by which the dead outnumber the living", which was roughly accurate at the time of writing.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10">[10]</a></sup></p>
<p>Estimates of the "total number of people who have ever lived" is 107.6 billion as of 2011.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11">[11]</a></sup> The answer naturally depends on the definition of "people", i.e. is only <i><a href="/wiki/Homo_sapiens" title="Homo sapiens">Homo sapiens</a></i> to be counted, or all of genus <i><a href="/wiki/Homo" title="Homo">Homo</a></i>, but due to the small population sizes in the Lower Paleolithic, the order of magnitude of the estimate is not affected by the choice of cut-off date substantially more than by the uncertainty of estimates throughout the Neolithic to Iron Age.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12">[12]</a></sup> The estimate is more crucially affected by the estimate of <a href="/wiki/Infant_mortality" title="Infant mortality">infant mortalitys</a> vs. <a href="/wiki/Stillborn" class="mw-redirect" title="Stillborn">stillborn</a> infants, due to the very high infant mortality throughout the pre-modern period. An estimate on the "total number of people who have ever lived" as of 1995 was calculated by Haub (1995) at "about 105 billion births since the dawn of the human race" with a cut-off date at 50,000 BC (beginning of the Upper Paleolithic), and an inclusion of a high infant mortality rate throughout pre-modern history.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">[13]</a></sup></p>
<h2><span class="mw-headline" id="Historical_population">Historical population</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=World_population_estimates&action=edit&section=2" title="Edit section: Historical population">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h3><span class="mw-headline" id="Before_1950">Before 1950</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=World_population_estimates&action=edit&section=3" title="Edit section: Before 1950">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The following table uses <a href="/wiki/Astronomical_year_numbering" title="Astronomical year numbering">astronomical year numbering</a> for dates, negative numbers corresponding roughly to the corresponding year BC (i.e. -10000 = 10,001 BC, etc.). The table starts counting around the <a href="/wiki/Late_Glacial_Maximum" class="mw-redirect" title="Late Glacial Maximum">Late Glacial Maximum</a> period, in which ice retreated and humans started to spread into the northern hemisphere.</p>
<p>From the beginning of the <a href="/wiki/Early_modern_period" title="Early modern period">early modern period</a> until the 20th century, world population has been characterized by a faster-than-exponential growth. For the period of <a href="/wiki/Classical_Antiquity" class="mw-redirect" title="Classical Antiquity">Classical Antiquity</a> to the <a href="/wiki/Middle_Ages" title="Middle Ages">Middle Ages</a>, roughly 500 BC to AD 1500, there has also been a general tendency of growth (estimated at roughly a factor 4 to 5 over the 2,000 year period), but not strictily <a href="/wiki/Monotonic_function" title="Monotonic function">monotonic</a>: A noticeable dip in world population is assumed due to the <a href="/wiki/Black_Death" title="Black Death">Black Death</a> in the mid-14th century.<sup id="cite_ref-Haub1650_14-0" class="reference"><a href="#cite_note-Haub1650-14">[14]</a></sup></p>
<table class="wikitable" style="text-align:right;font-size:small;">
<tr>
<th>Year</th>
<th><a href="/wiki/Population_Reference_Bureau" title="Population Reference Bureau">Population Reference Bureau</a>
<p>(1973–2016)<sup id="cite_ref-Population_Reference_Bureau_15-0" class="reference"><a href="#cite_note-Population_Reference_Bureau-15">[15]</a></sup></p>
</th>
<th><a href="/wiki/United_Nations_Department_of_Economic_and_Social_Affairs" title="United Nations Department of Economic and Social Affairs">United Nations Department of Economic and Social Affairs</a>
<p>(2015)<sup id="cite_ref-The_World_at_Six_Billion,_1999_16-0" class="reference"><a href="#cite_note-The_World_at_Six_Billion,_1999-16">[16]</a></sup></p>
</th>
<th><a href="/wiki/Angus_Maddison" title="Angus Maddison">Maddison</a>
<p>(2008)<sup id="cite_ref-www.ggdc.net/maddison/Historical_Statistics_17-0" class="reference"><a href="#cite_note-www.ggdc.net/maddison/Historical_Statistics-17">[17]</a></sup></p>
</th>
<th>HYDE
<p>(2010)<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2017)">citation needed</span></a></i>]</sup></p>
</th>
<th><a href="/wiki/John_Tanton" title="John Tanton">Tanton</a>
<p>(1994)<sup id="cite_ref-thesocialcontract.com_18-0" class="reference"><a href="#cite_note-thesocialcontract.com-18">[18]</a></sup></p>
</th>
<th>Biraben
<p>(1980)<sup id="cite_ref-French_1980,_pp._1_19-0" class="reference"><a href="#cite_note-French_1980,_pp._1-19">[19]</a></sup></p>
</th>
<th><a href="/wiki/Colin_McEvedy" title="Colin McEvedy">McEvedy</a> &
<p>Jones (1978)<sup id="cite_ref-Richard_Jones_1978_20-0" class="reference"><a href="#cite_note-Richard_Jones_1978-20">[20]</a></sup></p>
</th>
<th>Thomlinson
<p>(1975)<sup id="cite_ref-ReferenceA_21-0" class="reference"><a href="#cite_note-ReferenceA-21">[21]</a></sup></p>
</th>
<th>Durand
<p>(1974)<sup id="cite_ref-John_D._Durand_1974_22-0" class="reference"><a href="#cite_note-John_D._Durand_1974-22">[22]</a></sup></p>
</th>
<th><a href="/wiki/Colin_Clark_(economist)" title="Colin Clark (economist)">Clark</a>
<p>(1967)<sup id="cite_ref-Colin_Clark_1967_23-0" class="reference"><a href="#cite_note-Colin_Clark_1967-23">[23]</a></sup></p>
</th>
</tr>
<tr>
<td>-10000</td>
<td></td>
<td></td>
<td></td>
<td>2M<sup id="cite_ref-mnp.nl_24-0" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td></td>
<td></td>
<td>4M</td>
<td>1–10M</td>
<td></td>
<td></td>
</tr>
<tr>
<td>-9000</td>
<td></td>
<td></td>
<td></td>
<td>4M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-8000</td>
<td>5M</td>
<td></td>
<td></td>
<td>5M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>5–10M</td>
<td></td>
</tr>
<tr>
<td>-7000</td>
<td></td>
<td></td>
<td></td>
<td>8M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-6000</td>
<td></td>
<td></td>
<td></td>
<td>11M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-5000</td>
<td></td>
<td></td>
<td></td>
<td>18M<sup id="cite_ref-mnp.nl_24-1" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td></td>
<td></td>
<td>5M</td>
<td>5–20M</td>
<td></td>
<td></td>
</tr>
<tr>
<td>-4000</td>
<td></td>
<td></td>
<td></td>
<td>28M</td>
<td></td>
<td></td>
<td>7M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-3000</td>
<td></td>
<td></td>
<td></td>
<td>45M</td>
<td></td>
<td></td>
<td>14M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-2000</td>
<td></td>
<td></td>
<td></td>
<td>72M</td>
<td></td>
<td></td>
<td>27M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-1000</td>
<td></td>
<td></td>
<td></td>
<td>115M</td>
<td></td>
<td></td>
<td>50M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>-200</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>150M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1</td>
<td>300M<sup id="cite_ref-25" class="reference"><a href="#cite_note-25">[25]</a></sup></td>
<td>300M</td>
<td>231M<sup id="cite_ref-26" class="reference"><a href="#cite_note-26">[26]</a></sup></td>
<td>188M<sup id="cite_ref-mnp.nl_24-2" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td>150M</td>
<td>255M</td>
<td>170M</td>
<td>200M</td>
<td>270–330M</td>
<td>256M<sup id="cite_ref-27" class="reference"><a href="#cite_note-27">[27]</a></sup></td>
</tr>
<tr>
<td>100</td>
<td></td>
<td></td>
<td></td>
<td>195M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>200</td>
<td></td>
<td></td>
<td></td>
<td>202M</td>
<td></td>
<td>256M</td>
<td>190M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>300</td>
<td></td>
<td></td>
<td></td>
<td>205M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>350</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>254M</td>
</tr>
<tr>
<td>400</td>
<td></td>
<td></td>
<td></td>
<td>209M</td>
<td></td>
<td>206M</td>
<td>190M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>500</td>
<td></td>
<td></td>
<td></td>
<td>210M<sup id="cite_ref-mnp.nl_24-3" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td></td>
<td>206M</td>
<td>190M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>600</td>
<td></td>
<td></td>
<td></td>
<td>213M</td>
<td></td>
<td>206M</td>
<td>200M</td>
<td></td>
<td></td>
<td>237M</td>
</tr>
<tr>
<td>700</td>
<td></td>
<td></td>
<td></td>
<td>226M</td>
<td></td>
<td>207M</td>
<td>210M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>800</td>
<td></td>
<td></td>
<td></td>
<td>240M</td>
<td></td>
<td>224M</td>
<td>220M</td>
<td></td>
<td></td>
<td>261M</td>
</tr>
<tr>
<td>900</td>
<td></td>
<td></td>
<td></td>
<td>269M</td>
<td></td>
<td>226M</td>
<td>240M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1000</td>
<td></td>
<td>310M</td>
<td>267M</td>
<td>295M<sup id="cite_ref-mnp.nl_24-4" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td></td>
<td>254M</td>
<td>265M</td>
<td></td>
<td>275–345M</td>
<td>280M</td>
</tr>
<tr>
<td>1100</td>
<td></td>
<td></td>
<td></td>
<td>353M</td>
<td></td>
<td>301M</td>
<td>320M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1200</td>
<td></td>
<td></td>
<td></td>
<td>393M</td>
<td></td>
<td>400M</td>
<td>360M</td>
<td></td>
<td></td>
<td>384M</td>
</tr>
<tr>
<td>1250</td>
<td></td>
<td>400M</td>
<td></td>
<td></td>
<td></td>
<td>416M</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1300</td>
<td></td>
<td></td>
<td></td>
<td>392M</td>
<td>300M</td>
<td>432M</td>
<td>360M</td>
<td>400M</td>
<td></td>
<td></td>
</tr>
<tr>
<td>1340</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>443M</td>
<td></td>
<td></td>
<td></td>
<td>378M</td>
</tr>
<tr>
<td>1400</td>
<td></td>
<td></td>
<td></td>
<td>390M</td>
<td></td>
<td>374M</td>
<td>350M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1500</td>
<td></td>
<td>500M</td>
<td>438M</td>
<td>461M<sup id="cite_ref-mnp.nl_24-5" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td>460M</td>
<td>425M</td>
<td></td>
<td></td>
<td>440–540M</td>
<td>427M</td>
</tr>
<tr>
<td>1600</td>
<td></td>
<td></td>
<td>556M</td>
<td>554M<sup id="cite_ref-mnp.nl_24-6" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td></td>
<td>579M</td>
<td>545M</td>
<td></td>
<td></td>
<td>498M</td>
</tr>
<tr>
<td>1650</td>
<td>(<700M)<sup id="cite_ref-Haub1650_14-1" class="reference"><a href="#cite_note-Haub1650-14">[14]</a></sup></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>545M</td>
<td>500M</td>
<td></td>
<td>516M</td>
</tr>
<tr>
<td>1700</td>
<td></td>
<td></td>
<td>603M</td>
<td>603M<sup id="cite_ref-mnp.nl_24-7" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td>600M</td>
<td>679M</td>
<td>610M</td>
<td>600M</td>
<td></td>
<td>641M</td>
</tr>
<tr>
<td>1750</td>
<td></td>
<td>791M</td>
<td></td>
<td>814M</td>
<td></td>
<td>770M</td>
<td>720M</td>
<td>700M</td>
<td>735–805M</td>
<td>731M</td>
</tr>
<tr>
<td>1800</td>
<td>1,000M</td>
<td>978M</td>
<td></td>
<td>989M<sup id="cite_ref-mnp.nl_24-8" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td>900M</td>
<td>954M</td>
<td>900M</td>
<td>900M</td>
<td></td>
<td>890M</td>
</tr>
<tr>
<td>1820</td>
<td></td>
<td></td>
<td>1,042M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1850</td>
<td>1,265M</td>
<td>1,262M</td>
<td></td>
<td>1,263M</td>
<td></td>
<td>1,241M</td>
<td>1,200M</td>
<td>1,200M</td>
<td></td>
<td></td>
</tr>
<tr>
<td>1870</td>
<td></td>
<td></td>
<td>1,276M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1875</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>1,325M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1900</td>
<td>1,656M</td>
<td>1,650M</td>
<td>1,563M</td>
<td>1,654M<sup id="cite_ref-mnp.nl_24-9" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></td>
<td>1,600M</td>
<td>1,633M</td>
<td>1,625M</td>
<td>1,600M</td>
<td>1,650–1,710M</td>
<td>1,668M</td>
</tr>
<tr>
<td>1910</td>
<td></td>
<td>1,750M</td>
<td></td>
<td>1,777M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1913</td>
<td></td>
<td></td>
<td>1,793M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1920</td>
<td></td>
<td>1,860M</td>
<td>1,863M</td>
<td>1,912M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>1,968M</td>
</tr>
<tr>
<td>1925</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>2,000M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1930</td>
<td></td>
<td>2,070M</td>
<td></td>
<td>2,092M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>2,145M</td>
</tr>
<tr>
<td>1940</td>
<td></td>
<td>2,300M</td>
<td>2,299M</td>
<td>2,307M</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>2,340M</td>
</tr>
</table>
<h3><span class="mw-headline" id="1950_to_present">1950 to present</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=World_population_estimates&action=edit&section=4" title="Edit section: 1950 to present">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>For times after <a href="/wiki/World_War_II" title="World War II">World War II</a>, demographic data of some accuracy becomes available for a significant number of countries, and population estimates are often given as grand totals of numbers (typically given by country) of widely diverging accuracies. Some sources give these numbers rounded to the nearest million or the nearest thousand, while others give them without any rounding.</p>
<p>Taking these numbers at face value would be <a href="/wiki/False_precision" title="False precision">false precision</a>; in spite of being stated to four, seven or even ten digits, they should not be interpreted as accurate to more than three digits at best (estimates by the <a href="/wiki/United_States_Census_Bureau" title="United States Census Bureau">United States Census Bureau</a> and by the <a href="/wiki/United_Nations_Department_of_Economic_and_Social_Affairs" title="United Nations Department of Economic and Social Affairs">United Nations</a> differ by about 0.5%–1.5%).</p>
<table class="wikitable" style="text-align:right;font-size:small;">
<tr>
<th>Year</th>
<th><a href="/wiki/United_States_Census_Bureau" title="United States Census Bureau">United States Census Bureau</a>
<p>(2017)<sup id="cite_ref-census.gov_28-0" class="reference"><a href="#cite_note-census.gov-28">[28]</a></sup></p>
</th>
<th><a href="/wiki/Population_Reference_Bureau" title="Population Reference Bureau">Population Reference Bureau</a>
<p>(1973–2016)<sup id="cite_ref-Population_Reference_Bureau_15-1" class="reference"><a href="#cite_note-Population_Reference_Bureau-15">[15]</a></sup></p>
</th>
<th><a href="/wiki/United_Nations_Department_of_Economic_and_Social_Affairs" title="United Nations Department of Economic and Social Affairs">United Nations Department of Economic and Social Affairs</a>
<p>(2015)<sup id="cite_ref-The_World_at_Six_Billion,_1999_16-1" class="reference"><a href="#cite_note-The_World_at_Six_Billion,_1999-16">[16]</a></sup></p>
</th>
<th><a href="/wiki/Angus_Maddison" title="Angus Maddison">Maddison</a>
<p>(2008)<sup id="cite_ref-www.ggdc.net/maddison/Historical_Statistics_17-1" class="reference"><a href="#cite_note-www.ggdc.net/maddison/Historical_Statistics-17">[17]</a></sup></p>
</th>
<th>HYDE
<p>(2007)<sup id="cite_ref-mnp.nl_24-10" class="reference"><a href="#cite_note-mnp.nl-24">[24]</a></sup></p>
</th>
<th><a href="/wiki/John_Tanton" title="John Tanton">Tanton</a>
<p>(1994)<sup id="cite_ref-thesocialcontract.com_18-1" class="reference"><a href="#cite_note-thesocialcontract.com-18">[18]</a></sup></p>
</th>
<th>Biraben
<p>(1980)<sup id="cite_ref-French_1980,_pp._1_19-1" class="reference"><a href="#cite_note-French_1980,_pp._1-19">[19]</a></sup></p>
</th>
<th><a href="/wiki/Colin_McEvedy" title="Colin McEvedy">McEvedy</a> &
<p>Jones (1978)<sup id="cite_ref-Richard_Jones_1978_20-1" class="reference"><a href="#cite_note-Richard_Jones_1978-20">[20]</a></sup></p>
</th>
<th>Thomlinson
<p>(1975)<sup id="cite_ref-ReferenceA_21-1" class="reference"><a href="#cite_note-ReferenceA-21">[21]</a></sup></p>
</th>
<th>Durand
<p>(1974)<sup id="cite_ref-John_D._Durand_1974_22-1" class="reference"><a href="#cite_note-John_D._Durand_1974-22">[22]</a></sup></p>
</th>
<th><a href="/wiki/Colin_Clark_(economist)" title="Colin Clark (economist)">Clark</a>
<p>(1967)<sup id="cite_ref-Colin_Clark_1967_23-1" class="reference"><a href="#cite_note-Colin_Clark_1967-23">[23]</a></sup></p>
</th>
</tr>
<tr>
<td>1950</td>
<td>2,557,628,654</td>
<td>2,516,000,000</td>
<td>2,525,149,000</td>
<td>2,544,000,000</td>
<td>2,527,960,000</td>
<td>2,400,000,000</td>
<td>2,527,000,000</td>
<td>2,500,000,000</td>
<td>2,400,000,000</td>
<td></td>
<td>2,486,000,000</td>
</tr>
<tr>
<td>1951</td>
<td>2,594,939,877</td>
<td></td>
<td>2,572,850,917</td>
<td>2,571,663,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1952</td>
<td>2,636,772,306</td>
<td></td>
<td>2,619,292,068</td>
<td>2,617,949,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1953</td>
<td>2,682,053,389</td>
<td></td>
<td>2,665,865,392</td>
<td>2,665,959,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1954</td>
<td>2,730,228,104</td>
<td></td>
<td>2,713,172,027</td>
<td>2,716,927,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1955</td>
<td>2,782,098,943</td>
<td></td>
<td>2,761,650,981</td>
<td>2,769,074,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1956</td>
<td>2,835,299,673</td>
<td></td>
<td>2,811,572,031</td>
<td>2,822,502,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1957</td>
<td>2,891,349,717</td>
<td></td>
<td>2,863,042,795</td>
<td>2,879,934,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1958</td>
<td>2,948,137,248</td>
<td></td>
<td>2,916,030,167</td>
<td>2,939,254,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1959</td>
<td>3,000,716,593</td>
<td></td>
<td>2,970,395,814</td>
<td>2,995,909,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1960</td>
<td>3,043,001,508</td>
<td></td>
<td>3,026,002,942</td>
<td>3,041,507,000</td>
<td>3,042,000,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1961</td>
<td>3,083,966,929</td>
<td></td>
<td>3,082,830,266</td>
<td>3,082,161,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1962</td>
<td>3,140,093,217</td>
<td></td>
<td>3,141,071,531</td>
<td>3,135,787,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>3,036,000,000</td>
</tr>
<tr>
<td>1963</td>
<td>3,209,827,882</td>
<td></td>
<td>3,201,178,277</td>
<td>3,201,354,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1964</td>
<td>3,281,201,306</td>
<td></td>
<td>3,263,738,832</td>
<td>3,266,477,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>