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 (..)
argumentPollinationReductio : Argument
argumentPollinationReductio =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Vegan Anti-Pollination Reductio"
, propositionTitle = "Apples are not vegan"
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x(Vx~4~3Ex)),(Eb),(~3Vb~5~6y(~3Py))%7C=(~3Pa)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "V(x)"
, definiens = "(x) is vegan"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "E(x)"
, definiens = "(x) involves human on non-human animal exploitation"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "P(y)"
, definiens = "(y) generated are vegan"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "x"
, definiens = "a being"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "y"
, definiens = "a product"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "b"
, definiens = "bees pollinating human crops"
}
, { definiendum = "a"
, definiens = "apples"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { premise = "Something is vegan if, and only if, something does not involve human on non-human animal exploitation."
, notation = "(x(Vx¬Ex))"
}
, { premise = ""
, notation = ""
, { premise = "Bees pollinating human crops involves human on non-human exploitation."
, notation = "(Eb)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "If bees pollinating human crops is not vegan, then the products generated are not vegan."
, notation = "(¬Vby(¬Py))"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, apples are not vegan."
, conclusionNotation = "(¬Pa)"
}
]
}