Editing
Collective Action
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}} Collective Action is the "Study of the Group"—the investigation of how "Individuals" can "Work Together" to achieve "Goals" that "No One" could achieve alone. While "Action Theory" (see Articles 531–534) focuses on the "Single Person," **Collective Action** focuses on "Teams," "Nations," and "Species." From the "Prisoner's Dilemma" (the 'Temptation to Cheat') to the "Tragedy of the Commons" and the "Logic of Coordination," this field explores the "Geometry of Cooperation." It is the science of "Synergy," explaining why it is so "Hard" for humans to "Save the Climate" or "Pay for a Public Park," even when we all "Want" the same outcome. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Collective Action''' — Action taken together by a "Group of people" whose "Goal" is to "Enhance their condition" and achieve a "Common Objective." * '''The Tragedy of the Commons''' (Hardin) — The idea that "Everyone" will "Over-use" a "Shared Resource" (like a 'Pasture' or 'The Atmosphere') for "Individual Gain," eventually "Destroying it" for everyone. * '''The Prisoner’s Dilemma''' — A "Game Theory" scenario where "Two People" would "Both Benefit" from "Cooperating," but the "Incentive" to "Cheat" leads them to "Both Lose." * '''The Free-Rider Problem''' — When someone "Enjoys the Benefit" of a group action (e.g., 'Clean Air' or 'National Defense') but "Doesn't Pay the Cost" (e.g., 'Not paying taxes'). * '''Coordination Problem''' — When people "Want" to act together but "Don't know how" to "Sync" their actions (e.g., 'Which side of the road to drive on?'). * '''Collective Intentionality''' (Searle/Tuomela) — The "Special State" of a "Group Mind": when we think **"WE are doing X"** rather than 'I am doing X and you are doing X.' * '''Olson’s Logic''' (Mancur Olson) — The theory that "Large Groups" are "Harder to Organize" than "Small Groups" because of "Anonymity" and "Free-Riding." * '''Social Capital''' — The "Trust," "Networks," and "Shared Norms" that make "Collective Action" easier in a community. * '''Public Good''' — A "Benefit" that is "Non-excludable" (you can't stop people from using it) and "Non-rivalrous" (my use doesn't stop your use). * '''Institution''' — A "Set of Rules" or "Habits" created to "Solve" collective action problems (e.g., 'The Law,' 'A Contract,' 'A Social Club'). </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Collective action is understood through '''Dilemmas''' and '''Alignment'''. '''1. The "Rational" Selfishness (The Dilemma)''': Why is the "Whole" sometimes "Less" than the "Sum of Parts"? * Imagine a **Lake** with "100 Fishermen." * If they all "Take a little," the fish "Reproduce" and everyone is rich forever. * But **Individual Logic** says: "If I take an **Extra Fish**, I get **$10**. The damage to the lake is only **$0.10** per person." * Everyone "Thinks the Same." * The lake "Dies." * This is the "Tragedy." "Individual Rationality" leads to "Collective Disaster." '''2. The "Sync" (Coordination)''': Sometimes we "Agree" on the goal, but we "Fail" at the **How**. * Imagine "1,000 People" who want to "Overthrow a Dictator." * If they all "Go to the Square at 9:00 AM," they "Win." * If only "50 People" go, they "Go to Jail." * Every person is "Waiting" to see if "Everyone else" goes. * This is the **Common Knowledge** problem. "I will go only if I KNOW that YOU know that I KNOW we are all going." '''3. The "We-Mode" (Collective Intent)''': How do "Teams" work? * John Searle argued that "Collective Action" is a "New Type" of mind. * When "Two People" "Carry a Table," they aren't "Two individuals." * They are a **"We-Agent."** * They "Synchronize" their "Movements" and "Intentions." * This "Social Glue" is what allowed humans to "Build Pyramids," "Hunt Mammoths," and "Go to the Moon." '''The 'Montreal Protocol' (1987)'''': The most "Successful" collective action in history. The "Whole World" "Agreed" to "Stop using CFCs" to "Save the Ozone Layer." It proved that if the "Goal is Clear" and the "Cost is Shared," humans **Can** act as a "Global Species." </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Cooperation Threshold' (Predicting if a group will 'Succeed'):''' <syntaxhighlight lang="python"> def will_the_group_act(group_size, benefit_per_person, cost_per_person, trust_level_pct): """ Collective Action = (Benefit / Cost) * Trust. Large groups have 'Free-Rider' friction. """ friction = group_size * 0.01 # More people = More 'Invisible' free-riders potential = (benefit_per_person / cost_per_person) * (trust_level_pct / 100) final_score = potential - friction if final_score > 1.0: return f"RESULT: SUCCESS. The group has 'Alignment'. Force: {round(final_score, 2)}" else: return f"RESULT: FAILURE. Free-riding or Lack of Trust. Force: {round(final_score, 2)}" # Case: 10 people in a clean-up club (High Trust) print(will_the_group_act(10, 100, 20, 90)) # Case: 1 million people trying to save the climate (Low Trust) print(will_the_group_act(1000000, 1000, 100, 10)) </syntaxhighlight> ; Collective Landmarks : '''Elinor Ostrom’s 'Governing the Commons' ''' → She "Won the Nobel Prize" for "Proving" that "Local Communities" can "Manage the Commons" without 'Government' or 'Private Property' if they have "Good Rules" and "High Trust." : '''The 'Arab Spring' (2011)''' → How "Social Media" "Solved the Coordination Problem" by making "Protest Times" "Common Knowledge" instantly. : '''Wikipedia''' → The ultimate "Anti-Tragedy." A "Global Resource" that "Anyone can edit" but "Doesn't get destroyed" because the "Culture of Cooperation" is stronger than the "Vandals." : '''Climate Change''' (See Article 530) → The "Final Boss" of collective action. A "Global Commons" with "7 Billion Free-Riders." </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Prisoner's Dilemma Outcomes ! Agent A !! Agent B !! Result |- | Cooperate || Cooperate || **BEST FOR BOTH** (3 points each) |- | Cheat || Cooperate || **BEST FOR A** (5 points) / **WORST FOR B** (0) |- | Cooperate || Cheat || **WORST FOR A** (0) / **BEST FOR B** (5) |- | Cheat || Cheat || **BAD FOR BOTH** (1 point each) |- | Analogy || A 'Joint Venture' || A 'Betrayal' || A 'Mutual Destruction' |} '''The Concept of "Focal Points" (Schelling Points)''': Analyzing "Silent Coordination." If you are told to "Meet a Friend in New York" but "Not told a time or place," where do you go? Most people go to **"Grand Central Station at Noon."** These "Obvious Points" are the "Automatic Institutions" that allow humans to "Coordinate" without "Talking." </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating collective action: # '''Scale''': Why does "Trust" "Break down" when a group is "Larger than 150 people" (Dunbar's Number)? # '''Enforcement''': Is "Punishment" (e.g. 'Shaming' or 'Fines') "Necessary" for "Cooperation"? # '''Digital Commons''': Does the "Internet" make collective action "Easier" (Speed) or "Harder" (Anonymity/Misinformation)? # '''Leadership''': Do we "Need" a "Single Leader" to "Force Alignment," or can "Groups" be "Self-Organizing"? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''DAO (Decentralized Autonomous Organizations)''': Using "Smart Contracts" to "Automate Cooperation," where "Funds" are "Released" only when "Everyone has Done their part." # '''Global 'Trust' Networks''': A "Blockchain of Reputation" that "Shows" how "Cooperative" someone is, reducing the "Incentive to Cheat" in global trade. # '''AI 'Coordination' Oracles''': An AI that "Finds the Focal Point" for "Conflict Resolution," suggesting a "Middle Ground" that "Both Sides" can "Agree on" instantly. # '''Hyper-Local 'Resilience' Circles''': Small, high-trust "Groups" that "Share Everything" (Tools/Food/Cars), proving that the "Commons" can be "Saved" one neighborhood at a time. [[Category:Philosophy]] [[Category:Science]] [[Category:Economics]] [[Category:Sociology]] [[Category:Action Theory]] [[Category:Game Theory]] </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