feat: added arguments

This commit is contained in:
Nick 2024-11-17 19:17:04 -06:00
parent 74dfd2725c
commit 600bfc267c
7 changed files with 186 additions and 153 deletions

View file

@ -5,50 +5,47 @@ import Debate.Types exposing (..)
argumentDairyCowRape : Argument
argumentDairyCowRape =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Argument for Dairy Cattle Being Raped"
, propositionTitle = "A bull mating with a cow qualifies as rape"
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x~6y(Px~4(Qxy~1~3Ryx))),(Qae),(~3Rea)|=(Pa)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "P(x)"
, definiens = "(x) qualifies as rape"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "Q(x,y)"
, definiens = "(x) involves sexual contact with (y)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "R(y,x)"
, definiens = "(y) renders informed consent for (x)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "x"
, definiens = "an action"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "y"
, definiens = "an involved party"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "a"
, definiens = "bulls mating with cows"
}
, { definiendum = "e"
, definiens = "a cow"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { 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)))"
}
, { premise = ""
, notation = ""
, { premise = "A bull mating with a cow involves sexual contact with a cow."
, notation = "(Qae)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "A cow does not render informed consent to a bull mating with a cow."
, notation = "(¬Rea)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, a bull mating with a cow qualifies as rape."
, conclusionNotation = "(Pa)"
}
]
}