mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: lots of work
This commit is contained in:
parent
4a19d6eb06
commit
848038b62b
158 changed files with 1361 additions and 685 deletions
54
frontend/src/Debate/Arguments/Inferences/PollinationReductio.elm
Executable file
54
frontend/src/Debate/Arguments/Inferences/PollinationReductio.elm
Executable file
|
@ -0,0 +1,54 @@
|
|||
module Debate.Arguments.Inferences.PollinationReductio exposing (..)
|
||||
|
||||
import Debate.Arguments.Types exposing (..)
|
||||
|
||||
|
||||
argumentPollinationReductio : Argument
|
||||
argumentPollinationReductio =
|
||||
{ argumentTitle = "Vegan Anti-Pollination Reductio"
|
||||
, propositionTitle = "Apples are not vegan"
|
||||
, propositionReductio = "Some vegans hold to a deontic principle that any form of animal exploitation is wrong, and the products of exploitation are to be boycotted and designated non-vegan."
|
||||
, propositionSummary = "If one accepts that no animal exploitation is permissible, they're committed to some truly hilarious positions, such as apples not being vegan because we exploit the natural behaviour of bees to pollinate our apple trees."
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4~3Qx)),(Qb),(~3Pb~5~6y(~3Ry))|=(~3Ra)"
|
||||
, argumentCertainty = 10
|
||||
, argumentImage = "pollinationreductio"
|
||||
, 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