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

54 lines
1.8 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.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"
, propositionReductio = ""
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-18 18:01:32 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4~3Qx)),(Qb),(~3Pb~5~6y(~3Ry))|=(~3Ra)"
2024-11-22 15:10:32 -06:00
2024-11-25 18:50:12 -06:00
, argumentCertainty = 1
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"
, 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
}
]
}