feat: updated arguments

This commit is contained in:
Nick 2024-11-16 22:44:25 -06:00
parent 600f2ed3f4
commit 9841567483
10 changed files with 101 additions and 233 deletions

View file

@ -5,50 +5,41 @@ import Debate.Types exposing (..)
argumentImmortalityReductio : Argument
argumentImmortalityReductio =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Appeal to Nature Immortality Reductio"
, propositionTitle = "Senescence does not result in death"
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x~6y(Hx~5~3Rxy)),(Hs)%7C=(~3Rsd)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "H(x)"
, definiens = "humans undergo (x)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "R(x,y)"
, definiens = "(x) results in (y)"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "x"
, definiens = "normal physiological process"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "y"
, definiens = "negative health outcome"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "s"
, definiens = "senescence"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "d"
, definiens = "death"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { premise = "If humans undergo a normal physiological process, then the normal physiological process does not result in a negative health outcome."
, notation = "(xy(Hx¬Rxy))"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "Humans undergo senescence."
, notation = "(Hs)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, senescence does not result in death."
, conclusionNotation = "(¬Rsd)"
}
]
}