website/frontend/src/Debate/Arguments/TransPeople.elm

67 lines
3.4 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.TransPeople exposing (..)
2024-11-16 17:48:59 -06:00
import Debate.Types exposing (..)
argumentTransPeople : Argument
argumentTransPeople =
2024-11-17 01:28:10 -06:00
{ argumentTitle = "Argument For Trans Identity"
, propositionTitle = "A trans person of the male sex is a woman and a trans person with female sex is a man."
, 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~4Rx~1Wx)),(~6x(Qx~4Sx~1Wx)),(Ra~1Wa),(Sg~1Wg)|=(Pa~1Qg)"
2024-11-22 15:10:32 -06:00
2024-11-25 18:50:12 -06:00
, argumentCertainty = 1
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-17 01:28:10 -06:00
[ { definiendum = "Male"
, definiens = "the cluster of traits that associate with small, but not large, gametes."
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "Female"
, definiens = "the cluster of traits that associate with large, but not small, gametes."
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "P(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) is a woman"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "Q(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) is a man"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "R(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) possesses a sufficiently greater sum of weighted traits that more closely associate with large gametes than weighted traits that associate with small gametes"
2024-11-16 17:48:59 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "S(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) possesses a sufficiently greater sum of weighted traits that more closely associate with small gametes than weighted traits that associate with large gametes"
}
2024-11-18 18:01:32 -06:00
, { definiendum = "W(x)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) is over 18 years of age"
}
, { definiendum = "x"
, definiens = "someone"
}
, { definiendum = "a"
, definiens = "a trans person of the male sex"
}
, { definiendum = "g"
, definiens = "a trans person of the female sex"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 01:28:10 -06:00
[ { premise = "Someone is a woman if, and only if, someone possesses a sufficiently greater sum of weighted traits that more closely associate with large gametes than weighted traits that associate with small gametes and someone is over 18 years of age."
2024-11-22 15:10:32 -06:00
, notation = "x(PxRxWx)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "Someone is a man if, and only if, someone possesses a sufficiently greater sum of weighted traits that more closely associate with small gametes than weighted traits that associate with large gametes and someone is over 18 years of age."
2024-11-22 15:10:32 -06:00
, notation = "x(QxSxWx)"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "A trans person of the male sex possesses a sufficiently greater sum of weighted traits that more closely associate with large gametes than weighted traits that associate with small gametes and a trans person with small gametes is over 18 years of age."
2024-11-22 15:10:32 -06:00
, notation = "RaWa"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "A trans person of the female sex possesses a sufficiently greater sum of weighted traits that more closely associate with small gametes than weighted traits that associate with large gametes and a trans person with large gametes is over 18 years of age."
2024-11-22 15:10:32 -06:00
, notation = "SgWg"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 01:28:10 -06:00
, conclusion = "Therefore, a trans person of the male sex is a woman and a trans person with female sex is a man."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "PaQg"
2024-11-16 17:48:59 -06:00
}
]
}