website/frontend/src/Debate/Arguments/Philosophy/AnimalRights.elm

54 lines
2.2 KiB
Elm
Raw Normal View History

2024-11-18 14:35:20 -06:00
module Debate.Arguments.Philosophy.AnimalRights exposing (..)
2024-11-17 13:45:22 -06:00
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentAnimalRights : Argument
argumentAnimalRights =
2024-11-17 13:45:22 -06:00
{ argumentTitle = "Argument for Animal Rights"
, propositionTitle = "We should not exploit animals to any greater degree than we would tolerate for humans."
, propositionReductio = ""
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-18 18:01:32 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5~3Qx)),(~3Pa~5~7t(Rta~5(Rth~5~3Ph))),(~3~7t(Rta~5(Rth~5~3Ph))),(Pa)|=(~3Qa)"
2024-11-22 02:19:27 -06:00
, proofText = ""
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-18 18:01:32 -06:00
[ { definiendum = "P(x)"
2024-11-17 13:45:22 -06:00
, definiens = "(x) has moral worth"
}
2024-11-18 18:01:32 -06:00
, { definiendum = "Q(x)"
2024-11-17 13:45:22 -06:00
, definiens = "we should exploit (x) to any greater degree than we would tolerate for humans"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "R(t,x)"
2024-11-17 13:45:22 -06:00
, definiens = "there exists a (t) that is absent in (x)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "x"
, definiens = "a being"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "t"
, definiens = "trait"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "a"
, definiens = "animal"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { definiendum = "h"
, definiens = "human"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 13:45:22 -06:00
[ { 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."
2024-11-18 18:01:32 -06:00
, notation = "(x(Px¬Qx))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { 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."
2024-11-18 18:01:32 -06:00
, notation = "(¬Pat(Rta(Rth¬Ph)))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 13:45:22 -06:00
, { premise = "There doesnt exist a trait that is absent in animals such that if it were absent in humans, humans wouldnt have moral worth"
2024-11-18 18:01:32 -06:00
, notation = "(¬t(Rta(Rth¬Ph)))"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
, conclusion = "Therefore, we should not exploit animals to any greater degree than we would tolerate for humans."
2024-11-18 18:01:32 -06:00
, conclusionNotation = "(¬Qa)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 13:45:22 -06:00
}