-
Notifications
You must be signed in to change notification settings - Fork 1
/
trust-your-intuition.html
155 lines (122 loc) · 3.56 KB
/
trust-your-intuition.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Trust your intuition</title>
<meta name="description" content="The bias fallacy">
<style>
:root {
--bg: oklch(99.24% 0 0);
--text: oklch(8% 0 0);
--soft: oklch(60% 0 0);
--baby-blue: #a2cffe;
--baby-purple: #ca9bf7;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: oklch(31.14% 0.021 285.75);
--text: oklch(90% 0.008 286.75);
--soft: oklch(75.94% 0 0);
}
}
body {
background-color: var(--bg);
color: var(--text);
margin: 4em;
margin-block-end: 50svh;
line-height: 1.5;
font-family: system-ui, sans-serif;
max-width: 34em;
}
@media (width < 30em) {
body {
margin: 2em;
}
}
small {
color: var(--soft);
}
p {
margin-block: 2.25em;
}
header {
font-family: serif;
}
header h1 {
margin-block-end: 0;
}
header i {
color: var(--soft);
}
blockquote {
font-family: serif;
font-style: italic;
}
hr {
border: 0;
border-block-start: 1px solid var(--soft);
opacity: 0.1;
margin-block: 3.75em;
}
</style>
</head>
<body>
<header>
<h1>Trust your intuition</h1>
<i>The bias fallacy</i>
</header>
<p>People will tell you we have all sorts of biases. So what!</p>
<blockquote>
Do I contradict myself?<br>
Very well then I contradict myself,<br>
(I am large, I contain multitudes.)<br>
<br>
<small> ⸻ Walt Whitman, Song of Myself</small>
</blockquote>
<p>
Our intuition is our connection to our unconscious self. Our unconscious self
deals with and processes much, much, more information than we'll ever be aware
of. For example, blindsight is the phenomenon when we are able to, say, avoid
objects that we did not even see.
</p>
<p>
Yes, it is good to be aware of our biases, but it’s not essential, and I'll
argue, even detrimental to focus too much on them. Being aware of them doesn't
even help too much. For example, being aware of the effectiveness of advertising
does not neuter its effectiveness. Similarly, you <i>will</i> buy the $9.99 over
the $10.00 even if you're a marketeer who knows all the tricks.
</p>
<p>
We can be a bit more aware, and it helps being completely tricked, but to be
fully aware of and on the safeguard against these biases all the time would be
to deny our own full selves existence - it would entail identifying ourselves
only with our rational discursive thought. But we are much more than that.
Denying the validity of our own intuition just to safeguard against some silly
biases is like sinking a ship to drown a mouse.
</p>
<p>
If I rely on my intuition, I will be wrong. But that's how I will learn, and
that's how I'll improve my intuition.
</p>
<p>
I trust my intuition more than I trust my rational reasoning, for I know: Give
me any point of view, any choice, and I can justify it. What I've found is that
being accurately rational doesn't improve my conclusions, it just increases the
sophistication of the arguments I come up with to fool myself.
</p>
<p>
Reasoning, rationality, deliberate thought - these are all excellent,
indispensable, tools. But they don’t have to become my identity.
</p>
<hr>
<p>
I think Kahneman's book, <cite>Thinking Fast and Slow</cite>, misses the forest
for the trees. It is in isolation a good, insightful, book. But because of the
cult of "cataloging biases" that has sprung up around it, and its uncritical
recommendation by people that we look up to, I consider it a harmful book
because it normalises throwing away the outcome of eons of evolution in the face
of some parlour tricks.
</p>
</body>
</html>