mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 20:35:13 -05:00
feat: uncucked my arguments
This commit is contained in:
parent
73a5a13100
commit
4d59a6997c
53 changed files with 391 additions and 524 deletions
53
frontend/src/Debate/Arguments/PollinationReductio.elm
Executable file
53
frontend/src/Debate/Arguments/PollinationReductio.elm
Executable file
|
@ -0,0 +1,53 @@
|
|||
module Debate.Arguments.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)"
|
||||
|
||||
, 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 = "¬Pb→∀y(¬Ry)"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, apples are not vegan."
|
||||
, conclusionNotation = "¬Ra"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue