feat: imported arguments to page

This commit is contained in:
Nick 2024-11-18 14:35:20 -06:00
parent 4fdb5f966f
commit 7f630108fa
27 changed files with 124 additions and 172 deletions

View file

@ -1,51 +0,0 @@
module Debate.Arguments.Ethics.EfilismPatrolSquad exposing (..)
import Debate.Types exposing (..)
argumentEfilismPatrolSquad : Argument
argumentEfilismPatrolSquad =
{ argumentTitle = "The Eternal Intergalactic Sentience Patrol Squad"
, propositionTitle = "Efilists are committed to pragmatic natalism"
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(~3Q),(~3P~1R~5~3S),(R),(~3S~5T)|=(T)"
, definitionTable =
[ { definiendum = "P"
, definiens = "humans abstaining from procreation maximally reduces rights violations"
}
, { definiendum = "Q"
, definiens = "humans have sterilized all sentient life in the universe"
}
, { definiendum = "R"
, definiens = "many more generations are required to sterilize all sentient life in the universe"
}
, { definiendum = "S"
, definiens = "efilists should abstain from procreation until all sentient life in the universe is sterilized"
}
, { definiendum = "T"
, definiens = "efilists are committed to pragmatic natalism"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "If humans abstaining from procreation maximally reduces rights violations, then humans have sterilized all sentient life in the universe."
, notation = "(PQ)"
}
, { premise = "Humans have not sterilized all sentient life in the universe."
, notation = "(¬Q)"
}
, { 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)"
}
, { premise = "Many more generations are required to sterilize all sentient life in the universe."
, notation = "(R)"
}
, { premise = "If efilists should not abstain from procreation until all sentient life in the universe is sterilized, then efilists are committed to pragmatic natalism."
, notation = "(¬ST)"
}
]
, conclusion = "Therefore, efilists are committed to pragmatic natalism."
, conclusionNotation = "(T)"
}
]
}