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

49 lines
1.6 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.ImmortalityReductio exposing (..)
2024-11-16 17:28:46 -06:00
import Debate.Types exposing (..)
argumentImmortalityReductio : Argument
argumentImmortalityReductio =
2024-11-16 22:44:25 -06:00
{ argumentTitle = "Appeal to Nature Immortality Reductio"
2024-11-18 14:35:20 -06:00
, propositionTitle = "Senescence does not result in death."
, propositionReductio = ""
2024-11-16 17:28:46 -06:00
, propositionSummary = "Summary"
2024-11-16 22:44:25 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y(Hx~5~3Rxy)),(Hs)%7C=(~3Rsd)"
2024-11-22 15:10:32 -06:00
2024-11-25 18:50:12 -06:00
, argumentCertainty = 1
2024-11-16 17:28:46 -06:00
, definitionTable =
2024-11-18 18:01:32 -06:00
[ { definiendum = "P(x)"
2024-11-16 22:44:25 -06:00
, definiens = "humans undergo (x)"
2024-11-16 17:28:46 -06:00
}
2024-11-18 18:01:32 -06:00
, { definiendum = "Q(x,y)"
2024-11-16 22:44:25 -06:00
, definiens = "(x) results in (y)"
2024-11-16 17:28:46 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "x"
, definiens = "normal physiological process"
2024-11-16 17:28:46 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "y"
, definiens = "negative health outcome"
2024-11-16 17:28:46 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "s"
, definiens = "senescence"
2024-11-16 17:28:46 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "d"
, definiens = "death"
2024-11-16 17:28:46 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-16 22:44:25 -06:00
[ { premise = "If humans undergo a normal physiological process, then the normal physiological process does not result in a negative health outcome."
2024-11-22 15:10:32 -06:00
, notation = "xy(Px¬Qxy)"
2024-11-16 17:28:46 -06:00
}
2024-11-16 22:44:25 -06:00
, { premise = "Humans undergo senescence."
2024-11-22 15:10:32 -06:00
, notation = "Ps"
2024-11-16 17:28:46 -06:00
}
]
2024-11-16 22:44:25 -06:00
, conclusion = "Therefore, senescence does not result in death."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "¬Qsd"
2024-11-16 17:28:46 -06:00
}
]
}