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

58 lines
2.4 KiB
Elm
Raw Normal View History

2024-11-16 17:48:59 -06:00
module Debate.Arguments.Veganism.AgriculturalPredation exposing (..)
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."
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-17 13:45:22 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z(Px~4Qxyz~1(Rxyz~2Sxyz)~1Txyz)),(Qahl),(Rahl~2Sahl),(Tahl)%7C=(Pa)"
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-17 13:45:22 -06:00
, { definiendum = "T(x,y,z)"
, definiens = "(x) involves a (y) regularly consuming, to the captor's benefit, a (z)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "a"
, definiens = "animal agriculture"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "h"
, definiens = "humans"
}
, { definiendum = "l"
, 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."
, notation = "(xyz(PxQxyz(RxyzSxyz)Txyz))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "Animal agriculture involves humans regularly capturing livestock."
, 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."
, 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."
, notation = "(Tahl)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
, conclusion = "Therefore, animal agriculture counts as predation."
, conclusionNotation = "(Pa)"
2024-11-16 17:48:59 -06:00
}
]
}