feat: imported arguments to page

This commit is contained in:
Nick 2024-11-18 14:35:20 -06:00
parent 4fdb5f966f
commit 7f630108fa
27 changed files with 124 additions and 172 deletions

View file

@ -0,0 +1,51 @@
module Debate.Arguments.Philosophy.AnimalRights exposing (..)
import Debate.Types exposing (..)
argumentAnimalRights : Argument
argumentAnimalRights =
{ argumentTitle = "Argument for Animal Rights"
, propositionTitle = "We should not exploit animals to any greater degree than we would tolerate for humans."
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x(Wx~5Nx)),(~3Wa~5~7t(Ata~5(Ath~5~3Wh))),(~3~7t(Ata~5(Ath~5~3Wh))),(Wa)%7C=(Na)"
, definitionTable =
[ { definiendum = "W(x)"
, definiens = "(x) has moral worth"
}
, { definiendum = "N(x)"
, definiens = "we should exploit (x) to any greater degree than we would tolerate for humans"
}
, { definiendum = "t(At(x)"
, definiens = "there exists a (t) that is absent in (x)"
}
, { definiendum = "x"
, definiens = "a being"
}
, { definiendum = "t"
, definiens = "trait"
}
, { definiendum = "a"
, definiens = "animal"
}
, { definiendum = "h"
, definiens = "human"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "For all things, if a being has moral worth, then we should not exploit it to any greater degree than we would tolerate for humans."
, notation = "(x(WxNx))"
}
, { premise = "If animals dont have moral worth, then there exists a trait that is absent in animals such that if it were absent in humans, humans wouldnt have moral worth."
, notation = "(¬Wat(Ata(Ath¬Wh)))"
}
, { premise = "There doesnt exist a trait that is absent in animals such that if it were absent in humans, humans wouldnt have moral worth"
, notation = "(¬t(Ata(Ath¬Wh)))"
}
]
, conclusion = "Therefore, we should not exploit animals to any greater degree than we would tolerate for humans."
, conclusionNotation = "(Na)"
}
]
}