feat: uncucked my arguments

This commit is contained in:
Nick 2024-11-22 15:10:32 -06:00
parent 73a5a13100
commit 4d59a6997c
53 changed files with 391 additions and 524 deletions

View file

@ -1,68 +0,0 @@
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)"
}
]
}