2024-11-18 14:35:20 -06:00
|
|
|
module Debate.Arguments.Philosophy.EthicalSlurs exposing (..)
|
2024-11-15 23:28:32 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentEthicalSlurs : Argument
|
|
|
|
argumentEthicalSlurs =
|
|
|
|
{ argumentTitle = "Argument for Using the Term Retard"
|
2024-11-18 18:01:32 -06:00
|
|
|
, propositionTitle = "It is generally permissible to use the term retard with an altered non-bigoted meaning."
|
2024-11-18 18:55:36 -06:00
|
|
|
, propositionReductio = ""
|
2024-11-18 18:01:32 -06:00
|
|
|
, propositionSummary = "Summary"
|
|
|
|
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(~6x(~3Px~5Rx)),(~3Pr),(~3Qr~1Rr~5Sr),(Sr~5Wr)|=(Wr)"
|
2024-11-22 02:19:27 -06:00
|
|
|
, proofText = ""
|
2024-11-15 23:28:32 -06:00
|
|
|
, definitionTable =
|
2024-11-18 18:01:32 -06:00
|
|
|
[ { definiendum = "P(x)"
|
2024-11-19 01:12:55 -06:00
|
|
|
, definiens = "(x)'s negative connotations have been neutralised"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
2024-11-18 18:01:32 -06:00
|
|
|
, { definiendum = "Q(x)"
|
2024-11-19 01:12:55 -06:00
|
|
|
, definiens = "(x) has been rendered non-bigoted via altered usage"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
2024-11-18 18:01:32 -06:00
|
|
|
, { definiendum = "R(x)"
|
2024-11-19 01:12:55 -06:00
|
|
|
, definiens = "oppressed people will continue to suffer from the use of (x)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
, { definiendum = "S(x)"
|
|
|
|
, definiens = "it is permissible to neutralise the term retard's negative connotations"
|
|
|
|
}
|
2024-11-18 18:01:32 -06:00
|
|
|
, { definiendum = "W(x)"
|
2024-11-15 23:28:32 -06:00
|
|
|
, definiens = "it is generally permissible to use the term retard with an altered non-bigoted meaning"
|
|
|
|
}
|
2024-11-18 21:51:19 -06:00
|
|
|
, { definiendum = "x"
|
|
|
|
, definiens = "a slur"
|
|
|
|
}
|
2024-11-15 23:28:32 -06:00
|
|
|
, { definiendum = "r"
|
|
|
|
, definiens = "retard"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
2024-11-19 01:12:55 -06:00
|
|
|
[ { premise = "For all slurs, a slur's negative connotations have been neutralised if, and only if, slur has been rendered non-bigoted via altered usage."
|
2024-11-18 18:01:32 -06:00
|
|
|
, notation = "(∀x(Px↔Qx))"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
2024-11-19 01:12:55 -06:00
|
|
|
, { premise = "For all slurs, if it is not the case that slur's negative connotations have been neutralised, then oppressed people will continue to suffer from the use of slur."
|
2024-11-18 18:01:32 -06:00
|
|
|
, notation = "(∀x(¬Px→Rx))"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
, { premise = "It is not the case that the term retard's negative connotations have been neutralised."
|
2024-11-18 18:01:32 -06:00
|
|
|
, notation = "(¬Pr)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
, { premise = "If the term retard has not been rendered non-bigoted via altered usage and oppressed people will continue to suffer from the use of the term retard, then it is permissible to neutralise the term retard's negative connotations."
|
2024-11-18 18:01:32 -06:00
|
|
|
, notation = "(¬Qr∧Rr→Sr)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
, { premise = "If it is permissible to neutralise the term retard's negative connotations, then It is generally permissible to use the term retard with an altered non-bigoted meaning."
|
2024-11-18 18:01:32 -06:00
|
|
|
, notation = "(Sr→Wr)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
, conclusion = "Therefore, it is generally permissible to use the term retard with an altered non-bigoted meaning."
|
2024-11-18 18:01:32 -06:00
|
|
|
, conclusionNotation = "(∴Wr)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|