Editing
Collective Intelligence
(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 Prediction Market' (Aggregating 'Probability'):''' <syntaxhighlight lang="python"> def update_market_probability(current_price, buy_order_volume, sell_order_volume): """ Shows how 'Buying and Selling' creates 'Truth'. """ # Buying increases the price (The 'Probability' of the event) net_demand = buy_order_volume - sell_order_volume new_price = current_price + (net_demand * 0.01) if new_price > 1.0: new_price = 1.0 if new_price < 0.0: new_price = 0.0 return f"MARKET PROBABILITY: {round(new_price * 100, 1)}%. (The Crowd has spoken)." # Case: A market starting at 50% for an election result print(update_market_probability(0.5, 1000, 200)) </syntaxhighlight> ; Collective Landmarks : '''The 'Linus's Law' ''' β "Given enough eyeballs, all bugs are shallow": the "Philosophy" of **Open Source** security. : ''' 'Foldit' ''' β (See Article 605). The "Proof" that "Game-based Crowdsourcing" can "Solve" "Protein Folding" faster than "Experts." : '''Prediction Markets in 'Google/Intel' ''' β Companies using "Internal Betting" to "Forecast" "Product Launch Dates" more accurately than "Managers." : '''The 'Arab Spring' ''' β (See Article 542). "Social Media" "Coordinating" "Collective Action" "Against" "Dictators," "Demonstrating" "Networked Power." </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