Editing
Proof Theory
(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> == '''Modeling 'Inference Rules' (Automated Deduction):''' <syntaxhighlight lang="python"> def apply_modus_ponens(known_facts, if_then_rule): """ Modus Ponens: If A is true, and (A -> B) is true, then B is true. """ a, b = if_then_rule # Rule is [A, B] representing A -> B if a in known_facts: print(f"Step: Since {a} is known, we derive {b}.") return b return None # Axioms: 'It is raining', 'If raining -> Wet' facts = {"Raining"} rule = ["Raining", "Wet"] new_fact = apply_modus_ponens(facts, rule) # This simple 'Replacement' logic is how computer # solvers prove complex math. </syntaxhighlight> ; Proof Theory Concepts : '''Transfinite Induction''' β A method of proof that allows us to reason about infinite sets larger than the counting numbers. : '''Ordinal Analysis''' β A way to measure the "Strength" of a mathematical system by assigning it a specific infinite number. : '''Proof Compression''' β The study of how to make a proof as short as possible (important for cryptography and blockchain). : '''Linear Logic''' β A type of logic where "Assumptions" are treated as resources that are "used up" when they are used in a proof. </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