mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25: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
47
frontend/src/Debate/Arguments/ImmortalityReductio.elm
Executable file
47
frontend/src/Debate/Arguments/ImmortalityReductio.elm
Executable file
|
@ -0,0 +1,47 @@
|
|||
module Debate.Arguments.ImmortalityReductio exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentImmortalityReductio : Argument
|
||||
argumentImmortalityReductio =
|
||||
{ argumentTitle = "Appeal to Nature Immortality Reductio"
|
||||
, propositionTitle = "Senescence does not result in death."
|
||||
, propositionReductio = ""
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x~6y(Hx~5~3Rxy)),(Hs)%7C=(~3Rsd)"
|
||||
|
||||
, definitionTable =
|
||||
[ { definiendum = "P(x)"
|
||||
, definiens = "humans undergo (x)"
|
||||
}
|
||||
, { definiendum = "Q(x,y)"
|
||||
, definiens = "(x) results in (y)"
|
||||
}
|
||||
, { definiendum = "x"
|
||||
, definiens = "normal physiological process"
|
||||
}
|
||||
, { definiendum = "y"
|
||||
, definiens = "negative health outcome"
|
||||
}
|
||||
, { definiendum = "s"
|
||||
, definiens = "senescence"
|
||||
}
|
||||
, { definiendum = "d"
|
||||
, definiens = "death"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "If humans undergo a normal physiological process, then the normal physiological process does not result in a negative health outcome."
|
||||
, notation = "∀x∀y(Px→¬Qxy)"
|
||||
}
|
||||
, { premise = "Humans undergo senescence."
|
||||
, notation = "Ps"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, senescence does not result in death."
|
||||
, conclusionNotation = "¬Qsd"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue