mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
68 lines
2.6 KiB
Elm
Executable file
68 lines
2.6 KiB
Elm
Executable file
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 = "(∀x∀y∀z(Px↔Qxyz∧(Rxyz∨Sxyz)∧Wxyz))"
|
||
}
|
||
, { premise = "Animal agriculture involves humans regularly capturing livestock."
|
||
, notation = "(Qahl)"
|
||
}
|
||
, { premise = "Animal agriculture involves humans regularly killing or subduing livestock."
|
||
, notation = "(Rahl∨Sahl)"
|
||
}
|
||
, { premise = "Animal agriculture involves humans regularly consuming, to the captors' benefit, livestock."
|
||
, notation = "(Wahl)"
|
||
}
|
||
]
|
||
, conclusion = "Therefore, animal agriculture counts as predation."
|
||
, conclusionNotation = "(∴Pa)"
|
||
}
|
||
]
|
||
}
|