website/frontend/src/Debate/Arguments/Philosophy/Agnosticism.elm

45 lines
2.2 KiB
Elm
Raw Normal View History

2024-11-16 17:48:59 -06:00
module Debate.Arguments.Philosophy.Agnosticism exposing (..)
import Debate.Types exposing (..)
argumentAgnosticism : Argument
argumentAgnosticism =
2024-11-17 01:28:10 -06:00
{ argumentTitle = "Agnosticism Consistency Checker"
, propositionTitle = "An interlocutor (who cannot unpack what evidence would lead them to change their doxastic attitude on a proposition) should temporarily withhold the belief that the proposition at hand is true"
2024-11-16 17:48:59 -06:00
, propositionSummary = "Summary"
2024-11-18 15:19:43 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x~6y(~3Pxy~5~3Qxy)),(~6x~6y(~3Qxy~5Rxy)),(~3Por)|=(Ror)"
2024-11-16 17:48:59 -06:00
, definitionTable =
2024-11-18 15:19:43 -06:00
[ { definiendum = "P(x,y)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) can unpack what evidence would lead them to change their doxastic attitude on (y)"
2024-11-16 17:48:59 -06:00
}
2024-11-18 15:19:43 -06:00
, { definiendum = "Q(x,y)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) knows why they believe that (y) is true"
2024-11-16 17:48:59 -06:00
}
2024-11-18 15:19:43 -06:00
, { definiendum = "R(x,y)"
2024-11-17 01:28:10 -06:00
, definiens = "(x) should temporarily withhold the belief that (y) is true"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "o"
, definiens = "the interlocutor"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "r"
, definiens = "the proposition at hand"
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 01:28:10 -06:00
[ { premise = "If one cannot unpack what evidence would lead them to change their doxastic attitude on a proposition, then one does does not know why they believe that a proposition is true."
2024-11-18 15:19:43 -06:00
, notation = "(xy(¬Pxy¬Qxy))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "If one does not know why they believe that a proposition is true, then one should temporarily withhold the belief that a proposition is true."
2024-11-18 15:19:43 -06:00
, notation = "(xy(¬QxyRxy))"
2024-11-16 17:48:59 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "The interlocutor cannot unpack what evidence would lead them to change their doxastic attitude on the proposition at hand."
2024-11-18 15:19:43 -06:00
, notation = "(¬Por)"
2024-11-16 17:48:59 -06:00
}
]
2024-11-17 01:28:10 -06:00
, conclusion = "Therefore, the interlocutor should temporarily withhold the belief that the proposition at hand is true."
2024-11-18 15:19:43 -06:00
, conclusionNotation = "(Ror)"
2024-11-16 17:48:59 -06:00
}
]
}