Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
steve-wang-attention-inattention [2023/06/01 18:03] steve.wangsteve-wang-attention-inattention [2024/06/23 22:12] (current) steve.wang
Line 1: Line 1:
 ====== Attention and Inattention Blindness ====== ====== Attention and Inattention Blindness ======
-By[[steve-wang|Steve Wang]]+By [[steve-wang|Steve Wang]]
  
  
 Attention blindness means people fail to notice something else when focusing on one thing. To understand this we can look at the situation where you are trying to convince someone of something. To convince some to agree, one must make them see that the proposal is beneficial for them in some way. So, if we can find out what a person deems as most beneficial for them, we can mention it in our conversation first, before we mention the things that they might not like or not as beneficial to them. If we do this, hopefully, they will be too focused on the good things to pay attention to the bad and just agree with what you are saying. If we do not do this and we mention the things that are not beneficial to them first, they might be blind to all the things that might benefit them and they might turn down the offer. To put things into perspective, imagine that you want to convince someone to go on vacation. If you start with, let’s go on vacation, even though the prices are high and the conditions are harsh, we will be able to enjoy the beautiful mountains and the gorgeous sunset. It might go better if you start with. Hey let’s go on vacation, we will be able to enjoy the beautiful mountains and the gorgeous sunset, even though the prices are high and the conditions are harsh, it will be worth it. Attention blindness means people fail to notice something else when focusing on one thing. To understand this we can look at the situation where you are trying to convince someone of something. To convince some to agree, one must make them see that the proposal is beneficial for them in some way. So, if we can find out what a person deems as most beneficial for them, we can mention it in our conversation first, before we mention the things that they might not like or not as beneficial to them. If we do this, hopefully, they will be too focused on the good things to pay attention to the bad and just agree with what you are saying. If we do not do this and we mention the things that are not beneficial to them first, they might be blind to all the things that might benefit them and they might turn down the offer. To put things into perspective, imagine that you want to convince someone to go on vacation. If you start with, let’s go on vacation, even though the prices are high and the conditions are harsh, we will be able to enjoy the beautiful mountains and the gorgeous sunset. It might go better if you start with. Hey let’s go on vacation, we will be able to enjoy the beautiful mountains and the gorgeous sunset, even though the prices are high and the conditions are harsh, it will be worth it.
  
 +
 +<html>
 +<style>
 +html {
 +    display: none; /* Makes the image a block element */
 +    opacity: 0; /* Initially hides the image */
 +    transition: opacity 1s ease-in-out; /* Smooth transition effect */
 +}
 +</style>
 +<script>
 +document.addEventListener("DOMContentLoaded", function() {
 +document.documentElement.style.display = 'block'
 +setTimeout(() => {
 +document.documentElement.style.opacity = '1'
 +}, 100)
 +})
 +
 +window.addEventListener('beforeunload', function (event) {
 +document.documentElement.style.opacity = '0'
 +})
 +</script>
 +</html>
  • steve-wang-attention-inattention.1685667783.txt.gz
  • Last modified: 2023/06/01 18:03
  • by steve.wang