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
2587 lines (2574 loc) · 119 KB
/
World_population_estimates.html
File metadata and controls
2587 lines (2574 loc) · 119 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":776584301,"wgRevisionId":776584301,"wgArticleId":7982330,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["CS1 maint: Multiple names: authors list","Webarchive template wayback links","Pages using ISBN magic 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":"WUVMAgpAMFMAAL7EJi4AAABS","wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgFlaggedRevsParams":{"tags":{}},"wgStableRevisionId":null,"wgWikiEditorEnabledModules":{"toolbar":true,"preview":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":false,"wgPopupsShouldSendModuleToUser":false,"wgPopupsConflictsWithNavPopupGadget":false,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","usePageImages":true,"usePageDescriptions":true},"wgPreferredVariant":"en","wgMFExpandAllSectionsUserOption":false,"wgMFDisplayWikibaseDescriptions":{"search":true,"nearby":true,"watchlist":true,"tagline":false},"wgRelatedArticles":null,"wgRelatedArticlesUseCirrusSearch":true,"wgRelatedArticlesOnlyUseCirrusSearch":false,"wgULSCurrentAutonym":"English","wgNoticeProject":"wikipedia","wgCentralNoticeCookiesToDelete":[],"wgCentralNoticeCategoriesUsingLegacy":["Fundraising","fundraising"],"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgWikibaseItemId":"Q3400788","wgCentralAuthMobileDomain":false,"wgVisualEditorToolbarScrollOffset":0,"wgVisualEditorUnsupportedEditParams":["preload","preloadparams","preloadtitle","undo","undoafter","veswitched"],"wgEditSubmitButtonLabelPublish":false});mw.loader.state({"ext.globalCssJs.user.styles":"ready","ext.globalCssJs.site.styles":"ready","site.styles":"ready","noscript":"ready","user.styles":"ready","user":"ready","user.options":"loading","user.tokens":"loading","ext.cite.styles":"ready","wikibase.client.init":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","ext.wikimediaBadges":"ready","mediawiki.legacy.shared":"ready","mediawiki.legacy.commonPrint":"ready","mediawiki.sectionAnchor":"ready","mediawiki.skinning.interface":"ready","skins.vector.styles":"ready","ext.globalCssJs.user":"ready","ext.globalCssJs.site":"ready"});mw.loader.implement("user.options@0j3lz3q",function($,jQuery,require,module){mw.user.options.set({"variant":"en"});});mw.loader.implement("user.tokens@1dqfd7l",function ( $, jQuery, require, module ) {
mw.user.tokens.set({"editToken":"+\\","patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});/*@nomin*/;
});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.gadget.featured-articles-links","ext.centralauth.centralautologin","mmv.head","mmv.bootstrap.autostart","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging.subscriber","ext.wikimediaEvents","ext.navigationTiming","ext.uls.eventlogger","ext.uls.init","ext.uls.interface","ext.quicksurveys.init","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.sectionAnchor%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=site.styles&only=styles&skin=vector"/>
<meta name="generator" content="MediaWiki 1.30.0-wmf.5"/>
<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="copyright" 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" />
</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">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"></div>
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-head">navigation</a>, <a href="#p-search">search</a>
</div>
<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> over the course of <a href="/wiki/World_history" title="World history">history</a> and <a href="/wiki/Prehistory" title="Prehistory">prehistory</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>
</tr>
<tr>
<td>population<br />
(in millions)</td>
<td>350–400</td>
<td>425–500</td>
<td>500–580</td>
<td>600–680</td>
<td>890–980</td>
<td>1,560–1,710</td>
<td>6,060–6,150</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">
<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 tocsection-7"><a href="#See_also"><span class="tocnumber">5</span> <span class="toctext">See also</span></a></li>
<li class="toclevel-1 tocsection-8"><a href="#References"><span class="tocnumber">6</span> <span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-9"><a href="#Further_reading"><span class="tocnumber">7</span> <span class="toctext">Further reading</span></a></li>
<li class="toclevel-1 tocsection-10"><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>
<p>Most published estimates of historical world population begin at "<a href="/wiki/Year_zero" title="Year zero">year zero</a>" of the <a href="/wiki/Common_Era" title="Common Era">Common Era</a>, when world population was in the nine digits (estimates range between 150 and 330 million).</p>
<p>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/Last_Glacial_Maximum_refugia" title="Last Glacial Maximum refugia">last glacial maximum</a>,<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup> when world population estimates range roughly between one and ten million.</p>
<p>Estimates for yet deeper prehistory, into the <a href="/wiki/Upper_Paleolithic" title="Upper Paleolithic">Upper 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, which fall into a number of <a href="/wiki/Archaic_Homo_sapiens" class="mw-redirect" title="Archaic Homo sapiens">archaic species or sub-species</a>, some but not all of which may be ancestral to the modern human population due to possible <a href="/wiki/Archaic_human_admixture_with_modern_humans" title="Archaic human admixture with modern humans">archaic human admixture with modern humans</a> taking place during the Upper Paleolithic. 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 the <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_2-0" class="reference"><a href="#cite_note-ambrose1998-2">[2]</a></sup><sup id="cite_ref-3" class="reference"><a href="#cite_note-3">[3]</a></sup><sup id="cite_ref-robock2009_4-0" class="reference"><a href="#cite_note-robock2009-4">[4]</a></sup></p>
<p>For the time of speciation of <i><a href="/wiki/Homo_sapiens" title="Homo sapiens">Homo sapiens</a></i>, ca. 130,000 years ago, Sjödin et al. (2012) estimate 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, inferring an actual "census population" of early <i>Homo sapiens</i> of roughly 100,000 to 300,000 individuals.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">[5]</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>
<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>
<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>
<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–2015)<sup id="cite_ref-Population_Reference_Bureau_6-0" class="reference"><a href="#cite_note-Population_Reference_Bureau-6">[6]</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.2C_1999_7-0" class="reference"><a href="#cite_note-The_World_at_Six_Billion.2C_1999-7">[7]</a></sup></p>
</th>
<th><a href="/wiki/Angus_Maddison" title="Angus Maddison">Maddison</a>
<p>(2008)<sup id="cite_ref-www.ggdc.net.2Fmaddison.2FHistorical_Statistics_8-0" class="reference"><a href="#cite_note-www.ggdc.net.2Fmaddison.2FHistorical_Statistics-8">[8]</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_9-0" class="reference"><a href="#cite_note-thesocialcontract.com-9">[9]</a></sup></p>
</th>
<th>Biraben
<p>(1980)<sup id="cite_ref-French_1980.2C_pp._1_10-0" class="reference"><a href="#cite_note-French_1980.2C_pp._1-10">[10]</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_11-0" class="reference"><a href="#cite_note-Richard_Jones_1978-11">[11]</a></sup></p>
</th>
<th>Thomlinson
<p>(1975)<sup id="cite_ref-ReferenceA_12-0" class="reference"><a href="#cite_note-ReferenceA-12">[12]</a></sup></p>
</th>
<th>Durand
<p>(1974)<sup id="cite_ref-John_D._Durand_1974_13-0" class="reference"><a href="#cite_note-John_D._Durand_1974-13">[13]</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_14-0" class="reference"><a href="#cite_note-Colin_Clark_1967-14">[14]</a></sup></p>
</th>
</tr>
<tr>
<td>-10000</td>
<td></td>
<td></td>
<td></td>
<td>2M<sup id="cite_ref-mnp.nl_15-0" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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_15-1" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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</td>
<td>300M</td>
<td>231M<sup id="cite_ref-16" class="reference"><a href="#cite_note-16">[16]</a></sup></td>
<td>188M<sup id="cite_ref-mnp.nl_15-2" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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-17" class="reference"><a href="#cite_note-17">[17]</a></sup></td>
</tr>
<tr>
<td>100</td>
<td>300M</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>300M</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>300M</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>300M</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>280M</td>
<td></td>
<td></td>
<td>210M<sup id="cite_ref-mnp.nl_15-3" class="reference"><a href="#cite_note-mnp.nl-15">[15]</a></sup></td>
<td></td>
<td>206M</td>
<td>190M</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>600</td>
<td>300M</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>310M</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>330M</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>360M</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>400M</td>
<td>310M</td>
<td>267M</td>
<td>295M<sup id="cite_ref-mnp.nl_15-4" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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>450M</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>500M</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>440M</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>500M</td>
<td>500M</td>
<td>438M</td>
<td>461M<sup id="cite_ref-mnp.nl_15-5" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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>560M</td>
<td></td>
<td>556M</td>
<td>554M<sup id="cite_ref-mnp.nl_15-6" class="reference"><a href="#cite_note-mnp.nl-15">[15]</a></sup></td>
<td></td>
<td>579M</td>
<td>545M</td>
<td></td>
<td></td>
<td>498M</td>
</tr>
<tr>
<td>1650</td>
<td>500M</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>660M</td>
<td></td>
<td>603M</td>
<td>603M<sup id="cite_ref-mnp.nl_15-7" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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>795M</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_15-8" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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_15-9" class="reference"><a href="#cite_note-mnp.nl-15">[15]</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. 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.</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>(2015)<sup id="cite_ref-census.gov_18-0" class="reference"><a href="#cite_note-census.gov-18">[18]</a></sup></p>
</th>
<th><a href="/wiki/Population_Reference_Bureau" title="Population Reference Bureau">Population Reference Bureau</a>
<p>(1973–2015)<sup id="cite_ref-Population_Reference_Bureau_6-1" class="reference"><a href="#cite_note-Population_Reference_Bureau-6">[6]</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.2C_1999_7-1" class="reference"><a href="#cite_note-The_World_at_Six_Billion.2C_1999-7">[7]</a></sup></p>
</th>
<th><a href="/wiki/Angus_Maddison" title="Angus Maddison">Maddison</a>
<p>(2008)<sup id="cite_ref-www.ggdc.net.2Fmaddison.2FHistorical_Statistics_8-1" class="reference"><a href="#cite_note-www.ggdc.net.2Fmaddison.2FHistorical_Statistics-8">[8]</a></sup></p>
</th>
<th>HYDE
<p>(2007)<sup id="cite_ref-mnp.nl_15-10" class="reference"><a href="#cite_note-mnp.nl-15">[15]</a></sup></p>
</th>
<th><a href="/wiki/John_Tanton" title="John Tanton">Tanton</a>
<p>(1994)<sup id="cite_ref-thesocialcontract.com_9-1" class="reference"><a href="#cite_note-thesocialcontract.com-9">[9]</a></sup></p>
</th>
<th>Biraben
<p>(1980)<sup id="cite_ref-French_1980.2C_pp._1_10-1" class="reference"><a href="#cite_note-French_1980.2C_pp._1-10">[10]</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_11-1" class="reference"><a href="#cite_note-Richard_Jones_1978-11">[11]</a></sup></p>
</th>
<th>Thomlinson
<p>(1975)<sup id="cite_ref-ReferenceA_12-1" class="reference"><a href="#cite_note-ReferenceA-12">[12]</a></sup></p>
</th>
<th>Durand
<p>(1974)<sup id="cite_ref-John_D._Durand_1974_13-1" class="reference"><a href="#cite_note-John_D._Durand_1974-13">[13]</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_14-1" class="reference"><a href="#cite_note-Colin_Clark_1967-14">[14]</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>
<tr>
<td>1965</td>
<td>3,350,425,793</td>
<td></td>
<td>3,329,122,479</td>
<td>3,333,138,000</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1966</td>
<td>3,420,677,923</td>
<td></td>
<td>3,397,475,247</td>