website/frontend/src/Debate/Arguments/Inferences/PollinationReductio.elm

55 lines
2.3 KiB
Elm
Raw Normal View History

2024-12-08 02:18:36 -06:00
module Debate.Arguments.Inferences.PollinationReductio exposing (..)
2024-11-16 17:48:59 -06:00
2024-12-08 02:18:36 -06:00
import Debate.Arguments.Types exposing (..)
2024-11-16 17:48:59 -06:00
argumentPollinationReductio : Argument
argumentPollinationReductio =
2024-11-17 19:17:04 -06:00
{ 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)"
2024-11-26 04:32:11 -06:00
, argumentCertainty = 10
2024-11-28 03:51:30 -06:00
, argumentImage = "pollinationreductio"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-18 18:01:32 -06:00
[ { definiendum = "P(x)"
2024-11-17 19:17:04 -06:00
, definiens = "(x) is vegan"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "Q(x)"
2024-11-17 19:17:04 -06:00
, definiens = "(x) involves human on non-human animal exploitation"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "R(y)"
2024-11-17 19:17:04 -06:00
, definiens = "(y) generated are vegan"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "x"
, definiens = "a being"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "y"
, definiens = "a product"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "b"
, definiens = "bees pollinating human crops"
}
, { definiendum = "a"
2024-11-17 19:17:04 -06:00
, definiens = "apples"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 19:17:04 -06:00
[ { premise = "Something is vegan if, and only if, something does not involve human on non-human animal exploitation."
2024-11-22 15:10:32 -06:00
, notation = "x(Px¬Qx)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { premise = "Bees pollinating human crops involves human on non-human exploitation."
2024-11-22 15:10:32 -06:00
, notation = "Qb"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { premise = "If bees pollinating human crops is not vegan, then the products generated are not vegan."
2024-11-22 15:10:32 -06:00
, notation = "¬Pby(¬Ry)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 19:17:04 -06:00
, conclusion = "Therefore, apples are not vegan."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "¬Ra"
2024-11-16 17:48:59 -06:00
}
]
}