Editing
Collective Action
(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 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;">
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