Editing
Cybernetics
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!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Cybernetics is the transdisciplinary study of the structure of regulatory systems. It is the science of '''Control and Communication''' in animals, machines, and organizations. The word comes from the Greek ''kybernetes'', meaning "Steersman" or "Governor." Cybernetics focuses on how systems use '''Information''' and '''Feedback''' to maintain stability or reach a goal. Whether it's a thermostat keeping a room warm, a pilot steering a plane, or the human brain controlling a hand, cybernetics provides the mathematical rules for "Goal-Directed Behavior." It was the intellectual spark that led to the creation of the first computers and modern AI. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Cybernetics''' β The science of communication and automatic control systems in both machines and living things. * '''Feedback''' β The return of information about a system's output to its input, used to control the system. * '''Negative Feedback''' β Information that tells the system to "Reverse" its current direction to stay in balance (e.g., sweating to cool down). * '''Positive Feedback''' β Information that tells the system to "Amplify" its current direction (e.g., a stampede). * '''Circular Causality''' β The idea that A causes B, and B causes A (The Feedback Loop). * '''Entropy''' β The tendency of a system to become disordered; cybernetics uses information to fight entropy. * '''Information Theory''' β The mathematical study of the coding of information (Developed by Claude Shannon). * '''Homeostasis''' β The process by which a system maintains a stable internal state (Developed by Walter Cannon). * '''Black Box''' β A system viewed solely in terms of its input and output, without knowing its internal workings. * '''Automation''' β The use of control systems to operate equipment with minimal human intervention. * '''Second-Order Cybernetics''' β The study of how the "Observer" is also part of the system being studied. * '''Norbert Wiener''' β The "Father of Cybernetics" who defined the field in his 1948 book. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Cybernetics is understood through '''Purpose''' and '''Feedback'''. '''1. The Goal-Seeking Machine''': A rock rolling down a hill is just "falling." A cruise missile flying toward a target is "Cybernetic." * It has a '''Goal'''. * It has a '''Sensor''' (to see where it is). * It has an '''Effector''' (to change its direction). * It has '''Feedback''' (to compare its current path to its goal). '''2. The First-Order vs. Second-Order''': * '''First-Order (Mechanical)''': A thermostat. It doesn't know "why" it wants 70 degrees, it just follows a rule. * '''Second-Order (Biological/Social)''': A human being. We can change our own goals. We "reflect" on the system. If we are studying a family, we (the therapist) become part of that family's feedback loop. '''3. Information as 'Order'''': Cybernetics treats information as the opposite of '''Entropy'''. * To keep a garden from becoming a mess, you need to "Input" information (weeding, pruning). * In a company, "Information" is what coordinates the different workers to act as a single unit instead of a chaotic mob. '''Ashby's Law (The Law of Requisite Variety)''': This is the most famous law of cybernetics: "Only variety can absorb variety." This means that to control a complex system (like a national economy), your "Controller" (the government) must be at least as complex as the system it is trying to control. If the controller is too simple, the system will become chaotic. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Feedback Control' (A Cruise Controller):''' <syntaxhighlight lang="python"> def cruise_control(target_speed, current_speed): """ Shows how Negative Feedback maintains a goal. """ # The 'Error' is the difference between Goal and Reality error = target_speed - current_speed # If error is positive, we need to speed up if error > 0: gas_pedal = error * 0.5 # Apply gas proportional to error return f"APPLYING GAS: Error is {error}. Gas at {gas_pedal}" elif error < 0: return f"BRAKING: Speed is {current_speed}. Target is {target_speed}" else: return "CRUISING: Goal achieved." # Car going 50, wants 65 print(cruise_control(65, 50)) # This 'Error-Correction' logic is the foundation # of all robotics and automation. </syntaxhighlight> ; Cybernetic Landmarks : '''The Governor (Steam Engine)''' β The first industrial cybernetic device; two spinning weights that automatically closed the steam valve if the engine went too fast. : '''Macy Conferences (1941-1960)''' β The legendary meetings where psychologists, mathematicians, and biologists first created the field of cybernetics. : '''Grey Walter's Tortoises''' β The first autonomous robots (1940s) that could find their way to a light source to "recharge" their batteries. : '''Management Cybernetics (Viable System Model)''' β Stafford Beer's attempt to use cybernetic rules to run the entire national economy of Chile in the 1970s (Project Cybersyn). </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Cybernetics vs. Traditional Engineering ! Feature !! Traditional Engineering !! Cybernetics |- | Focus || The 'Parts' and 'Materials' || The 'Information' and 'Control' |- | Logic || Linear (A causes B) || Circular (A <-> B) |- | View of System || A tool for the user || A self-regulating organism |- | Goal || To build a 'Machine' || To build a 'Process' |} '''The Concept of "Autopoiesis"''': Developed by Humberto Maturana, this is the idea of a "Self-Creating" system. A living cell is autopoietic because it uses its own energy to build its own walls. It is a system that creates itself. Analyzing the "Autonomy" of a system is the core of modern biological cybernetics. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating a control system: # '''Oscillation''': Does the system "Over-correct" and start bouncing back and forth wildly (Instability)? # '''Latency''': How long does it take for the feedback to reach the controller (if it's too slow, the system crashes)? # '''Bandwidth''': Can the system process enough information to handle a sudden change? # '''Goal Alignment''': Is the system working toward the ''real'' goal or just a "proxy" (e.g., an AI that tries to maximize 'clicks' instead of 'human happiness')? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''Human-Machine Teaming''': Building cybernetic links where a human's "Will" is seamlessly integrated with a machine's "Power" (Exoskeletons). # '''Global Brain''': The theoretical idea that the Internet is becoming a planetary cybernetic system that regulates human civilization. # '''Biological Computers''': Using living cells to perform "Control" logic for medicine inside the human body. # '''AI Governance''': Using cybernetic principles to ensure that "Super-intelligent AI" stays aligned with human values through a complex feedback loop. [[Category:Systems Science]] [[Category:Computer Science]] [[Category:Robotics]] </div>
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)
Template used on this page:
Template:BloomIntro
(
edit
)
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