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

54 lines
1.8 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.VeganSocietyReductio exposing (..)
2024-11-18 14:03:55 -06:00
import Debate.Types exposing (..)
argumentVeganSocietyReductio : Argument
argumentVeganSocietyReductio =
{ argumentTitle = "Vegan Society Definition Reductio"
, propositionTitle = "It is vegan to eat Groot."
, propositionReductio = ""
2024-11-18 14:03:55 -06:00
, propositionSummary = "Summary"
2024-11-18 18:01:32 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4~3Qx)),(~6x~6y(~3Rx~5~3Q(e(y)))),(~3Rg)%7C=(P(e(g)))"
2024-11-22 15:10:32 -06:00
2024-11-25 18:50:12 -06:00
, argumentCertainty = 1
2024-11-18 14:03:55 -06:00
, definitionTable =
2024-11-18 18:01:32 -06:00
[ { definiendum = "P(x)"
2024-11-18 14:03:55 -06:00
, definiens = "it is vegan to do (x)"
}
2024-11-18 18:01:32 -06:00
, { definiendum = "Q(x,y)"
2024-11-18 14:03:55 -06:00
, definiens = "(x) exploits (y)"
}
2024-11-18 18:01:32 -06:00
, { definiendum = "R(x)"
2024-11-18 14:03:55 -06:00
, definiens = "(x) is an animal"
}
, { definiendum = "x"
, definiens = "a being"
}
, { definiendum = "y"
, definiens = "an animal"
}
, { definiendum = "e"
, definiens = "eat"
}
, { definiendum = "g"
, definiens = "Groot"
}
]
, argumentFormalization =
[ { premises =
2024-11-19 01:12:55 -06:00
[ { premise = "For all things, it is vegan to do something if, and only if, that thing does not exploit animals."
2024-11-22 15:10:32 -06:00
, notation = "x(Px¬Qx)"
2024-11-18 14:03:55 -06:00
}
, { premise = "If some beings are not animals, then eating those beings does not exploit animals."
2024-11-22 15:10:32 -06:00
, notation = "xy(¬Rx¬Q(e(y)))"
2024-11-18 14:03:55 -06:00
}
, { premise = "Groot is not an animal."
2024-11-22 15:10:32 -06:00
, notation = "¬Rg"
2024-11-18 14:03:55 -06:00
}
]
, conclusion = "Therefore, it is vegan to eat Groot."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "P(e(g))"
2024-11-18 14:03:55 -06:00
}
]
}