2024-11-22 15:10:32 -06:00
|
|
|
|
module Debate.Arguments.Abortion exposing (..)
|
2024-11-16 17:28:46 -06:00
|
|
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
argumentAbortion : Argument
|
|
|
|
|
argumentAbortion =
|
2024-11-17 01:28:10 -06:00
|
|
|
|
{ argumentTitle = "Abortion Rights"
|
|
|
|
|
, propositionTitle = "One's whims are not a sufficient justification for the termination of sentient human life."
|
2024-11-18 18:55:36 -06:00
|
|
|
|
, propositionReductio = ""
|
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~2Q~5R),(P),(Q),((R~1F~1~3H)~5M),(F),(~3H),(M~5~3W)%7C=(~3W)"
|
2024-11-25 18:50:12 -06:00
|
|
|
|
, argumentCertainty = 1
|
2024-11-16 17:28:46 -06:00
|
|
|
|
, definitionTable =
|
2024-11-17 01:28:10 -06:00
|
|
|
|
[ { definiendum = "P"
|
|
|
|
|
, definiens = "one consents to becoming pregnant"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { definiendum = "Q"
|
|
|
|
|
, definiens = "one consensually engages in sexual activity without contraception"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { definiendum = "R"
|
|
|
|
|
, definiens = "one is implicitly committed to at least accepting the average risks for the average pregnancy"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { definiendum = "F"
|
|
|
|
|
, definiens = "one's pregnancy persists long enough for fetal sentience to develop"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { definiendum = "H"
|
|
|
|
|
, definiens = "one's risk profile during pregnancy is high"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { definiendum = "M"
|
|
|
|
|
, definiens = "one is morally bound to carrying the pregnancy to term"
|
|
|
|
|
}
|
|
|
|
|
, { definiendum = "W"
|
|
|
|
|
, definiens = "one's whims are a sufficient justification for the termination of sentient human life"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
, argumentFormalization =
|
|
|
|
|
[ { premises =
|
2024-11-17 01:28:10 -06:00
|
|
|
|
[ { premise = "If one consents to becoming pregnant or one consensually engages in sexual activity without contraception, then one is implicitly committed to at least accepting the average risks for the average pregnancy."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "P∨Q→R"
|
2024-11-17 01:28:10 -06:00
|
|
|
|
}
|
|
|
|
|
, { premise = "One consents to becoming pregnant."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "P"
|
2024-11-17 01:28:10 -06:00
|
|
|
|
}
|
|
|
|
|
, { premise = "One consensually engages in sexual activity without contraception."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "Q"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { premise = "If one is implicitly committed to at least accepting the average risks for the average pregnancy and one's pregnancy persists long enough for fetal sentience to develop and one's risk profile during pregnancy is not high, then one is morally bound to carrying the pregnancy to term."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "R∧F∧¬H→M"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { premise = "One's pregnancy persists long enough for fetal sentience to develop."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "F"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { premise = "One's risk profile during pregnancy is not high."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "¬H"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, { premise = "If one is morally bound to carrying the pregnancy to term, then one's whims are not a sufficient justification for the termination of sentient human life."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "M→¬W"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
|
|
|
|
]
|
2024-11-17 01:28:10 -06:00
|
|
|
|
, conclusion = "Therefore, one's whims are not a sufficient justification for the termination of sentient human life."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, conclusionNotation = "¬W"
|
2024-11-16 17:28:46 -06:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|