2024-12-09 19:53:09 -06:00
|
|
|
|
module Config.Pages.Debate.Arguments.Inferences.AnimalRights exposing (..)
|
2024-11-17 13:45:22 -06:00
|
|
|
|
|
2024-12-09 19:53:09 -06:00
|
|
|
|
import Config.Pages.Debate.Arguments.Types exposing (..)
|
2024-11-16 17:48:59 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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."
|
2024-11-18 18:55:36 -06:00
|
|
|
|
, propositionReductio = ""
|
2024-12-03 21:17:17 -06:00
|
|
|
|
, propositionSummary = "I view animal rights as the logical extension of trait-adjusted human rights to non-human animals. As such, if one wants to deny that animals should be given these trait-adjusted rights, they'll have to name a trait that accounts for the differential normative evaluation. Typically this is done by rejecting P3 and saying something retarded."
|
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 15:10:32 -06:00
|
|
|
|
|
2024-11-26 04:32:11 -06:00
|
|
|
|
, argumentCertainty = 10
|
2024-11-28 03:51:30 -06:00
|
|
|
|
, argumentImage = "animalrights"
|
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-22 15:10: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 don’t have moral worth, then there exists a trait that is absent in animals such that if it were absent in humans, humans wouldn’t have moral worth."
|
2024-11-22 15:10:32 -06:00
|
|
|
|
, notation = "¬Pa→∃t(Rta→(Rth→¬Ph))"
|
2024-11-16 17:48:59 -06:00
|
|
|
|
}
|
2024-11-17 13:45:22 -06:00
|
|
|
|
, { premise = "There doesn’t exist a trait that is absent in animals such that if it were absent in humans, humans wouldn’t have moral worth"
|
2024-11-22 15:10: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-22 15:10:32 -06:00
|
|
|
|
, conclusionNotation = "¬Qa"
|
2024-11-16 17:48:59 -06:00
|
|
|
|
}
|
|
|
|
|
]
|
2024-11-17 13:45:22 -06:00
|
|
|
|
}
|