feat: added arguments

This commit is contained in:
Nick 2024-11-17 13:45:22 -06:00
parent da420159f4
commit 2e1135e510
11 changed files with 259 additions and 335 deletions

View file

@ -5,50 +5,54 @@ import Debate.Types exposing (..)
argumentAgriculturalPredation : Argument
argumentAgriculturalPredation =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Argument for Animal Agirculture Counting as Predation"
, propositionTitle = "Animal agriculture counts as predation."
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x~6y~6z(Px~4Qxyz~1(Rxyz~2Sxyz)~1Txyz)),(Qahl),(Rahl~2Sahl),(Tahl)%7C=(Pa)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "P(x)"
, definiens = "(x) counts as predation"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "Q(x,y,z)"
, definiens = "(x) involves a (y) regularly capturing a (z)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "R(x,y,z)"
, definiens = "(x) involves a (y) regularly killing a (z)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "S(x,y,z)"
, definiens = "(x) involves a (y) regularly subduing a (z)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "T(x,y,z)"
, definiens = "(x) involves a (y) regularly consuming, to the captor's benefit, a (z)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "a"
, definiens = "animal agriculture"
}
, { definiendum = "h"
, definiens = "humans"
}
, { definiendum = "l"
, definiens = "livestock"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { 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))"
}
, { premise = ""
, notation = ""
, { premise = "Animal agriculture involves humans regularly capturing livestock."
, notation = "(Qahl)"
}
, { premise = ""
, notation = ""
, { premise = "Animal agriculture involves humans regularly killing or subduing livestock."
, notation = "(RahlSahl)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "Animal agriculture involves humans regularly consuming, to the captors' benefit, livestock."
, notation = "(Tahl)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, animal agriculture counts as predation."
, conclusionNotation = "(Pa)"
}
]
}