Editing
Epistemology
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Working with epistemological frameworks β practical analysis:''' <syntaxhighlight lang="python"> # Epistemology is primarily a philosophical discipline worked through argumentation, # but we can illustrate its concepts through formal modeling. # Modeling a belief network (Bayesian epistemology) # Bayesian epistemology uses probability to formalize degrees of belief (credences) # and rational updating via Bayes' theorem from fractions import Fraction def bayes_update(prior: float, likelihood_given_h: float, likelihood_given_not_h: float) -> float: """ Update belief in hypothesis H given new evidence E. Prior P(H), P(E|H), P(E|Β¬H) β Posterior P(H|E) This formalizes the epistemological claim: rational belief revision requires updating proportionally to how much evidence was expected. """ p_e = likelihood_given_h * prior + likelihood_given_not_h * (1 - prior) posterior = (likelihood_given_h * prior) / p_e return posterior # Example: I believe it is raining (P=0.3 prior). # I look outside and see wet pavement (E). # P(wet pavement | raining) = 0.9 # P(wet pavement | not raining) = 0.2 posterior = bayes_update(0.3, 0.9, 0.2) print(f"Posterior probability of rain given wet pavement: {posterior:.2f}") # β 0.66 β evidence significantly updates belief # Modeling Gettier-type cases class Belief: def __init__(self, content, is_true, is_justified, causal_connection=True): self.content = content self.is_true = is_true self.is_justified = is_justified self.causal_connection = causal_connection # Externalist add-on @property def is_jtb_knowledge(self): """Classical justified true belief β Gettier shows this is insufficient.""" return self.is_true and self.is_justified @property def is_causal_knowledge(self): """Causal theory: belief must be causally produced by the fact that makes it true.""" return self.is_true and self.is_justified and self.causal_connection def __repr__(self): return (f"Belief: '{self.content}' | True: {self.is_true} | " f"Justified: {self.is_justified} | JTB: {self.is_jtb_knowledge} | " f"Causal: {self.is_causal_knowledge}") # Classic Gettier case gettier_case = Belief( content="There is a sheep in the field", is_true=True, # There IS a hidden sheep is_justified=True, # You saw what looked like a sheep (actually a dog) causal_connection=False # Your belief was caused by the dog, not the actual sheep ) print(gettier_case) # JTB: True (fails as knowledge!) | Causal: False (correctly excluded) </syntaxhighlight> ; Key epistemological positions and theorists : '''Rationalism''' β Descartes (''Meditations''), Leibniz, Spinoza, Plato : '''Empiricism''' β Locke (''Essay Concerning Human Understanding''), Hume (''Enquiry''), Berkeley : '''Kantian synthesis''' β Kant (''Critique of Pure Reason'') β a priori structures of experience : '''Reliabilism''' β Alvin Goldman β knowledge requires reliable belief-forming processes : '''Virtue epistemology''' β Ernest Sosa, Linda Zagzebski β knowledge through intellectual virtues : '''Social epistemology''' β Miranda Fricker (''Epistemic Injustice''), Alvin Goldman </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information