-
Notifications
You must be signed in to change notification settings - Fork 71
/
Economy.kif
6359 lines (5011 loc) · 218 KB
/
Economy.kif
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
;; Ontology of Economy
;;
;; Access to and use of these products is governed by the GNU General Public
;; License <http://www.gnu.org/copyleft/gpl.html>.
;; By using these products, you agree to be bound by the terms
;; of the GPL.
;;
;; Those who are interested in making use of this ontology are urged
;; to contact Adam Pease ([email protected]).
;; We ask the people using or referencing this work cite our primary paper:
;;
;; Nles, I., and Pease, A. 2001. Towards a Standard Upper Ontology. In
;; Proceedings of the 2nd International Conference on Formal Ontology in
;; Information Systems (FOIS-2001), Chris Welty and Barry Smith, eds,
;; Ogunquit, Maine, October 17-19, 2001. See also www.ontologyportal.org
;;
;; Ontology dependencies: Merge.txt, Government.kif, Geography.kif, Transportation.kif,
;; naics.kif, elements.kif
;;--------------------------------------------------------------------------
;; Outline:
;; I. Economy Concepts for CIA World Fact Book
;; A. Economy - overview
;; B. GDP
;; C. GDP - real growth rate
;; D. GDP - per capita
;; E. GDP - composition by sector
;; F. Population below poverty line
;; G. Household income or consumption by percentage share
;; 1. lowest 10%
;; 2. highest 10%
;; 3. Distribution of family income - Gini index
;; H. Inflation rate (consumer prices)
;; I. Labor force
;; J. Labor force - by occupation
;; K. Unemployment rate
;; L. Budget
;; M. Industries
;; N. Industrial production growth rate
;; O. Electricity - production
;; P. Electricity - production by source
;; Q. Electricity - consumption
;; R. Electricity - exports
;; S. Electricity - imports
;; T. Agriculture - products
;; U. Exports
;; V. Exports - commodities
;; W. Exports - partners
;; X. Imports
;; Y. Imports - commodities
;; Z. Imports - partners
;; AA. Debt - external
;; BB. Economic aid - donor
;; CC. Economic aid - recipient
;; DD. Currency
;; EE. Currency code
;; FF. Exchange rates
;; GG. Fiscal year
;;
;; II. Economy Background Terms for CIA World Fact Book
;; A. Agricultural Products
;; B. Raw Materials and Resources (Non-agricultural)
;; C. Manufactured Goods (1): Capital Goods
;; D. Manufactured Goods (2): Consumer Goods
;; (a) Durable Goods
;; (b) Non-durable Consumer Goods
;; E. Agricultural Production Processes
;;--------------------------------------------------------------------------
;; ECONOMY ONTOLOGY
;;--------------------------------------------------------------------------
;; I. Economy Concepts for CIA World Fact Book
;; A. Economy - overview
;; Covers type of economy, including degree of market orientation
;; and level of economic development
(instance economyType BinaryPredicate)
(domain economyType 1 AutonomousAgent)
;; GeopoliticalArea or GovernmentOrganization
(domain economyType 2 EconomicAttribute)
(subrelation economyType attribute)
(documentation economyType EnglishLanguage "(&%economyType ?POLITY ?TYPE) means that the
&%GeopoliticalArea ?POLITY has an economic system of &%TYPE.")
(=>
(economyType ?AGENT ?ATTRIBUTE)
(or
(instance ?AGENT GeopoliticalArea)
(instance ?AGENT Organization)))
;; KJN: Moving this to Mid-level-ontology.kif as there are dependent axioms there.
;;(subclass EconomicAttribute RelationalAttribute)
;;(subclass EconomicAttribute PoliticoEconomicAttribute)
;;(documentation EconomicAttribute EnglishLanguage "&%EconomicAttribute is the class
;;of terms including all &%Attributes used to characterize the
;;economic systems or development levels of &%Nations or dependent
;;&%GeopoliticalAreas.")
(subclass EconomicDevelopmentLevel EconomicAttribute)
(documentation EconomicDevelopmentLevel EnglishLanguage
"&%EconomicDevelopmentLevel is a subclass of &%EconomicAttribute
containing terms used to describe the economic development level of a
&%Nation or &%GeopoliticalArea. This class is further subdivided into
different scales devised or used by different agencies.")
;;---------------------------------
;; Economic Levels used by United Nations agencies:
(subclass UNEconomicDevelopmentLevel EconomicDevelopmentLevel)
(documentation UNEconomicDevelopmentLevel EnglishLanguage "&%UNEconomicDevelopmentLevel
is a subclass of &%EconomicDevelopmentLevel containing terms used to
represent economic development classifications used by &%UnitedNations
agencies. The top level of this classification scheme includes the
concepts of &%DevelopedCountry, &%FormerSovietOrEasternEuropeanCountry,
and &%LessDevelopedCountry.")
(instance DevelopedCountry UNEconomicDevelopmentLevel)
(formerName "First World" DevelopedCountry)
(conventionalLongName "Developed Country" DevelopedCountry)
(names "industrial country" DevelopedCountry)
(conventionalShortName "the North" DevelopedCountry)
(documentation DevelopedCountry EnglishLanguage
"&%DevelopedCountry (DC) is a term used to describe members of the top
group in the &%UNEconomicDevelopmentLevels. &%DevelopedCountry includes
market-oriented economies of mainly democratic nations, including members
of the &%OrganizationForEconomicCooperationAndDevelopment (OECD). DCs
are also known as First World countries, 'the North', and industrial
countries. Developed countries generally have high incomes (high per
capita GDP or GNI), but there are exceptions to DC membership both above
and below that standard. There is significant overlap, but not perfect
congruence, between the UN category &%DevelopedCountry and the IMF
category &%AdvancedEconomy.")
(cardinality (ExtensionFn DevelopedCountry) 35)
(economyType Andorra DevelopedCountry)
(economyType Australia DevelopedCountry)
(economyType Austria DevelopedCountry)
(economyType Belgium DevelopedCountry)
(economyType Bermuda DevelopedCountry)
(economyType Canada DevelopedCountry)
(economyType Denmark DevelopedCountry)
(economyType FaroeIslands DevelopedCountry)
(economyType Finland DevelopedCountry)
(economyType France DevelopedCountry)
(economyType Germany DevelopedCountry)
(economyType Greece DevelopedCountry)
(economyType HolySee DevelopedCountry)
(economyType Iceland DevelopedCountry)
(economyType Ireland DevelopedCountry)
(economyType Israel DevelopedCountry)
(economyType Italy DevelopedCountry)
(economyType Japan DevelopedCountry)
(economyType Liechtenstein DevelopedCountry)
(economyType Luxembourg DevelopedCountry)
(economyType Malta DevelopedCountry)
(economyType Mexico DevelopedCountry)
(economyType Monaco DevelopedCountry)
(economyType Netherlands DevelopedCountry)
(economyType NewZealand DevelopedCountry)
(economyType Norway DevelopedCountry)
(economyType Portugal DevelopedCountry)
(economyType SanMarino DevelopedCountry)
(economyType SouthAfrica DevelopedCountry)
(economyType Spain DevelopedCountry)
(economyType Sweden DevelopedCountry)
(economyType Switzerland DevelopedCountry)
(economyType Turkey DevelopedCountry)
(economyType UnitedKingdom DevelopedCountry)
(economyType UnitedStates DevelopedCountry)
(instance FormerSovietOrEasternEuropeanCountry UNEconomicDevelopmentLevel)
(names "Former Soviet or Eastern European Country" FormerSovietOrEasternEuropeanCountry)
(names "Former Soviet" FormerSovietOrEasternEuropeanCountry)
(names "Former Eastern European" FormerSovietOrEasternEuropeanCountry)
(formerName "Second World" FormerSovietOrEasternEuropeanCountry)
(successorAttribute FormerSovietOrEasternEuropeanCountry DevelopedCountry)
(=>
(attribute ?AREA FormerSovietOrEasternEuropeanCountry)
(economyType ?AREA CountryInTransition))
(documentation FormerSovietOrEasternEuropeanCountry EnglishLanguage
"&%FormerSovietOrEasternEuropeanCountry (former USSR-EE) is an
&%Attribute that characterizes countries that were part of the former
Soviet Union or its sphere of influence in Eastern Europe. This level
occupies a middle position between &%DevelopedCountry (DC) and
&%LessDevelopedCountry (LDC) in &%UNEconomicDevelopmentLevels.
Previously, former USSR-EE countries had a &%CentrallyPlannedEconomy and
were Marxist-Leninist states. Many are now evolving away from command
economies to market economic systems. During the 1980's, the group
included Albania, Bulgaria, Cambodia, China, Cuba, Czechoslovakia, the
German Democratic Republic (East Germany), Hungary, North Korea, Laos,
Mongolia, Poland, Romania, the USSR, Vietnam and Yugoslavia.")
(instance LessDevelopedCountry UNEconomicDevelopmentLevel)
(conventionalLongName "Less Developed Country" LessDevelopedCountry)
(formerName "Third World" LessDevelopedCountry)
(successorAttribute LessDevelopedCountry FormerSovietOrEasternEuropeanCountry)
(documentation LessDevelopedCountry EnglishLanguage "&%LessDevelopedCountry (LDC) is
the &%Attribute used to describe the bottom group in the hierarchy
of &%UNEconomicDevelopmentLevels. Less developed countries are countries
or dependent areas with low levels of production, living standards,
and technology. Per capita GDP (&%perCapitaGDPInPeriod), or GDI
(Gross Domestic Income), is generally less than $5,000 and often
below $1,500. Subgroups of LDC, however, include countries that have
higher per capita incomes, as well as advanced technology, and rapid rates
of growth. Subgroups of LDC include: advanced developing countries,
the Four Dragons (also known as Four Tigers), &%LeastDevelopedCountry
(LLDCs), low-income countries, middle-income countries, newly
industrializing economies (NIEs), the South (from the location of
most LDC countries, relative to Northern developed countries), Third
World (obsolete), &%UnderdevelopedCountry, &%UndevelopedCountry.")
(conventionalShortName "the South" LessDevelopedCountry)
(abbreviation "LDC" LessDevelopedCountry)
(cardinality (ExtensionFn LessDevelopedCountry) 172)
(economyType Afghanistan LessDevelopedCountry)
(economyType Algeria LessDevelopedCountry)
(economyType Angola LessDevelopedCountry)
(economyType AntiguaAndBarbuda LessDevelopedCountry)
(economyType Argentina LessDevelopedCountry)
(economyType Aruba LessDevelopedCountry)
(economyType TheBahamas LessDevelopedCountry)
(economyType Bahrain LessDevelopedCountry)
(economyType Bangladesh LessDevelopedCountry)
(economyType Barbados LessDevelopedCountry)
(economyType Belize LessDevelopedCountry)
(economyType Burundi LessDevelopedCountry)
(economyType Cambodia LessDevelopedCountry)
(economyType Cameroon LessDevelopedCountry)
(economyType CapeVerde LessDevelopedCountry)
(economyType CentralAfricanRepublic LessDevelopedCountry)
(economyType Chad LessDevelopedCountry)
(economyType Chile LessDevelopedCountry)
(economyType China LessDevelopedCountry)
(economyType Colombia LessDevelopedCountry)
(economyType Comoros LessDevelopedCountry)
(economyType DemocraticRepublicOfTheCongo LessDevelopedCountry)
(economyType CostaRica LessDevelopedCountry)
(economyType CoteDIvoire LessDevelopedCountry)
(economyType Cyprus LessDevelopedCountry)
(economyType Djibouti LessDevelopedCountry)
(economyType Dominica LessDevelopedCountry)
(economyType DominicanRepublic LessDevelopedCountry)
(economyType Ecuador LessDevelopedCountry)
(economyType Egypt LessDevelopedCountry)
(economyType ElSalvador LessDevelopedCountry)
(economyType EquatorialGuinea LessDevelopedCountry)
(economyType Ethiopia LessDevelopedCountry)
(economyType Fiji LessDevelopedCountry)
(economyType Gabon LessDevelopedCountry)
(economyType Gambia LessDevelopedCountry)
(economyType Ghana LessDevelopedCountry)
(economyType Grenada LessDevelopedCountry)
(economyType Guatemala LessDevelopedCountry)
(economyType Guinea LessDevelopedCountry)
(economyType GuineaBissau LessDevelopedCountry)
(economyType Guyana LessDevelopedCountry)
(economyType Haiti LessDevelopedCountry)
(economyType Honduras LessDevelopedCountry)
(economyType India LessDevelopedCountry)
(economyType Indonesia LessDevelopedCountry)
(economyType Iran LessDevelopedCountry)
(economyType Iraq LessDevelopedCountry)
(economyType Jamaica LessDevelopedCountry)
(economyType Jordan LessDevelopedCountry)
(economyType Kenya LessDevelopedCountry)
(economyType Kiribati LessDevelopedCountry)
(economyType Kuwait LessDevelopedCountry)
(economyType Laos LessDevelopedCountry)
(economyType Lebanon LessDevelopedCountry)
(economyType Lesotho LessDevelopedCountry)
(economyType Liberia LessDevelopedCountry)
(economyType Libya LessDevelopedCountry)
(economyType Madagascar LessDevelopedCountry)
(economyType Malawi LessDevelopedCountry)
(economyType Malaysia LessDevelopedCountry)
(economyType Maldives LessDevelopedCountry)
(economyType Mali LessDevelopedCountry)
(economyType Malta LessDevelopedCountry)
(economyType MarshallIslands LessDevelopedCountry)
(economyType Mauritania LessDevelopedCountry)
(economyType Mauritius LessDevelopedCountry)
(economyType Mexico LessDevelopedCountry)
(economyType Micronesia LessDevelopedCountry)
(economyType Morocco LessDevelopedCountry)
(economyType Mozambique LessDevelopedCountry)
(economyType Namibia LessDevelopedCountry)
(economyType Nepal LessDevelopedCountry)
(economyType NetherlandsAntilles LessDevelopedCountry)
(economyType Nicaragua LessDevelopedCountry)
(economyType Niger LessDevelopedCountry)
(economyType Nigeria LessDevelopedCountry)
(economyType Oman LessDevelopedCountry)
(economyType Pakistan LessDevelopedCountry)
(economyType Panama LessDevelopedCountry)
(economyType PapuaNewGuinea LessDevelopedCountry)
(economyType Paraguay LessDevelopedCountry)
(economyType Peru LessDevelopedCountry)
(economyType Philippines LessDevelopedCountry)
(economyType Qatar LessDevelopedCountry)
(economyType Rwanda LessDevelopedCountry)
(economyType SaintKittsAndNevis LessDevelopedCountry)
(economyType SaintLucia LessDevelopedCountry)
(economyType SaintVincentAndTheGrenadines LessDevelopedCountry)
(economyType Samoa LessDevelopedCountry)
(economyType SaoTomeAndPrincipe LessDevelopedCountry)
(economyType SaudiArabia LessDevelopedCountry)
(economyType Senegal LessDevelopedCountry)
(economyType Seychelles LessDevelopedCountry)
(economyType SierraLeone LessDevelopedCountry)
(economyType SolomonIslands LessDevelopedCountry)
(economyType Somalia LessDevelopedCountry)
(economyType SouthAfrica LessDevelopedCountry)
(economyType SriLanka LessDevelopedCountry)
(economyType Sudan LessDevelopedCountry)
(economyType Suriname LessDevelopedCountry)
(economyType Swaziland LessDevelopedCountry)
(economyType Syria LessDevelopedCountry)
(economyType Tanzania LessDevelopedCountry)
(economyType Thailand LessDevelopedCountry)
(economyType Togo LessDevelopedCountry)
(economyType TrinidadAndTobago LessDevelopedCountry)
(economyType Tunisia LessDevelopedCountry)
(economyType Turkey LessDevelopedCountry)
(economyType UnitedArabEmirates LessDevelopedCountry)
(economyType Uganda LessDevelopedCountry)
(economyType Uruguay LessDevelopedCountry)
(economyType Vanuatu LessDevelopedCountry)
(economyType Venezuela LessDevelopedCountry)
(economyType Vietnam LessDevelopedCountry)
(economyType Yemen LessDevelopedCountry)
(economyType Zambia LessDevelopedCountry)
(economyType Zimbabwe LessDevelopedCountry)
(instance AdvancedDevelopingCountry EconomicDevelopmentLevel)
(subAttribute AdvancedDevelopingCountry LessDevelopedCountry)
(names "Advanced Developing Country" AdvancedDevelopingCountry)
(documentation AdvancedDevelopingCountry EnglishLanguage "&%AdvancedDevelopingCountry
is an &%Attribute used to describe a &%LessDevelopedCountry (LDC)
that is undergoing rapid industrial development. Also called 'newly
industrializing economy' (or 'country').")
(instance NewlyIndustrializingEconomy EconomicDevelopmentLevel)
(names "Newly Industrializing Economies" NewlyIndustrializingEconomy)
(abbreviation "NIE" NewlyIndustrializingEconomy)
(formerName "Newly Industrializing Countries" NewlyIndustrializingEconomy)
(formerName "NIC" NewlyIndustrializingEconomy)
(documentation NewlyIndustrializingEconomy EnglishLanguage
"&%NewlyIndustrializingEconomy is an &%Attribute used to describe a
&%LessDevelopedCountry (LDC) that is undergoing rapid industrial
development. Also called 'newly industrializing economy' (or
'country').")
(instance FourDragonsEconomy EconomicDevelopmentLevel)
(names "Four Dragons" FourDragonsEconomy)
(names "Four Tigers" FourDragonsEconomy)
(economyType HongKong FourDragonsEconomy)
(economyType Singapore FourDragonsEconomy)
(economyType SouthKorea FourDragonsEconomy)
(economyType Taiwan FourDragonsEconomy)
(documentation FourDragonsEconomy EnglishLanguage "&%FourDragonsEconomy describes four
small Asian countries that achieved rapid economic growth in the 1990s.
Some systems of &%EconomicDevelopmentLevel place them as a
&%LessDevelopedCountry, but the IMF includes them in &%AdvancedEconomy.")
(=>
(attribute ?AREA FourDragonsEconomy)
(economyType ?AREA LessDevelopedCountry))
(=>
(attribute ?AREA FourDragonsEconomy)
(economyType ?AREA AdvancedEconomy))
(instance UnderdevelopedCountry EconomicDevelopmentLevel)
(subAttribute UnderdevelopedCountry LessDevelopedCountry)
(documentation UnderdevelopedCountry EnglishLanguage "&%UnderdevelopedCountry is an
&%Attribute describing less developed countries that have potential
for above-average economic growth. See also &%LessDevelopedCountry.")
(instance LeastDevelopedCountry EconomicDevelopmentLevel)
(subAttribute LeastDevelopedCountry LessDevelopedCountry)
(conventionalLongName "Least Developed Countries" LeastDevelopedCountry)
(names "Undeveloped Country" LeastDevelopedCountry)
(names "Undeveloped Economy" LeastDevelopedCountry)
(abbreviation "LLDC" LeastDevelopedCountry)
(cardinality (ExtensionFn LeastDevelopedCountry) 42)
(documentation LeastDevelopedCountry EnglishLanguage "&%LeastDevelopedCountry
is a sub-classification of &%LessDevelopedCountry characterizing
those countries that have no significant economic growth, a per
capita GDP of less than $1,000 &%UnitedStatesDollars, and low
literacy. Also known as 'undeveloped countries'.")
;; World Bank Classifications based on Gross National Income Per Capita:
(subclass WorldBankGNIPerCapitaLevel EconomicDevelopmentLevel)
(names "GNI per capita" WorldBankGNIPerCapitaLevel)
(names "gross national income per capita" WorldBankGNIPerCapitaLevel)
(documentation WorldBankGNIPerCapitaLevel EnglishLanguage "&%WorldBankGNIPerCapitaLevel
is the subclass of &%EconomicDevelopmentLevel containing attributes
that characterize countries according to their per capita gross national
income (GNI), as determined by the &%WorldBankGroup. The World Bank
uses the Atlas method for making cross-country comparisons of national
income.")
(successorAttribute LowIncomeCountry LowerMiddleIncomeCountry)
(successorAttribute LowerMiddleIncomeCountry UpperMiddleIncomeCountry)
(successorAttribute UpperMiddleIncomeCountry HighIncomeCountry)
(instance LowIncomeCountry WorldBankGNIPerCapitaLevel)
(=>
(attribute ?AREA LowIncomeCountry)
(economyType ?AREA LeastDevelopedCountry))
(documentation LowIncomeCountry EnglishLanguage "&%LowIncomeCountry is an
&%Attribute representing the World Bank classification for any country
where the per capita GNI is $755 or below in &%UnitedStatesDollars.")
(=>
(and
(instance ?YEAR TimeInterval)
(holdsDuring ?YEAR (economyType ?AREA LowIncomeCountry)))
(exists (?AMOUNT)
(and
(perCapitaGDPInPeriod ?AREA (MeasureFn ?AMOUNT UnitedStatesDollar) ?YEAR)
(lessThan ?AMOUNT 756.0))))
(instance LowerMiddleIncomeCountry WorldBankGNIPerCapitaLevel)
(documentation LowerMiddleIncomeCountry EnglishLanguage
"&%LowerMiddleIncomeCountry is an &%Attribute representing the World
Bank classification for any country where the per capita GNI is
between $756 and $2,995 (inclusive) in &%UnitedStatesDollars.")
(=>
(and
(instance ?YEAR TimeInterval)
(holdsDuring ?YEAR (economyType ?AREA LowerMiddleIncomeCountry)))
(exists (?AMOUNT)
(and
(perCapitaGDPInPeriod ?AREA (MeasureFn ?AMOUNT UnitedStatesDollar) ?YEAR)
(greaterThanOrEqualTo ?AMOUNT 756.0))))
(=>
(and
(instance ?YEAR TimeInterval)
(holdsDuring ?YEAR (economyType ?AREA LowerMiddleIncomeCountry)))
(exists (?AMOUNT)
(and
(perCapitaGDPInPeriod ?AREA (MeasureFn ?AMOUNT UnitedStatesDollar) ?YEAR)
(lessThan ?AMOUNT 2996.0))))
(instance UpperMiddleIncomeCountry WorldBankGNIPerCapitaLevel)
(documentation UpperMiddleIncomeCountry EnglishLanguage
"&%UpperMiddleIncomeCountry is an &%Attribute representing the World Bank
classification for any country where the per capita GNI is
between $2,996 and $9,266 (inclusive) in &%UnitedStatesDollars.")
(=>
(and
(instance ?YEAR TimeInterval)
(holdsDuring ?YEAR (economyType ?AREA UpperMiddleIncomeCountry)))
(exists (?AMOUNT)
(and
(perCapitaGDPInPeriod ?AREA (MeasureFn ?AMOUNT UnitedStatesDollar) ?YEAR)
(greaterThanOrEqualTo ?AMOUNT 2996.0))))
(=>
(and
(instance ?YEAR TimeInterval)
(holdsDuring ?YEAR (economyType ?AREA UpperMiddleIncomeCountry)))
(exists (?AMOUNT)
(and
(perCapitaGDPInPeriod ?AREA (MeasureFn ?AMOUNT UnitedStatesDollar) ?YEAR)
(lessThan ?AMOUNT 9267.0))))
(instance HighIncomeCountry WorldBankGNIPerCapitaLevel)
(documentation HighIncomeCountry EnglishLanguage
"&%HighIncomeCountry is an &%Attribute representing the World Bank
classification for any country where the per capita GNI is
equal to or greater than &9,266 in &%UnitedStatesDollars.")
(=>
(and
(attribute ?AREA HighIncomeCountry)
(not (member ?AREA OrganizationOfPetroleumExportingCountries)))
(economyType ?AREA DevelopedCountry))
;;---------------------------------
;; IMF-related Economic Development Levels:
(subclass IMFDevelopmentLevel EconomicDevelopmentLevel)
(successorAttribute DevelopingCountry CountryInTransition)
(successorAttribute CountryInTransition AdvancedEconomy)
(documentation IMFDevelopmentLevel EnglishLanguage "&%IMFDevelopmentLevel is a
collection of &%Attributes representing economic development levels
used by the &%InternationalMonetaryFund (IMF) to characterize national
economies. The hierarchy of IMF levels includes: &%AdvancedEconomy,
&%CountryInTransition, and &%DevelopingCountry. There is some, but not
complete, overlap with concepts used by &%UnitedNations agencies.
See ")
(instance AdvancedEconomy IMFDevelopmentLevel)
(documentation AdvancedEconomy EnglishLanguage "&%AdvancedEconomy is an &%Attribute
used to represent the &%InternationalMonetaryFund's top category of
development levels (&%AdvancedEconomy,, countries in transition, and
developing countries. Generally (but not exactly) corresponds with
&%DevelopedCountry classification used by &%UnitedNations agencies.")
(economyType Australia AdvancedEconomy)
(economyType Austria AdvancedEconomy)
(economyType Belgium AdvancedEconomy)
(economyType Canada AdvancedEconomy)
(economyType Denmark AdvancedEconomy)
(economyType Finland AdvancedEconomy)
(economyType France AdvancedEconomy)
(economyType Germany AdvancedEconomy)
(economyType Greece AdvancedEconomy)
(economyType HongKong AdvancedEconomy)
(economyType Iceland AdvancedEconomy)
(economyType Ireland AdvancedEconomy)
(economyType Israel AdvancedEconomy)
(economyType Italy AdvancedEconomy)
(economyType Japan AdvancedEconomy)
(economyType SouthKorea AdvancedEconomy)
(economyType Luxembourg AdvancedEconomy)
(economyType Netherlands AdvancedEconomy)
(economyType NewZealand AdvancedEconomy)
(economyType Norway AdvancedEconomy)
(economyType Portugal AdvancedEconomy)
(economyType Singapore AdvancedEconomy)
(economyType Spain AdvancedEconomy)
(economyType Sweden AdvancedEconomy)
(economyType Switzerland AdvancedEconomy)
(economyType Taiwan AdvancedEconomy)
(economyType UnitedKingdom AdvancedEconomy)
(economyType UnitedStates AdvancedEconomy)
(instance CountryInTransition IMFDevelopmentLevel)
(documentation CountryInTransition EnglishLanguage "&%CountryInTransition is a term
used by the &%InternationalMonetaryFund (IMF) to describe the middle
group in its hierarchy of advanced countries, countries in transition,
and developing countries. Most of the countries with this attribute
are former USSR or Eastern European countries. Generally corresponds
with &%FormerSovietOrEasternEuropeanCountry classification used by
&%UnitedNations agencies.")
(economyType Albania CountryInTransition)
(economyType Armenia CountryInTransition)
(economyType Azerbaijan CountryInTransition)
(economyType Belarus CountryInTransition)
(economyType BosniaAndHerzegovina CountryInTransition)
(economyType Bulgaria CountryInTransition)
(economyType Croatia CountryInTransition)
(economyType CzechRepublic CountryInTransition)
(economyType Estonia CountryInTransition)
(economyType RepublicOfGeorgia CountryInTransition)
(economyType Hungary CountryInTransition)
(economyType Kazakhstan CountryInTransition)
(economyType Kyrgyzstan CountryInTransition)
(economyType Latvia CountryInTransition)
(economyType Lithuania CountryInTransition)
(economyType Macedonia CountryInTransition)
(economyType Moldova CountryInTransition)
(economyType Mongolia CountryInTransition)
(economyType Poland CountryInTransition)
(economyType Romania CountryInTransition)
(economyType Russia CountryInTransition)
(economyType Slovakia CountryInTransition)
(economyType Slovenia CountryInTransition)
(economyType Tajikistan CountryInTransition)
(economyType Turkmenistan CountryInTransition)
(economyType Ukraine CountryInTransition)
(economyType Uzbekistan CountryInTransition)
(economyType Yugoslavia CountryInTransition)
(instance Yugoslavia Nation)
(instance DevelopingCountry IMFDevelopmentLevel)
(documentation DevelopingCountry EnglishLanguage "&%DevelopingCountry is a term
used by the &%InternationalMonetaryFund (IMF) for the bottom group
in its hierarchy of advanced countries, countries in transition,
and developing countries. Generally corresponds to the attribute
&%LessDevelopedCountry used by &%UnitedNations agencies. Not to
be confused with &%DevelopedCountry.")
(cardinality (ExtensionFn DevelopingCountry) 126)
(economyType Afghanistan DevelopingCountry)
(economyType Algeria DevelopingCountry)
(economyType Angola DevelopingCountry)
(economyType AntiguaAndBarbuda DevelopingCountry)
(economyType Argentina DevelopingCountry)
(economyType Aruba DevelopingCountry)
(economyType TheBahamas DevelopingCountry)
(economyType Bahrain DevelopingCountry)
(economyType Bangladesh DevelopingCountry)
(economyType Barbados DevelopingCountry)
(economyType Belize DevelopingCountry)
(economyType Burundi DevelopingCountry)
(economyType Cambodia DevelopingCountry)
(economyType Cameroon DevelopingCountry)
(economyType CapeVerde DevelopingCountry)
(economyType CentralAfricanRepublic DevelopingCountry)
(economyType Chad DevelopingCountry)
(economyType Chile DevelopingCountry)
(economyType China DevelopingCountry)
(economyType Colombia DevelopingCountry)
(economyType Comoros DevelopingCountry)
(economyType DemocraticRepublicOfTheCongo DevelopingCountry)
(economyType CostaRica DevelopingCountry)
(economyType CoteDIvoire DevelopingCountry)
(economyType Cyprus DevelopingCountry)
(economyType Djibouti DevelopingCountry)
(economyType Dominica DevelopingCountry)
(economyType DominicanRepublic DevelopingCountry)
(economyType Ecuador DevelopingCountry)
(economyType Egypt DevelopingCountry)
(economyType ElSalvador DevelopingCountry)
(economyType EquatorialGuinea DevelopingCountry)
(economyType Ethiopia DevelopingCountry)
(economyType Fiji DevelopingCountry)
(economyType Gabon DevelopingCountry)
(economyType Gambia DevelopingCountry)
(economyType Ghana DevelopingCountry)
(economyType Grenada DevelopingCountry)
(economyType Guatemala DevelopingCountry)
(economyType Guinea DevelopingCountry)
(economyType GuineaBissau DevelopingCountry)
(economyType Guyana DevelopingCountry)
(economyType Haiti DevelopingCountry)
(economyType Honduras DevelopingCountry)
(economyType India DevelopingCountry)
(economyType Indonesia DevelopingCountry)
(economyType Iran DevelopingCountry)
(economyType Iraq DevelopingCountry)
(economyType Jamaica DevelopingCountry)
(economyType Jordan DevelopingCountry)
(economyType Kenya DevelopingCountry)
(economyType Kiribati DevelopingCountry)
(economyType Kuwait DevelopingCountry)
(economyType Laos DevelopingCountry)
(economyType Lebanon DevelopingCountry)
(economyType Lesotho DevelopingCountry)
(economyType Liberia DevelopingCountry)
(economyType Libya DevelopingCountry)
(economyType Madagascar DevelopingCountry)
(economyType Malawi DevelopingCountry)
(economyType Malaysia DevelopingCountry)
(economyType Maldives DevelopingCountry)
(economyType Mali DevelopingCountry)
(economyType Malta DevelopingCountry)
(economyType MarshallIslands DevelopingCountry)
(economyType Mauritania DevelopingCountry)
(economyType Mauritius DevelopingCountry)
(economyType Mexico DevelopingCountry)
(economyType Micronesia DevelopingCountry)
(economyType Morocco DevelopingCountry)
(economyType Mozambique DevelopingCountry)
(economyType Namibia DevelopingCountry)
(economyType Nepal DevelopingCountry)
(economyType NetherlandsAntilles DevelopingCountry)
(economyType Nicaragua DevelopingCountry)
(economyType Niger DevelopingCountry)
(economyType Nigeria DevelopingCountry)
(economyType Oman DevelopingCountry)
(economyType Pakistan DevelopingCountry)
(economyType Panama DevelopingCountry)
(economyType PapuaNewGuinea DevelopingCountry)
(economyType Paraguay DevelopingCountry)
(economyType Peru DevelopingCountry)
(economyType Philippines DevelopingCountry)
(economyType Qatar DevelopingCountry)
(economyType Rwanda DevelopingCountry)
(economyType SaintKittsAndNevis DevelopingCountry)
(economyType SaintLucia DevelopingCountry)
(economyType SaintVincentAndTheGrenadines DevelopingCountry)
(economyType Samoa DevelopingCountry)
(economyType SaoTomeAndPrincipe DevelopingCountry)
(economyType SaudiArabia DevelopingCountry)
(economyType Senegal DevelopingCountry)
(economyType Seychelles DevelopingCountry)
(economyType SierraLeone DevelopingCountry)
(economyType SolomonIslands DevelopingCountry)
(economyType Somalia DevelopingCountry)
(economyType SouthAfrica DevelopingCountry)
(economyType SriLanka DevelopingCountry)
(economyType Sudan DevelopingCountry)
(economyType Suriname DevelopingCountry)
(economyType Swaziland DevelopingCountry)
(economyType Syria DevelopingCountry)
(economyType Tanzania DevelopingCountry)
(economyType Thailand DevelopingCountry)
(economyType Togo DevelopingCountry)
(economyType TrinidadAndTobago DevelopingCountry)
(economyType Tunisia DevelopingCountry)
(economyType Turkey DevelopingCountry)
(economyType UnitedArabEmirates DevelopingCountry)
(economyType Uganda DevelopingCountry)
(economyType Uruguay DevelopingCountry)
(economyType Vanuatu DevelopingCountry)
(economyType Venezuela DevelopingCountry)
(economyType Vietnam DevelopingCountry)
(economyType Yemen DevelopingCountry)
(economyType Zambia DevelopingCountry)
(economyType Zimbabwe DevelopingCountry)
;;---------------------------------
;; Miscellaneous economic development attributes:
(instance MajorIndustrialEconomy EconomicDevelopmentLevel)
(documentation MajorIndustrialEconomy EnglishLanguage "&%MajorIndustrialEconomy is an
&%Attribute used to describe countries with the largest, industrialized,
non-communist economies in the world.")
(=>
(attribute ?AREA MajorIndustrialEconomy)
(economyType ?AREA DevelopedCountry))
(=>
(attribute ?AREA MajorIndustrialEconomy)
(economyType ?AREA AdvancedEconomy))
(=>
(member ?STATE GroupOf7)
(attribute ?STATE MajorIndustrialEconomy))
(instance HighTechIndustrialEconomy EconomicDevelopmentLevel)
(documentation HighTechIndustrialEconomy EnglishLanguage "&%HighTechIndustrialEconomy
is an &%Attribute used to describe industrialized countries whose
infrastructure uses the most advanced kinds of technology.")
;;---------------------------------
;; Economic System attributes:
(subclass EconomicSystemAttribute EconomicAttribute)
(documentation EconomicSystemAttribute EnglishLanguage "&%EconomicSystemAttribute
is the class of &%Attributes that describe the type of economic
system that a country or area has. For example, &%CapitalistEconomy
or &%SocialistEconomy.")
(instance CapitalistEconomy EconomicSystemAttribute)
(subAttribute CapitalistEconomy PrivateEnterpriseEconomy)
(documentation CapitalistEconomy EnglishLanguage "&%CapitalistEconomy is the
&%Attribute used to characterize a country whose economy is based
on private ownership of the means of production and distribution,
and on private accumulation of capital.")
(instance PureCapitalistEconomy EconomicSystemAttribute)
(subAttribute PureCapitalistEconomy CapitalistEconomy)
(contraryAttribute PureCapitalistEconomy MixedEconomy)
(documentation PureCapitalistEconomy EnglishLanguage "&%PureCapitalistEconomy is an
&%Attribute representing a capitalist economy that has no admixture of
socialism.")
(instance PrivateEnterpriseEconomy EconomicSystemAttribute)
(documentation PrivateEnterpriseEconomy EnglishLanguage "&%PrivateEnterpriseEconomy is
the &%Attribute used to characterize a country in which private
enterprise is the main source of economic wealth.")
(instance MarketEconomy EconomicSystemAttribute)
(documentation MarketEconomy EnglishLanguage "&%MarketEconomy is an &%Attribute that
describes an economy in which market forces, specifically supply and
demand, provide input for privately managed decisions about pricing
and production of goods.")
(instance SocialistEconomy EconomicSystemAttribute)
(documentation SocialistEconomy EnglishLanguage "&%SocialistEconomy is the &%Attribute
used to characterize a country in which there is government ownership
or direction of the means of production and distribution.")
(instance PureSocialistEconomy EconomicSystemAttribute)
(subAttribute PureSocialistEconomy SocialistEconomy)
(contraryAttribute PureSocialistEconomy MixedEconomy)
(contraryAttribute PureSocialistEconomy PureCapitalistEconomy)
(documentation PureSocialistEconomy EnglishLanguage "&%PureSocialistEconomy is an
&%Attribute representing a socialist economy that has no admixture of
capitalism.")
(instance DemocraticSocialism EconomicSystemAttribute)
(subAttribute DemocraticSocialism SocialistEconomy)
(documentation DemocraticSocialism EnglishLanguage "&%DemocraticSocialism is an
&%Attribute that describes a country in which socialism is promoted
by a political party or parties within a democratic government.
Under &%DemocraticSocialism, the government participates in central
planning of the economy and may also manage nationalized industries.")
(=>
(attribute ?AREA DemocraticSocialism)
(governmentType ?AREA Democracy))
(instance MarketSocialism EconomicSystemAttribute)
(subAttribute MarketSocialism PartialMarketEconomy)
(instance CommunalLandOwnershipEconomy EconomicSystemAttribute)
(subAttribute CommunalLandOwnershipEconomy SocialistEconomy)
(instance MixedEconomy EconomicSystemAttribute)
(documentation MixedEconomy EnglishLanguage "&%MixedEconomy is the &%Attribute
of a country whose economy has elements of more than one pure
economic system, e.g., a market economy with government welfare
for unemployed workers. A mixed-economy country may be a
&%CountryInTransition, as from a prior communist economy to
capitalism, but a mixed economy may also be a stable combination
of different economic approaches in different areas of a national
economy, e.g., nationally managed health care and education systems
in an otherwise private-enterprise economy.")
(instance PartialMarketEconomy EconomicSystemAttribute)
(subAttribute PartialMarketEconomy MixedEconomy)
(instance GovernmentRegulatedEconomy EconomicSystemAttribute)
(documentation GovernmentRegulatedEconomy EnglishLanguage "&%GovernmentRegulatedEconomy
is an &%Attribute that describes the economy of a country in which the
government determines prices, production, wages, allocation of resources,
or other economic factors. An economy that is wholly government planned
is a &%CentrallyPlannedEconomy.")
(instance CentrallyPlannedEconomy EconomicSystemAttribute)
(subAttribute CentrallyPlannedEconomy GovernmentRegulatedEconomy)
(documentation CentrallyPlannedEconomy EnglishLanguage "&%CentrallyPlannedEconomy
is a term used mainly to describe communist or formerly communist
states, many of which are now evolving away from command economies
towards market-oriented systems. Also known as a 'command economy'.")
(=>
(and
(attribute ?AREA CommunistState)
(instance ?AREA Nation))
(economyType ?AREA CentrallyPlannedEconomy))
;; Note: CommunistState is defined in Government.kif.
(instance PrivatizingEconomy EconomicSystemAttribute)
(subAttribute PrivatizingEconomy MixedEconomy)
(documentation PrivatizingEconomy EnglishLanguage "&%PrivatizingEconomy is an
&%Attribute that describes a country in which formerly government-
owned industries are being transferred into private holdings.")
(=>
(attribute ?AREA PrivatizingEconomy)
(economyType ?AREA CountryInTransition))
(instance NationalizedIndustryEconomy EconomicSystemAttribute)
(subAttribute NationalizedIndustryEconomy GovernmentRegulatedEconomy)
(documentation NationalizedIndustryEconomy EnglishLanguage "&%NationalizedIndustryEconomy
is an &%Attribute describing an economy in which the major industries,
such as energy and transportation, are owned by the national government.")
(instance GovernmentSubsidizedEconomy EconomicSystemAttribute)
(documentation GovernmentSubsidizedEconomy EnglishLanguage "&%GovernmentSubsidizedEconomy
is an &%Attribute describing an economy in which the government provides
subsidies to various industries, workers, or other groups as part of its
economic policy.")
(instance WelfareCapitalism EconomicSystemAttribute)
(subAttribute WelfareCapitalism MixedEconomy)
(subAttribute WelfareCapitalism GovernmentSubsidizedEconomy)
(documentation WelfareCapitalism EnglishLanguage "&%WelfareCapitalism is an &%Attribute
describing an economy in which the government provides economic subsidies
to unemployed or disabled individuals.")
;;----------------------------------
;; Economic Attributes based on Financial Sectors:
(subclass FinancialSectorAttribute EconomicAttribute)
(documentation FinancialSectorAttribute EnglishLanguage "&%FinancialSectorAttribute is
a class of &%Attributes that are used to indicate which financial sectors
are most important in the economy of a &%Nation or &%GeopoliticalArea.")
(instance DiversifiedEconomy FinancialSectorAttribute)
(instance ManufacturingBasedEconomy FinancialSectorAttribute)
(instance TradeBasedEconomy FinancialSectorAttribute)
(instance PetroleumBasedEconomy FinancialSectorAttribute)
(instance TourismBasedEconomy FinancialSectorAttribute)
(instance ServiceBasedEconomy FinancialSectorAttribute)
(instance AgricultureBasedEconomy FinancialSectorAttribute)
(instance SubsistenceAgricultureEconomy FinancialSectorAttribute)
(subAttribute SubsistenceAgricultureEconomy AgricultureBasedEconomy)
(instance TwoTierLaborMarketEconomy FinancialSectorAttribute)
(instance ControlledLaborMarketEconomy FinancialSectorAttribute)
(instance OffshoreFinancialSectorEconomy FinancialSectorAttribute)
(subAttribute TaxHavenEconomy OffshoreFinancialSectorEconomy)
(subAttribute OffshoreBankingSectorEconomy OffshoreFinancialSectorEconomy)
;;
;;-----------------------------------------------------------------------------
;;
;; B. GDP
(instance totalGDPInPeriod PPPBasedEconomicValuation)
(instance totalGDPInPeriod TernaryPredicate)
(domain totalGDPInPeriod 1 GeopoliticalArea)
(domain totalGDPInPeriod 2 CurrencyMeasure)
(domainSubclass totalGDPInPeriod 3 TimeInterval)
(documentation totalGDPInPeriod EnglishLanguage "(&%totalGDPInPeriod ?AREA ?AMOUNT ?PERIOD)
means that the value of all final goods and services produced within
the &%GeopoliticalArea ?AREA is ?AMOUNT in the period indicated by ?PERIOD,
measured in U.S. dollars calculated on a purchasing power parity basis.
(See &%PPPBasedEconomicValuation.) This is the Gross Domestic Product for
?AREA for a specified period.")
(instance totalGDP PPPBasedEconomicValuation)
(instance totalGDP BinaryPredicate)
(domain totalGDP 1 GeopoliticalArea)
(domain totalGDP 2 CurrencyMeasure)
(documentation totalGDP EnglishLanguage "(&%totalGDP ?AREA ?AMOUNT) means that the value
of all final goods and services produced within the &%GeopoliticalArea
?AREA is ?AMOUNT, in U.S. dollars, calculated on a purchasing power parity
basis. This represents Gross Domestic Product (GDP). See
&%PPPBasedEconomicValuation.")
(<=>
(totalGDPInPeriod ?AREA ?AMOUNT ?PERIOD)
(exists (?TIME)
(and
(instance ?TIME ?PERIOD)
(holdsDuring ?TIME (totalGDP ?AREA ?AMOUNT)))))
(subclass PPPBasedEconomicValuation Relation)
(documentation PPPBasedEconomicValuation EnglishLanguage "&%PPPBasedEconomicValuation
is a class of relations used to state international economic information
in U.S. dollar amounts. The U.S. dollar amounts are derived from Purchasing
Power Parity conversions of economic totals (e.g., GDP) given in local
currency. This contrasts with a method of conversion based on currency
exchange rates. The PPP method is used by the CIA World Fact Book for
the purpose of presenting economic data for all countries covered. Their
basis for PPP dollar price weights is the UN International Comparison Program
(UNICP) and the work of Professors Robert Summers and Alan Heston of the
University of Pennsylvania.")
;;
;;-----------------------------------------------------------------------------
;;
;; C. GDP - real growth rate
(instance realGrowthRateOfGDPInPeriod PPPBasedEconomicValuation)
(instance realGrowthRateOfGDPInPeriod TernaryPredicate)
(domain realGrowthRateOfGDPInPeriod 1 GeopoliticalArea)
(domain realGrowthRateOfGDPInPeriod 2 RealNumber)
(domainSubclass realGrowthRateOfGDPInPeriod 3 TimeInterval)
(documentation realGrowthRateOfGDPInPeriod EnglishLanguage
"(&%realGrowthRateOfGDPInPeriod ?AREA ?RATE ?PERIOD) means that the
annual rate of growth in the Gross Domestic Product (GDP) for the
&%GeopoliticalArea ?AREA is the fraction ?RATE in the period ?PERIOD,
adjusted for inflation, with GDP calculated on a purchasing power
parity basis. See &%PPPBasedEconomicValuation.")
(instance realGrowthRateOfGDP PPPBasedEconomicValuation)
(instance realGrowthRateOfGDP BinaryPredicate)
(domain realGrowthRateOfGDP 1 GeopoliticalArea)
(domain realGrowthRateOfGDP 2 RealNumber)