Epistemic Mode Of A Proposition¶
Core Idea¶
The epistemic mode of a proposition is the pattern by which one and the same proposition can be held in different ways — as asserted fact, assumption, axiom, hypothesis, premise, belief, or conjecture — and the way it is held, orthogonal to what it says, gates which operations are licensed on it: you may rely on an assumption, must test a hypothesis, cannot refute an axiom from within its system, must discharge a premise.
How would you explain it like I'm…
How You Hold It
The Mode, Not The Message
Broad Use¶
- Logic and mathematics: an axiom is used freely but unrefutable from within, a conjecture is a target for proof, a premise under conditional proof is discharged — proof is a discipline of mode transitions.
- Empirical science: a hypothesis must be tested (never merely relied on), a law is held provisionally, a datum carries measurement error — confirmation and falsification are mode transitions.
- Law: a stipulated fact is uncontested, an alleged fact must be proved to a standard, an adjudicated fact is established — the trial transitions facts from alleged to adjudicated.
- Programming and formal methods: an
assertis checked, anassumeis relied on without checking, an invariant must hold every iteration — a verifier's soundness depends on never confusing the two. - Everyday reasoning: working assumptions, hunches, settled facts, and ground rules — good reasoning is keeping track of which is which.
Clarity¶
Separates two questions reasoners fuse — what does this claim say, and is it true? versus how is it being held, and therefore what may I do with it? — exposing a whole class of errors as mode errors (relying on an assumption as a fact, defending a hypothesis as a belief) rather than content errors.
Manages Complexity¶
Compresses "what is the standing of every claim here, and what may I do with each?" into a small typed vocabulary with a fixed table of licensed operations, and makes a conclusion's security computable by weakest-mode inheritance — a result is only as secure as the least-secure mode it rests on.
Abstract Reasoning¶
Licenses substrate-portable moves: read the mode before operating, detect the mode error, compute the conclusion's grade by weakest-mode inheritance, strengthen by transition (test, justify, prove, discharge) rather than re-derivation, and separate mode from credence — a 0.9-probable hypothesis must still be tested, not relied on.
Knowledge Transfer¶
- Mathematics: a theorem resting on an unproved conjecture is itself only conjectural.
- Science: an experimental conclusion is only as secure as the auxiliary assumption it rests on.
- Programming: a verified module is only as sound as the
assumes it was checked against, and "assume where you needed assert" is the analogue of relying on an assumption as a fact.
Example¶
In conditional proof, introducing \(P\) as a premise licenses "use \(P\) within the subproof" and "must discharge \(P\)"; discharging it converts the locally-derived \(Q\) into the categorical conditional \(P \to Q\) — a move only premise-mode permits, and using \(Q\) categorically without discharging \(P\) is a textbook mode error.
Relationships to Other Primes¶
Foundational — no parent edges in the catalog.
Children (2) — more specific cases that build on this
- Assumption is a kind of Epistemic Mode Of A Proposition — The file: assumption is ONE VALUE of the mode dimension (held-as-if-true provisionally). Dimension-to-value, like temperature-to-hot. Clean child; nearest neighbor (0.82).
- Axiom is a kind of Epistemic Mode Of A Proposition — The file: axiom is another single mode (foundationally-true-within-a-system, do-not-refute-from-within). One value of the mode dimension. Clean child.
Not to Be Confused With¶
- Epistemic Mode Of A Proposition is not an Assumption because an assumption is one value of the mode dimension, whereas this prime is the content-orthogonal dimension itself ranging over axiom, hypothesis, belief, and the rest.
- Epistemic Mode Of A Proposition is not Belief Formation because belief formation is the process of coming to hold a proposition true, whereas this prime is the static typed status a proposition carries and the operation set that status licenses.
- Epistemic Mode Of A Proposition is not a Confidence Level because a credence is a graded quantity on a single mode, whereas mode is a categorical type that changes the kind of operation licensed, not its degree.