Dynamic logic (modal logic)

In logic, philosophy, and theoretical computer science, dynamic logic is an extension of modal logic capable of encoding properties of computer programs.

A simple example of a statement in dynamic logic is

which states that if the ground is currently dry and it rains, then afterwards the ground will be wet.

The syntax of dynamic logic contains a language of propositions (like "the ground is dry") and a language of actions (like "it rains"). The core modal constructs are , which states that after performing action a the proposition p should hold, and , which states that after performing action a it is possible that p holds. The action language supports operations (doing one action followed by another), (doing one action or another), and iteration (doing one action zero or more times). The proposition language supports Boolean operations (and, or, and not). The action logic is expressive enough to encode programs. For an arbitrary program , precondition , and postcondition , the dynamic logic statement encodes the correctness of the program, making dynamic logic more general than Hoare logic.

Beyond its use in formal verification of programs, dynamic logic has been applied to describe complex behaviors arising in linguistics, philosophy, AI, and other fields.

Language

Modal logic is characterized by the modal operators (box p) asserting that is necessarily the case, and (diamond p) asserting that is possibly the case. Dynamic logic extends this by associating to every action the modal operators and , thereby making it a multimodal logic. The meaning of is that after performing action it is necessarily the case that holds, that is, must bring about . The meaning of is that after performing it is possible that holds, that is, might bring about . These operators dual to each other, which means they are related by and , analogously to the relationship between the universal () and existential () quantifiers.

Dynamic logic permits compound actions built up from smaller actions. While the basic control operators of any programming language could be used for this purpose, Kleene's regular expression operators are a good match to modal logic. Given actions and , the compound action , choice, also written or , is performed by performing one of or . The compound action , sequence, is performed by performing first and then . The compound action , iteration, is performed by performing zero or more times, sequentially. The constant action or BLOCK does nothing and does not terminate, whereas the constant action or SKIP or NOP, definable as , does nothing but does terminate.

Axioms

These operators can be axiomatized in dynamic logic as follows, taking as already given a suitable axiomatization of modal logic including such axioms for modal operators as the above-mentioned axiom and the two inference rules modus ponens ( and implies ) and necessitation ( implies ).

A1.

A2.

A3.

A4.

A5.

A6.

Axiom A1 makes the empty promise that when BLOCK terminates, will hold, even if is the proposition false. (Thus BLOCK abstracts the essence of the action of hell freezing over.)
A2 says that NOP acts as the identity function on propositions, that is, it transforms into itself.
A3 says that if doing one of or must bring about , then must bring about and likewise for , and conversely.
A4 says that if doing and then must bring about , then must bring about a situation in which must bring about .
A5 is the evident result of applying A2, A3 and A4 to the equation of Kleene algebra.
A6 asserts that if holds now, and no matter how often we perform it remains the case that the truth of after that performance entails its truth after one more performance of , then must remain true no matter how often we perform . A6 is recognizable as mathematical induction with the action n := n+1 of incrementing n generalized to arbitrary actions .

Derivations

The modal logic axiom permits the derivation of the following six theorems corresponding to the above:

T1.

T2.

T3.

T4.

T5.

T6.

T1 asserts the impossibility of bringing anything about by performing BLOCK.
T2 notes again that NOP changes nothing, bearing in mind that NOP is both deterministic and terminating whence and have the same force.
T3 says that if the choice of or could bring about , then either or alone could bring about .
T4 is just like A4.
T5 is explained as for A5.
T6 asserts that if it is possible to bring about by performing sufficiently often, then either is true now or it is possible to perform repeatedly to bring about a situation where is (still) false but one more performance of could bring about .

Box and diamond are entirely symmetric with regard to which one takes as primitive. An alternative axiomatization would have been to take the theorems T1–T6 as axioms, from which we could then have derived A1–A6 as theorems.

The difference between implication and inference is the same in dynamic logic as in any other logic: whereas the implication asserts that if is true then so is , the inference asserts that if is valid then so is . However the dynamic nature of dynamic logic moves this distinction out of the realm of abstract axiomatics into the common-sense experience of situations in flux. The inference rule , for example, is sound because its premise asserts that holds at all times, whence no matter where might take us, will be true there. The implication is not valid, however, because the truth of at the present moment is no guarantee of its truth after performing . For example, will be true in any situation where is false, or in any situation where is true, but the assertion is false in any situation where has value 1, and therefore is not valid.

Derived rules of inference

As for modal logic, the inference rules modus ponens and necessitation suffice also for dynamic logic as the only primitive rules it needs, as noted above. However, as usual in logic, many more rules can be derived from these with the help of the axioms. An example instance of such a derived rule in dynamic logic is that if kicking a broken TV once can't possibly fix it, then repeatedly kicking it can't possibly fix it either. Writing for the action of kicking the TV, and for the proposition that the TV is broken, dynamic logic expresses this inference as , having as premise and as conclusion . The meaning of is that it is guaranteed that after kicking the TV, it is broken. Hence the premise means that if the TV is broken, then after kicking it once it will still be broken. denotes the action of kicking the TV zero or more times. Hence the conclusion means that if the TV is broken, then after kicking it zero or more times it will still be broken. For if not, then after the second-to-last kick the TV would be in a state where kicking it once more would fix it, which the premise claims can never happen under any circumstances.

The inference is sound. However the implication is not valid because we can easily find situations in which holds but does not. In any such counterexample situation, must hold but must be false, while however must be true. But this could happen in any situation where the TV is broken but can be revived with two kicks. The implication fails (is not valid) because it only requires that hold now, whereas the inference succeeds (is sound) because it requires that hold in all situations, not just the present one.

An example of a valid implication is the proposition . This says that if is greater or equal to 3, then after incrementing , must be greater or equal to 4. In the case of deterministic actions that are guaranteed to terminate, such as , must and might have the same force, that is, and have the same meaning. Hence the above proposition is equivalent to asserting that if is greater or equal to 3 then after performing , might be greater or equal to 4.

Assignment

The general form of an assignment statement is where is a variable and is an expression built from constants and variables with whatever operations are provided by the language, such as addition and multiplication. The Hoare axiom for assignment is not given as a single axiom but rather as an axiom schema.

A7.

This is a schema in the sense that can be instantiated with any formula containing zero or more instances of a variable . The meaning of is with those occurrences of that occur free in , i.e. not bound by some quantifier as in , replaced by . For example, we may instantiate A7 with , or with . Such an axiom schema allows infinitely many axioms having a common form to be written as a finite expression connoting that form.

The instance of A7 allows us to calculate mechanically that the example encountered a few paragraphs ago is equivalent to , which in turn is equivalent to by elementary algebra.

An example illustrating assignment in combination with is the proposition . This asserts that it is possible, by incrementing sufficiently often, to make equal to 7. This of course is not always true, e.g. if is 8 to begin with, or 6.5, whence this proposition is not a theorem of dynamic logic. If is of type integer however, then this proposition is true if and only if is at most 7 to begin with, that is, it is just a roundabout way of saying .

Mathematical induction can be obtained as the instance of A6 in which the proposition is instantiated as , the action as , and as . The first two of these three instantiations are straightforward, converting A6 to . However, the ostensibly simple substitution of for is not so simple as it brings out the so-called referential opacity of modal logic in the case when a modality can interfere with a substitution.

When we substituted for , we were thinking of the proposition symbol as a rigid designator with respect to the modality , meaning that it is the same proposition after incrementing as before, even though incrementing may impact its truth. Likewise, the action is still the same action after incrementing , even though incrementing will result in its executing in a different environment. However, itself is not a rigid designator with respect to the modality ; if it denotes 3 before incrementing , it denotes 4 after. So we can't just substitute for everywhere in A6.

One way of dealing with the opacity of modalities is to eliminate them. To this end, expand as the infinite conjunction , that is, the conjunction over all of . Now apply A4 to turn into , having modalities. Then apply Hoare's axiom times to this to produce , then simplify this infinite conjunction to . This whole reduction should be applied to both instances of in A6, yielding . The remaining modality can now be eliminated with one more use of Hoare's axiom to give .

With the opaque modalities now out of the way, we can safely substitute for in the usual manner of first-order logic to obtain Peano's celebrated axiom , namely mathematical induction.

One subtlety we glossed over here is that should be understood as ranging over the natural numbers, where is the superscript in the expansion of as the union of over all natural numbers . The importance of keeping this typing information straight becomes apparent if had been of type integer, or even real, for any of which A6 is perfectly valid as an axiom. As a case in point, if is a real variable and is the predicate is a natural number, then axiom A6 after the first two substitutions, that is, , is just as valid, that is, true in every state regardless of the value of in that state, as when is of type natural number. If in a given state is a natural number, then the antecedent of the main implication of A6 holds, but then is also a natural number so the consequent also holds. If is not a natural number, then the antecedent is false and so A6 remains true regardless of the truth of the consequent. We could strengthen A6 to an equivalence without impacting any of this, the other direction being provable from A5, from which we see that if the antecedent of A6 does happen to be false somewhere, then the consequent must be false.

Test

Dynamic logic associates to every proposition an action called a test. When holds, the test acts as a NOP, changing nothing while allowing the action to move on. When is false, acts as BLOCK. Tests can be axiomatized as follows.

A8.

The corresponding theorem for is:

T8.

The construct if p then a else b is realized in dynamic logic as . This action expresses a guarded choice: if holds then is equivalent to , whereas is equivalent to BLOCK, and is equivalent to . Hence when is true the performer of the action can only take the left branch, and when is false the right.

The construct while p do a is realized as . This performs zero or more times and then performs . As long as remains true, the at the end blocks the performer from terminating the iteration prematurely, but as soon as it becomes false, further iterations of the body are blocked and the performer then has no choice but to exit via the test .

Quantification as random assignment

The random-assignment statement denotes the nondeterministic action of setting to an arbitrary value. then says that holds no matter what you set to, while says that it is possible to set to a value that makes true. thus has the same meaning as the universal quantifier , while similarly corresponds to the existential quantifier . That is, first-order logic can be understood as the dynamic logic of programs of the form .

Dijkstra claimed to show the impossibility of a program that sets the value of variable to an arbitrary positive integer.[1] However, in dynamic logic with assignment and the * operator, can be set to an arbitrary positive integer with the dynamic logic program . Hence we must either reject Dijkstra's argument or hold that the * operator is not effective.

Possible-world semantics

Modal logic is most commonly interpreted in terms of possible world semantics or Kripke structures. This semantics carries over naturally to dynamic logic by interpreting worlds as states of a computer in the application to program verification, or states of our environment in applications to linguistics, AI, etc. One role for possible world semantics is to formalize the intuitive notions of truth and validity, which in turn permit the notions of soundness and completeness to be defined for axiom systems. An inference rule is sound when validity of its premises implies validity of its conclusion. An axiom system is sound when all its axioms are valid and its inference rules are sound. An axiom system is complete when every valid formula is derivable as a theorem of that system. These concepts apply to all systems of logic including dynamic logic.

Propositional dynamic logic (PDL)

Ordinary or first-order logic has two types of terms, respectively assertions and data. As can be seen from the examples above, dynamic logic adds a third type of term denoting actions. The dynamic logic assertion contains all three types: , , and are data, is an action, and and are assertions. Propositional logic is derived from first-order logic by omitting data terms and reasons only about abstract propositions, which may be simple propositional variables or atoms or compound propositions built with such logical connectives as and, or, and not.

Propositional dynamic logic, or PDL, was derived from dynamic logic in 1977 by Michael J. Fischer and Richard Ladner. PDL blends the ideas behind propositional logic and dynamic logic by adding actions while omitting data; hence the terms of PDL are actions and propositions. The TV example above is expressed in PDL whereas the next example involving is in first-order dynamic logic. PDL is to (first-order) dynamic logic as propositional logic is to first-order logic.

Fischer and Ladner showed in their 1977 paper that PDL satisfiability was of computational complexity at most nondeterministic exponential time, and at least deterministic exponential time in the worst case. This gap was closed in 1978 by Vaughan Pratt who showed that PDL was decidable in deterministic exponential time. In 1977, Krister Segerberg proposed a complete axiomatization of PDL, namely any complete axiomatization of modal logic K together with axioms A1–A6 as given above. Completeness proofs for Segerberg's axioms were found by Gabbay (unpublished note), Parikh (1978), Pratt (1979), and Kozen and Parikh (1981).

History

Dynamic logic was developed by Vaughan Pratt in 1974 in notes for a class on program verification as an approach to assigning meaning to Hoare logic by expressing the Hoare formula as . The approach was later published in 1976 as a logical system in its own right. The system parallels Andrzej Salwicki's system of algorithmic logic[2] and Edsger Dijkstra's notion of weakest-precondition predicate transformer , with corresponding to Dijkstra's , weakest liberal precondition. Those logics however made no connection with either modal logic, Kripke semantics, regular expressions, or the calculus of binary relations. Dynamic logic therefore can be viewed as a refinement of algorithmic logic and predicate transformers that connects them up to the axiomatics and Kripke semantics of modal logic as well as to the calculi of binary relations and regular expressions.

The concurrency challenge

Hoare logic, algorithmic logic, weakest preconditions, and dynamic logic are all well suited to discourse and reasoning about sequential behavior. Extending these logics to concurrent behavior however has proved problematic. There are various approaches but all of them lack the elegance of the sequential case. In contrast Amir Pnueli's 1977 system of temporal logic, another variant of modal logic sharing many common features with dynamic logic, differs from all of the above-mentioned logics by being what Pnueli has characterized as an "endogenous" logic, the others being "exogenous" logics. By this Pnueli meant that temporal logic assertions are interpreted within a universal behavioral framework in which a single global situation changes with the passage of time, whereas the assertions of the other logics are made externally to the multiple actions about which they speak. The advantage of the endogenous approach is that it makes no fundamental assumptions about what causes what as the environment changes with time. Instead a temporal logic formula can talk about two unrelated parts of a system, which because they are unrelated tacitly evolve in parallel. In effect ordinary logical conjunction of temporal assertions is the concurrent composition operator of temporal logic. The simplicity of this approach to concurrency has resulted in temporal logic being the modal logic of choice for reasoning about concurrent systems with its aspects of synchronization, interference, independence, deadlock, livelock, fairness, etc.

See also

Further reading

Footnotes

  1. ^ Dijkstra, E.W. (1976). A Discipline of Programming. Englewood Cliffs: Prentice-Hall Inc. pp. 221. ISBN 013215871X.
  2. ^ Mirkowska, Grażyna; Salwicki A. (1987). Algorithmic Logic (PDF). Warszawa & Boston: PWN & D. Reidel Publ. p. 372. ISBN 8301068590.

References

  • Vaughan Pratt, "Semantical Considerations on Floyd-Hoare Logic", Proc. 17th Annual IEEE Symposium on Foundations of Computer Science, 1976, 109-121.
  • David Harel, "Dynamic Logic", In D. Gabbay and F. Guenthner, editors, Handbook of Philosophical Logic, volume II: Extensions of Classical Logic, chapter 10, pages 497-604. Reidel, Dordrecht, 1984.
  • David Harel, Dexter Kozen, and Jerzy Tiuryn, "Dynamic Logic", In D. Gabbay and F. Guenthner, editors, Handbook of Philosophical Logic, volume 4: pages 99-217. Kluwer, 2nd edition, 2002.

Read other articles:

ترينا معلومات شخصية اسم الولادة (بالإنجليزية: Katrina Laverne Taylor)‏  الميلاد 3 ديسمبر 1978 (العمر 45 سنة)فلوريدا، الولايات المتحدة الأمريكيةميامي  الجنسية أمريكية العشير ليل وين (2005–2006)كينيون مارتن (2007–2009)  الحياة الفنية النوع موسيقى الراب الآلات الموسيقية صوت بشري  شركة ...

 

Not to be confused with poliomyelitis. Medical conditionPolymyositisMicrograph of polymyositis. Muscle biopsy. H&E stain.SpecialtyRheumatology Polymyositis (PM) is a type of chronic inflammation of the muscles (inflammatory myopathy) related to dermatomyositis and inclusion body myositis. Its name means 'inflammation of many muscles' (poly- + myos- + -itis). The inflammation of polymyositis is mainly found in the endomysial layer of skeletal muscle, whereas dermatomyositis is characterize...

 

Wappen Deutschlandkarte 53.3059.702554Koordinaten: 53° 18′ N, 9° 42′ O Basisdaten Bundesland: Niedersachsen Landkreis: Harburg Samtgemeinde: Tostedt Höhe: 54 m ü. NHN Fläche: 12,2 km2 Einwohner: 1277 (31. Dez. 2022)[1] Bevölkerungsdichte: 105 Einwohner je km2 Postleitzahl: 21255 Vorwahl: 04182 Kfz-Kennzeichen: WL Gemeindeschlüssel: 03 3 53 006 Gemeindegliederung: Dohren-Gehege Adresse der Gemeindeverwaltun...

دائم الخضرةمعلومات عامةصنف فرعي من نباتات جزء من phanerophyte (en) النقيض نفضي تعديل - تعديل مصدري - تعديل ويكي بيانات صورة للشوح الأبيض تظهر استمرار اخضرار الأوراق على مدار ثلاث سنوات متتالية. يشير مصطلح دائم الخضرة[1] أو دائم الاخضرار أو الأبِيد[2] في علم النبات إلى نوع من ...

 

Moldawien ist eine Weiterleitung auf diesen Artikel. Für die rumänische Region siehe Moldau (Region), für das historische Fürstentum siehe Fürstentum Moldau. Republik Moldau (DE/AT)Republik Moldova (CH) Republica Moldova Flagge Wappen Amtssprache Rumänisch[1][2]regional auch Gagausisch, Russisch und Ukrainisch Hauptstadt Chișinău Staats- und Regierungsform parlamentarische Republik Staatsoberhaupt PräsidentinMaia Sandu Regierungschef MinisterpräsidentDorin Recean Par...

 

Ma'rambu Langi' adalah sebuah sebuah ritual yang dilakukan oleh masyarakat adat suku Toraja ketika ada sesorang yang melakukan pelanggaran norma adat atau melakukan suatu perbuatan yang salah dalam lingkungan masyarakat. Sesuai dengan namanya, Ma'rambu langi' artinya mengasapi langit. Menurut kepercayaan mereka, jika terjadi pelanggaran maka akan mendatangkan bencana alam dan merusak relasi antar sesama bahkan dengan Sang Ilahi. Untuk itu, ritual tersebut dianggap perlu diadakan sebagai cara ...

Perang Etiopia-MesirYohanes IV dari Etiopia dan Ismail Pasha dari MesirTanggal1874 –1876LokasiEritreaHasil Kemenangan EtiopiaPihak terlibat  Mesir Kerajaan Denmark  EtiopiaTokoh dan pemimpin Ismail Pasha[1] Adolf Arendrup  † Yohanes IV Shalaqah Alula Walda Mika'il SolomonKekuatan 9.500[2] – 30,000+[3] 50.000[3] – 60,000[2]Korban 2.000+[4] 5.000+ Perang Etiopia-Mesir adalah perang yang berlangsung antara Kekaisaran Etiopia ...

 

1998 live album by ThunderLiveLive album by ThunderReleased16 February 1998 (1998-02-16) (album)28 March 1998 (1998-03-28) (video)Recorded12 – 16 November 1997VenueWulfrun Hall (Wolverhampton, England) and Shepherd's Bush Empire (London, England)GenreHard rockheavy metalLength125:09 (album)84:10 (video)LabelEagle Rock (album)Eagle Vision (video)ProducerLuke MorleyThunder live album chronology Live Circuit(1995) Live(1998) They Think It's All Over... It ...

 

هذه المقالة يتيمة إذ تصل إليها مقالات أخرى قليلة جدًا. فضلًا، ساعد بإضافة وصلة إليها في مقالات متعلقة بها. (ديسمبر 2013) منعم سليمان عطرون معلومات شخصية الميلاد سنة 1978 (العمر 44–45 سنة)  الحياة العملية المهنة كاتب  تعديل مصدري - تعديل   منعم سليمان عطرون كاتب وباحث ومفك...

Russian-American writer and catastrophist Immanuel VelikovskyImmanuel Velikovsky at the 1974 American Association for the Advancement of Science Conference in San FranciscoBorn(1895-06-10)10 June 1895Vitebsk, Russian Empire (in present-day Belarus)Died17 November 1979(1979-11-17) (aged 84)Princeton, New Jersey, U.S.Alma materMoscow State University Immanuel Velikovsky (/ˌvɛliˈkɒfski/; Russian: Иммануи́л Велико́вский, IPA: [ɪmənʊˈil vʲɪlʲɪˈko...

 

Canadian economist (born 1960) A major contributor to this article appears to have a close connection with its subject. It may require cleanup to comply with Wikipedia's content policies, particularly neutral point of view. Please discuss further on the talk page. (August 2017) (Learn how and when to remove this template message) M. Scott TaylorM. Scott Taylor in 2011Born (1960-07-30) 30 July 1960 (age 63)NationalityCanadianAcademic careerInstitutionUniversity of CalgaryAlma materQu...

 

Mosque in Ho Chi Minh City Islam by countryWorld percentage of Muslims by country Africa Algeria Angola Benin Botswana Burkina Faso Burundi Cameroon Cape Verde Central African Republic Chad Comoros Democratic Republic of the Congo Republic of the Congo Djibouti Egypt Equatorial Guinea Eritrea Eswatini Ethiopia Gabon Gambia Ghana Guinea Guinea-Bissau Ivory Coast Kenya Lesotho Liberia Libya Madagascar Malawi Mali Mauritania Mauritius Mayotte Morocco Western Sahara Mozambique Namibia Niger Niger...

Branch of Eastern Sudanic languages Not to be confused with Nubi language, and the Nubia language of Papua New Guinea. Nubian LanguagesEthnicityNubianGeographicdistributionEgypt, SudanNative speakers200,000–1 million (cited 1977)[1]Linguistic classificationNilo-Saharan?Eastern SudanicNorthern Eastern SudanicNubian LanguagesSubdivisions Central Northern Western ISO 639-2 / 5nubGlottolognubi1251 The Nubian languages (Arabic: لُغَات نُوبِيّة, romanized: lughāt ...

 

Ancient Greek sport Not to be confused with Greco-Roman wrestling. Greek wrestlingAlso known asRoman wrestlingFocusWrestlingCountry of originAncient GreeceOlympic sportNo Greek wrestling (Greek: πάλη, translit. pálē), also known as Ancient Greek wrestling and Pále (πάλη), was the most popular organized sport in Ancient Greece. A point was scored when one player touched the ground with his back, hip or shoulder, or conceding defeat due to a submission-hold or was forced out of ...

 

American editorial TV program Cuomo Prime TimeGenreNews programPresented byChris CuomoCountry of originUnited StatesOriginal languageEnglishProductionExecutive producerMelanie Buck[1]Production locations30 Hudson YardsNew York CityCamera setupMulti-cameraRunning time60 minutesOriginal releaseNetworkCNNCNN InternationalRelease August 28, 2017 (2017-08-28) – August 31, 2017 (2017-08-31)[2] January 9, 2018 (2018-01-09) – February&#...

Mr. Dr.Mohamad NazifSekretaris Umum Pemerintah Hindia BelandaMasa jabatan1937 – - Informasi pribadiLahir30 Oktober 1900 Kotogadang, Agam, Hindia BelandaKebangsaan IndonesiaAlma mater- Universitas Leiden, Belanda- Universitas Sorbonne, ParisPekerjaanAhli hukum, birokratSunting kotak info • L • B Mr. Dr. Mohamad Nazif gelar Soetan Machoedoem (lahir di Kotogadang, Agam, Sumatera Barat, 30 Oktober 1900 - meninggal di Bogor, 14 April 1942) adalah seorang ahli hukum, birokr...

 

Former HQ of TV-am in Camden, London Breakfast Television CentreEggcup HouseMTV Europe Headquarters in Camden Town as seen in 2015Location within Greater LondonGeneral informationTypeTelevision broadcast facilitiesLocationSouth of Camden Lock, London.Address17–29 Hawley Crescent London NW1 8TTCountryUnited KingdomCoordinates51°32′28″N 0°08′36″W / 51.541107°N 0.143351°W / 51.541107; -0.143351CompletedAugust 1981InauguratedAugust 1981Renovated2012–2013Own...

 

ExodusSampul album digital untuk ExodusAlbum studio karya EXODirilis30 Maret 2015(lihat riwayat perilisan)Direkam2014-15; S.M. Studios, SeoulGenre K-pop balada dance R&B soul Durasi37:1453:03 (Album repackaged)Bahasa Korea Mandarin Label S.M. Entertainment KT Music ProduserLee Soo-manKronologi EXO Exology Chapter 1: The Lost Planet(2014)Exology Chapter 1: The Lost Planet2014 Exodus(2015) Sing For You(2015) Singel dalam album Exodus Call Me BabyDirilis: 30 Maret 2015 Singel dalam album...

Nature preserve in Kentucky, United States Bat Cave and Cascade Caverns State Nature PreservesIUCN category IV (habitat/species management area)Canadian Yew is a northern, evergreen shrub that grows where cool air blows from entrances to Cascade CavernsLocationCarter County, Kentucky, United StatesCoordinates38°21′21″N 83°06′41″W / 38.35583°N 83.11139°W / 38.35583; -83.11139Area146 acres (59 ha)EstablishedDecember 16, 1981 Bat Cave and Cascade Caverns ...

 

Flo Rida's first U.S. number-one single Low was the longest-running number-one of 2008, topping the chart for 10 consecutive weeks. The Billboard Hot 100 is a chart that ranks the best-performing singles of the United States. Published by Billboard magazine, the data is compiled by Nielsen SoundScan based collectively on each single's weekly physical and digital sales, and airplay. In 2008, there were 14 singles that topped the chart in 52 issues of the magazine.[1] Rapper Flo Ri...

 

Strategi Solo vs Squad di Free Fire: Cara Menang Mudah!