Editing
The Psychology of Persuasion
(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 Persuasion Score' (Predicting 'Agreement'):''' <syntaxhighlight lang="python"> def calculate_persuasion_potential(num_principles_used, trust_level): """ Shows how 'Stacking' principles increases influence. """ # Each principle adds a multiplier to the base probability (20%) compliance_prob = 20 * (1 + (num_principles_used * 0.3)) # Trust acts as the final gate final_prob = compliance_prob * (trust_level / 100) if final_prob > 100: final_prob = 100 return f"COMPLIANCE PROBABILITY: {round(final_prob, 1)}%. (Influence is a Force)." # Case: Using 'Scarcity' and 'Authority' but with low trust print(calculate_persuasion_potential(2, 40)) # Case: Using 'Liking', 'Social Proof', and 'Reciprocity' with high trust print(calculate_persuasion_potential(3, 90)) </syntaxhighlight> ; Persuasive Landmarks : '''The 'Foot-in-the-Door' Technique''' β Getting someone to "Agree" to a "Small Request" "Increases" the "Likelihood" they will "Agree" to a "Large One" (The 'Consistency' principle). : '''The 'Door-in-the-Face' Technique''' β Making an "Enormous Request" (that is 'Rejected') "Makes" the "Real Request" (The 'Concession') "Look Better" (The 'Reciprocity' of compromise). : '''Amazon 'Reviews' ''' β The "Global Infrastructure" of **Social Proof**: "Proving" that "What Strangers Say" "Determines" "What Billionaires Sell." : '''Booking.com 'Dark Patterns' ''' β (See Article 618). Using "Scarcity" ('Only 1 room left!') and "Social Proof" ('10 people are looking at this!') to "Force" "Immediate Booking." </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