2024-11-18 14:35:20 -06:00
|
|
|
module Debate.Arguments.Philosophy.EfilismPatrolSquad exposing (..)
|
2024-11-16 17:28:46 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentEfilismPatrolSquad : Argument
|
|
|
|
argumentEfilismPatrolSquad =
|
2024-11-17 01:28:10 -06:00
|
|
|
{ argumentTitle = "The Eternal Intergalactic Sentience Patrol Squad"
|
2024-11-18 14:03:55 -06:00
|
|
|
, propositionTitle = "Efilists are committed to pragmatic natalism"
|
2024-11-16 17:28:46 -06:00
|
|
|
, propositionSummary = "Summary"
|
2024-11-18 18:01:32 -06:00
|
|
|
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(~3Q),(~3P~1R~5~3S),(R),(~3S~5W)|=(W)"
|
2024-11-16 17:28:46 -06:00
|
|
|
, definitionTable =
|
2024-11-17 01:28:10 -06:00
|
|
|
[ { definiendum = "P"
|
|
|
|
, definiens = "humans abstaining from procreation maximally reduces rights violations"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
, { definiendum = "Q"
|
|
|
|
, definiens = "humans have sterilized all sentient life in the universe"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
, { definiendum = "R"
|
|
|
|
, definiens = "many more generations are required to sterilize all sentient life in the universe"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
, { definiendum = "S"
|
|
|
|
, definiens = "efilists should abstain from procreation until all sentient life in the universe is sterilized"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-18 18:01:32 -06:00
|
|
|
, { definiendum = "W"
|
2024-11-18 14:03:55 -06:00
|
|
|
, definiens = "efilists are committed to pragmatic natalism"
|
|
|
|
}
|
2024-11-16 17:28:46 -06:00
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
2024-11-17 01:28:10 -06:00
|
|
|
[ { premise = "If humans abstaining from procreation maximally reduces rights violations, then humans have sterilized all sentient life in the universe."
|
|
|
|
, notation = "(P→Q)"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
, { premise = "Humans have not sterilized all sentient life in the universe."
|
|
|
|
, notation = "(¬Q)"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
, { premise = "If humans abstaining from procreation does not maximally reduce rights violations and many more generations are required to sterilize all sentient life in the universe, then efilists should not abstain from procreation until all sentient life in the universe is sterilized."
|
|
|
|
, notation = "(¬P∧R→¬S)"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
, { premise = "Many more generations are required to sterilize all sentient life in the universe."
|
|
|
|
, notation = "(R)"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
2024-11-18 14:03:55 -06:00
|
|
|
, { premise = "If efilists should not abstain from procreation until all sentient life in the universe is sterilized, then efilists are committed to pragmatic natalism."
|
2024-11-18 18:01:32 -06:00
|
|
|
, notation = "(¬S→W)"
|
2024-11-18 14:03:55 -06:00
|
|
|
}
|
2024-11-16 17:28:46 -06:00
|
|
|
]
|
2024-11-18 14:03:55 -06:00
|
|
|
, conclusion = "Therefore, efilists are committed to pragmatic natalism."
|
2024-11-18 18:01:32 -06:00
|
|
|
, conclusionNotation = "(∴W)"
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|