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

51 lines
1.8 KiB
Elm
Raw Normal View History

2024-11-18 14:35:20 -06:00
module Debate.Arguments.Philosophy.PollinationReductio exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentPollinationReductio : Argument
argumentPollinationReductio =
2024-11-17 19:17:04 -06:00
{ argumentTitle = "Vegan Anti-Pollination Reductio"
, propositionTitle = "Apples are not vegan"
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-17 19:17:04 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Vx~4~3Ex)),(Eb),(~3Vb~5~6y(~3Py))%7C=(~3Pa)"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 19:17:04 -06:00
[ { definiendum = "V(x)"
, definiens = "(x) is vegan"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "E(x)"
, definiens = "(x) involves human on non-human animal exploitation"
2024-11-16 17:48:59 -06:00
}
2024-11-17 19:17:04 -06:00
, { definiendum = "P(y)"
, 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"
, 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."
, notation = "(x(Vx¬Ex))"
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."
, notation = "(Eb)"
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."
, notation = "(¬Vby(¬Py))"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 19:17:04 -06:00
, conclusion = "Therefore, apples are not vegan."
, conclusionNotation = "(¬Pa)"
2024-11-16 17:48:59 -06:00
}
]
}