mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 04:45:12 -05:00
feat: uncucked my arguments
This commit is contained in:
parent
73a5a13100
commit
4d59a6997c
53 changed files with 391 additions and 524 deletions
65
frontend/src/Debate/Arguments/TransPeople.elm
Executable file
65
frontend/src/Debate/Arguments/TransPeople.elm
Executable file
|
@ -0,0 +1,65 @@
|
|||
module Debate.Arguments.TransPeople exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentTransPeople : Argument
|
||||
argumentTransPeople =
|
||||
{ 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 = ""
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Rx~1Wx)),(~6x(Qx~4Sx~1Wx)),(Ra~1Wa),(Sg~1Wg)|=(Pa~1Qg)"
|
||||
|
||||
, definitionTable =
|
||||
[ { definiendum = "Male"
|
||||
, definiens = "the cluster of traits that associate with small, but not large, gametes."
|
||||
}
|
||||
, { definiendum = "Female"
|
||||
, definiens = "the cluster of traits that associate with large, but not small, gametes."
|
||||
}
|
||||
, { definiendum = "P(x)"
|
||||
, definiens = "(x) is a woman"
|
||||
}
|
||||
, { definiendum = "Q(x)"
|
||||
, definiens = "(x) is a man"
|
||||
}
|
||||
, { definiendum = "R(x)"
|
||||
, 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"
|
||||
}
|
||||
, { definiendum = "S(x)"
|
||||
, 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"
|
||||
}
|
||||
, { definiendum = "W(x)"
|
||||
, 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"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { 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."
|
||||
, notation = "∀x(Px↔Rx∧Wx)"
|
||||
}
|
||||
, { 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."
|
||||
, notation = "∀x(Qx↔Sx∧Wx)"
|
||||
}
|
||||
, { 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."
|
||||
, notation = "Ra∧Wa"
|
||||
}
|
||||
, { 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."
|
||||
, notation = "Sg∧Wg"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, a trans person of the male sex is a woman and a trans person with female sex is a man."
|
||||
, conclusionNotation = "Pa∧Qg"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue