website/frontend/src/Debate/Arguments/Ethics/EfilismPatrolSquad.elm

46 lines
2.3 KiB
Elm
Raw Normal View History

2024-11-16 17:28:46 -06:00
module Debate.Arguments.Ethics.EfilismPatrolSquad exposing (..)
import Debate.Types exposing (..)
argumentEfilismPatrolSquad : Argument
argumentEfilismPatrolSquad =
2024-11-17 01:28:10 -06:00
{ argumentTitle = "The Eternal Intergalactic Sentience Patrol Squad"
, propositionTitle = "Efilists should not abstain from procreation until all sentient life in the universe is sterilized"
2024-11-16 17:28:46 -06:00
, propositionSummary = "Summary"
2024-11-17 01:28:10 -06:00
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(~3Q),(~3P~1R~5~3S),(R)%7C=(~3S)"
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
}
]
, 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 = "(PQ)"
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 = "(¬PR¬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-17 01:28:10 -06:00
, conclusion = "Therefore, efilists should not abstain from procreation until all sentient life in the universe is sterilized."
2024-11-16 17:28:46 -06:00
, conclusionNotation = "()"
}
]
}