Skip to main content

Memetic Inoculation

I came across the idea of memetic inoculation in the article Every Complex Idea Has a Million Stupid Cousins. The basic gist of it (summarizing it is ironic when you understand the article) is that a complex idea is very difficult to communicate. So, those trying to communicate it, tend to simplify it. The simplified idea can seem stupid at the first glance. The listener attributes the apparent stupidity of the abstraction to the idea itself. The more "stupid" abstractions the listener comes across, the more the belief the idea itself is stupid take root in the mind of the listener. It can easily reach a point where at the mere mention of the idea, the listener dismisses it without trying to understand it.

This is the concept of memetic inoculation. Multiple encounters with stupid abstractions cause the complex idea to be rejected outright. Mark P Xu Neyer, the author of the article puts the concept in these steps (mostly taken from the article, with editorializing for me to better recall later - ironic, I know):

  • Complicated ideas take more energy to transmit than simple ones
  • For every complex idea, there are a large number of stupid ones
  • Accurate beliefs help a person navigate reality more effectively
  • Most people can't articulate an idea even if they understand it. So, they mostly reproduce and transmit a simpler variant of the original idea
  • For some people, the simple version of the idea works well enough (mental shortcuts).
  • Thus, all remotely subtle of complicated beliefs should be expected to be outcompeted in the marketplace for ideas by their own stupid cousins
  • Intelligent (jaded?) people tend to rely on the simple heuristic (mental shortcut) "I've seen this idea before" in order to avoid wasting their time with cranks
  • People get defensive when an idea they identify with is dismissed out of hand, so in response to having their heuristic dismissed as nonsense, many people will defend the stupid copies of subtle ideas and many will even reject the more complex form

My take-away from this

If one wants to guard against the effects of this, they would have to consider each idea or the simplified version of the idea from scratch, throwing away the heuristic one has developed for it. This is extremely hard in itself and might be very mentally taxing on the listener. This also doesn't consider the part the transmitter of the idea plays. The agenda of the person transmitting the idea also matters and can be split roughly into three types:

  1. Honestly trying to get an idea across with either no understanding of their personal biases, or trying their best to suppress it
  2. Trying to get an idea across, but have an agenda that is sometimes more important than purely transmitting the idea
  3. Not interested in transmitting any idea, but simply to waste your time. We call them trolls, and it's best not to feed them (another heuristic)

All this makes giving each idea it's due, expensive - mentally and in time. Simply telling people to consider each idea on it's own merits is a great sentiment, but can't be managed practically, given the constraints. Specialization and trust in others to be good actors seems to be the only way out of this.

Specialization is easy enough to accomplish and is what most people end up doing. This, however, leaves us vulnerable to bad actors, because understanding whom to trust involves understanding what they are communicating to some extent. Talk about back to square one.

This might explain why with increased information, we also see the rise of influencers. The breadth of information causes people to depend on someone to curate the information for them. This curation is done by those whom people trust, thus influencers.


Weird conclusion

I didn't think I'd form this hypothesis.
I'd always thought that increased information would result in people being more informed; that we would make up our own minds about everything, by checking/researching. (Null hypothesis)
Instead, increased information seems to result in Influencers. (Hypothesis 1)

This should be studied (probably already has), but I do not know how to go about it. Time to find some trusted sources to understand how to do this. I realize the irony in the statements. I don't have a better way to approach it.

Comments

Popular posts from this blog

Newspapers over newsfeeds

T hree years ago, I kept running into a frustrating problem - one of those issues that people create start-ups over. The local newspaper delivery system was shady. They wouldn't give me a receipt for the monthly payment, all records were kept in a book they maintained, and cash-only payment frequently meant that they'd pocket the change, even though they pretended to write down details in their book; the details curiously missing the next time they showed up for cash. Were I more entrepreneurial, I might have created a start-up that let people buy and pay for newspapers subscriptions online and provide a professional service. I'd have failed, given my utter lack of people-skills and logistics being a nightmare to maintain. So, I did what my aversion to conflict prodded me towards. I cancelled my newspaper subscription; the first time I truly had been without a newspaper since childhood. I t was great for a while. I was able to focus more on news that I wanted to read, rathe...

Testing the Monty Hall problem (n=1000)

What is the Monty Hall problem? The Monty Hall Problem is a famous statistic brain teaser, which has a counter-intuitive solution Wiki:  https://en.wikipedia.org/wiki/Monty_Hall_problem The brain teaser is as follows: The player is in a game show and has to choose from one of three doors Two of these doors lead to a goat each Only one leads to a car The player chooses one door at random, since they have no way of knowing the correct door The host then looks behind the other two doors and reveals one of them showing a goat The player now has the opportunity to keep his original guess, or switch to the remaining door The statistics answer is: switching to the remaining door gives you a 2/3 chance of winning. It's counter-intuitive, and that's why, we need to prove it. Ok. let's simulate this by replicating the steps of the original problem In [1]: import random Check if the door picked at random is 1/3 probabil...