website/frontend/src/Debate/Arguments/Philosophy/DairyCowRape.elm

52 lines
1.9 KiB
Elm
Raw Normal View History

2024-11-18 14:35:20 -06:00
module Debate.Arguments.Philosophy.DairyCowRape exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentDairyCowRape : Argument
argumentDairyCowRape =
2024-11-17 19:17:04 -06:00
{ argumentTitle = "Argument for Dairy Cattle Being Raped"
, propositionTitle = "A bull mating with a cow qualifies as rape."
, propositionReductio = ""
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-17 19:17:04 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y(Px~4(Qxy~1~3Ryx))),(Qae),(~3Rea)|=(Pa)"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 19:17:04 -06:00
[ { definiendum = "P(x)"
, definiens = "(x) qualifies as rape"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "Q(x,y)"
, definiens = "(x) involves sexual contact with (y)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "R(y,x)"
, definiens = "(y) renders informed consent for (x)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "x"
, definiens = "an action"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "y"
, definiens = "an involved party"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "a"
, definiens = "bulls mating with cows"
}
, { definiendum = "e"
, definiens = "a cow"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 19:17:04 -06:00
[ { premise = "An action qualifies as rape if, and only if, the action involves sexual contact with an involved party and the involved party does not render informed consent for the action."
, notation = "(xy(Px(Qxy¬Ryx)))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { premise = "A bull mating with a cow involves sexual contact with a cow."
, notation = "(Qae)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { premise = "A cow does not render informed consent to a bull mating with a cow."
, notation = "(¬Rea)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 19:17:04 -06:00
, conclusion = "Therefore, a bull mating with a cow qualifies as rape."
, conclusionNotation = "(Pa)"
2024-11-16 17:48:59 -06:00
}
]
}