Editing
Metaphysics
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Formalizing metaphysical claims with modal logic:''' <syntaxhighlight lang="python"> # Metaphysics uses modal logic to formalize possibility/necessity claims # β‘P = "Necessarily P" (P is true in all possible worlds) # βP = "Possibly P" (P is true in at least one possible world) # We can simulate possible worlds reasoning computationally class World: """A possible world with specific facts about it.""" def __init__(self, name: str, facts: dict): self.name = name self.facts = facts # {'proposition': bool} def is_true(self, proposition: str) -> bool: return self.facts.get(proposition, False) class ModalModel: """Kripke model for modal logic: worlds + accessibility relation.""" def __init__(self): self.worlds: dict[str, World] = {} self.accessibility: dict[str, set[str]] = {} # w β {accessible worlds} def add_world(self, world: World, accessible_from: list[str] = None): self.worlds[world.name] = world self.accessibility[world.name] = set() if accessible_from: for w in accessible_from: if w in self.accessibility: self.accessibility[w].add(world.name) def necessarily(self, proposition: str, from_world: str) -> bool: """β‘P: true in all accessible worlds.""" return all(self.worlds[w].is_true(proposition) for w in self.accessibility[from_world] if w in self.worlds) def possibly(self, proposition: str, from_world: str) -> bool: """βP: true in at least one accessible world.""" return any(self.worlds[w].is_true(proposition) for w in self.accessibility[from_world] if w in self.worlds) # Example: Is "water is HβO" a necessary truth? (Kripke's essential properties) model = ModalModel() actual = World("actual", {"water_is_H2O": True, "gold_is_element": True, "I_exist": True}) w1 = World("w1", {"water_is_H2O": True, "gold_is_element": True, "I_exist": False}) w2 = World("w2", {"water_is_H2O": True, "gold_is_element": True, "I_exist": True}) # Note: in w2, 'water' might be a different substance, but it still IS HβO in our sense model.worlds["actual"] = actual model.accessibility["actual"] = {"w1", "w2"} model.worlds["w1"] = w1 model.worlds["w2"] = w2 print(f"'Water is HβO' necessarily: {model.necessarily('water_is_H2O', 'actual')}") # Kripke argues: yes, necessary a posteriori β discovered empirically but true in all worlds print(f"'I exist' necessarily: {model.necessarily('I_exist', 'actual')}") # No: there are possible worlds where I don't exist </syntaxhighlight> ; Key metaphysical debates and theorists : '''Mind-body''' β Descartes (dualism), Smart & Place (identity theory), Putnam (functionalism), Chalmers (hard problem), Dennett (eliminativism) : '''Universals''' β Plato (Forms), Aristotle (immanent realism), Quine (nominalism), Armstrong (universals as relations) : '''Causation''' β Hume (regularity), Lewis (counterfactual), Armstrong (necessitation), Mackie (INUS conditions) : '''Personal identity''' β Locke (memory), Hume (bundle theory), Parfit (''Reasons and Persons''), Olson (animalism) : '''Modal metaphysics''' β Kripke (''Naming and Necessity''), Lewis (modal realism), Plantinga (ersatz worlds) </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information