website/frontend/src/Debate/Arguments/Philosophy/AgriculturalPredation.elm
2024-11-22 02:19:27 -06:00

68 lines
2.6 KiB
Elm
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module Debate.Arguments.Philosophy.AgriculturalPredation exposing (..)
import Debate.Types exposing (..)
argumentAgriculturalPredation : Argument
argumentAgriculturalPredation =
{ argumentTitle = "Argument for Animal Agirculture Counting as Predation"
, propositionTitle = "Animal agriculture counts as predation."
, propositionReductio = ""
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z(Px~4Qxyz~1(Rxyz~2Sxyz)~1Wxyz)),(Qahl),(Rahl~2Sahl),(Wahl)%7C=(Pa)"
, proofText = ""
, definitionTable =
[ { definiendum = "P(x)"
, definiens = "(x) counts as predation"
}
, { definiendum = "Q(x,y,z)"
, definiens = "(x) involves a (y) regularly capturing a (z)"
}
, { definiendum = "R(x,y,z)"
, definiens = "(x) involves a (y) regularly killing a (z)"
}
, { definiendum = "S(x,y,z)"
, definiens = "(x) involves a (y) regularly subduing a (z)"
}
, { definiendum = "W(x,y,z)"
, definiens = "(x) involves a (y) regularly consuming, to the captor's benefit, a (z)"
}
, { definiendum = "x"
, definiens = "an action"
}
, { definiendum = "y"
, definiens = "an animal"
}
, { definiendum = "z"
, definiens = "another animal"
}
, { definiendum = "a"
, definiens = "animal agriculture"
}
, { definiendum = "h"
, definiens = "humans"
}
, { definiendum = "l"
, definiens = "livestock"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "Something counts as predation if, and only if, something involves an animal regularly capturing, killing or subduing, and consuming, to the captor's benefit, another animal."
, notation = "(xyz(PxQxyz(RxyzSxyz)Wxyz))"
}
, { premise = "Animal agriculture involves humans regularly capturing livestock."
, notation = "(Qahl)"
}
, { premise = "Animal agriculture involves humans regularly killing or subduing livestock."
, notation = "(RahlSahl)"
}
, { premise = "Animal agriculture involves humans regularly consuming, to the captors' benefit, livestock."
, notation = "(Wahl)"
}
]
, conclusion = "Therefore, animal agriculture counts as predation."
, conclusionNotation = "(Pa)"
}
]
}