Editing
Turing and the Birth of Computing
(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 'The Turing Machine' (Visualizing how a 'Tape' and 'Head' process logic):''' <syntaxhighlight lang="python"> def turing_machine_simulation(tape_string, rules): """ Shows how 'Symbols' and 'States' create 'Logic'. """ tape = list(tape_string) head_pos = 0 state = "START" # Process for 10 steps max for _ in range(10): symbol = tape[head_pos] # Rule: (CurrentState, Symbol) -> (NewSymbol, MoveDirection, NextState) rule = rules.get((state, symbol)) if not rule: break # No rule, HALT new_symbol, move, next_state = rule tape[head_pos] = new_symbol head_pos += 1 if move == "RIGHT" else -1 state = next_state return "".join(tape) # Logic: Turn '111' into 'AAA' rules = { ("START", "1"): ("A", "RIGHT", "START") } print(f"Final Tape: {turing_machine_simulation('111', rules)}") </syntaxhighlight> ; Computing Landmarks : '''The 'On Computable Numbers' Paper (1936)''' β The "Birth Certificate" of computer science, where Turing first described the Turing Machine. : '''The Bombe (1940)''' β The machine that "Cracked the Code" and shortened WWII by at least two years, saving an estimated 14 million lives. : '''The 'Computing Machinery and Intelligence' Paper (1950)''' β The paper that introduced the "Turing Test" and asked the question: "Can machines think?". : '''The Royal Pardon (2013)''' β Queen Elizabeth II officially pardoned Alan Turing for his "Crime" of being gay, 59 years after his death, acknowledging his "Greatness" as a human. </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