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

69 lines
2.6 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.AgriculturalPredation exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentAgriculturalPredation : Argument
argumentAgriculturalPredation =
2024-11-17 13:45:22 -06:00
{ argumentTitle = "Argument for Animal Agirculture Counting as Predation"
, propositionTitle = "Animal agriculture counts as predation."
, propositionReductio = ""
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-18 21:51:19 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z(Px~4Qxyz~1(Rxyz~2Sxyz)~1Wxyz)),(Qahl),(Rahl~2Sahl),(Wahl)%7C=(Pa)"
2024-11-22 15:10:32 -06:00
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 13:45:22 -06:00
[ { definiendum = "P(x)"
, definiens = "(x) counts as predation"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "Q(x,y,z)"
, definiens = "(x) involves a (y) regularly capturing a (z)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "R(x,y,z)"
, definiens = "(x) involves a (y) regularly killing a (z)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "S(x,y,z)"
, definiens = "(x) involves a (y) regularly subduing a (z)"
2024-11-16 17:48:59 -06:00
}
2024-11-18 15:19:43 -06:00
, { definiendum = "W(x,y,z)"
2024-11-17 13:45:22 -06:00
, definiens = "(x) involves a (y) regularly consuming, to the captor's benefit, a (z)"
2024-11-16 17:48:59 -06:00
}
2024-11-18 21:51:19 -06:00
, { definiendum = "x"
, definiens = "an action"
}
, { definiendum = "y"
, definiens = "an animal"
}
, { definiendum = "z"
, definiens = "another animal"
}
2024-11-17 13:45:22 -06:00
, { definiendum = "a"
, definiens = "animal agriculture"
2024-11-16 17:48:59 -06:00
}
2024-11-18 21:51:19 -06:00
, { definiendum = "h"
2024-11-17 13:45:22 -06:00
, definiens = "humans"
}
2024-11-18 21:51:19 -06:00
, { definiendum = "l"
2024-11-17 13:45:22 -06:00
, definiens = "livestock"
}
2024-11-16 17:48:59 -06:00
]
, argumentFormalization =
[ { premises =
2024-11-17 13:45:22 -06:00
[ { 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."
2024-11-22 15:10:32 -06:00
, notation = "xyz(PxQxyz(RxyzSxyz)Wxyz)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "Animal agriculture involves humans regularly capturing livestock."
2024-11-22 15:10:32 -06:00
, notation = "Qahl"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "Animal agriculture involves humans regularly killing or subduing livestock."
2024-11-22 15:10:32 -06:00
, notation = "RahlSahl"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "Animal agriculture involves humans regularly consuming, to the captors' benefit, livestock."
2024-11-22 15:10:32 -06:00
, notation = "Wahl"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
, conclusion = "Therefore, animal agriculture counts as predation."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "Pa"
2024-11-16 17:48:59 -06:00
}
]
2024-11-18 21:51:19 -06:00
}