feat: uncucked my arguments

This commit is contained in:
Nick 2024-11-22 15:10:32 -06:00
parent 73a5a13100
commit 4d59a6997c
53 changed files with 391 additions and 524 deletions

View file

@ -1,53 +0,0 @@
module Debate.Arguments.Philosophy.PollinationReductio exposing (..)
import Debate.Types exposing (..)
argumentPollinationReductio : Argument
argumentPollinationReductio =
{ argumentTitle = "Vegan Anti-Pollination Reductio"
, propositionTitle = "Apples are not vegan"
, propositionReductio = ""
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4~3Qx)),(Qb),(~3Pb~5~6y(~3Ry))|=(~3Ra)"
, proofText = ""
, definitionTable =
[ { definiendum = "P(x)"
, definiens = "(x) is vegan"
}
, { definiendum = "Q(x)"
, definiens = "(x) involves human on non-human animal exploitation"
}
, { definiendum = "R(y)"
, definiens = "(y) generated are vegan"
}
, { definiendum = "x"
, definiens = "a being"
}
, { definiendum = "y"
, definiens = "a product"
}
, { definiendum = "b"
, definiens = "bees pollinating human crops"
}
, { definiendum = "a"
, definiens = "apples"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "Something is vegan if, and only if, something does not involve human on non-human animal exploitation."
, notation = "(x(Px¬Qx))"
}
, { premise = "Bees pollinating human crops involves human on non-human exploitation."
, notation = "(Qb)"
}
, { premise = "If bees pollinating human crops is not vegan, then the products generated are not vegan."
, notation = "(¬Pby(¬Ry))"
}
]
, conclusion = "Therefore, apples are not vegan."
, conclusionNotation = "(¬Ra)"
}
]
}