Hacker News new | ask | show | jobs
by Owloid 3404 days ago
I think that a view not represented enough about our "rational brain" and our "intuitive brain" is that rational thinking can only rarely lead to useful information in a reasonable time. Determining causation using the scientific method is more robust, but is a massive effort that usually can't be carried out by individuals. Perhaps we would benefit from being able to control the extent of our intuition on the decisions we make, but there's a reason why we specialize and only deeply think about specific areas.
1 comments

The "dual-track hypothesis," the belief in "rational" and "emotional/intuitive" modes of thought, is really based on pretty flimsy evidence (e.g., [1] discusses interpretation of fMRI in the context of moral psychology). It seems more like the sort of thing that people really want to believe, and it's something people have wanted to believe far longer than fMRI or EEG have been around.

And the trouble with the scientific method is that it's wedded to ceteris paribus, the "all things equal" assumption. (In philosophy, this is called the manipulationist theory of causality, e.g., [2].) This is the core reason that complex systems present such a problem for scientists---it is, if you will, the real reason economics is such a trainwreck. People want explanations to look like, "A causes B if, when you manipulate A, all other things equal, that drives changes in B." But if a system is fully contingent on itself, then that'll never work out.

That's the value of intuition: it's not that it's fast or feasible or individual, it's that the scientific method runs out of gas in highly-contingent situations. To put it in a computer science perspective, the clasically undecidable problems (the halting problem and the decision problem) will always stand in the way of robust automatic code generation, and yet we write code anyway. We can do that precisely because the formal methods we go on about don't describe how we actually are, and that's always going to make people both smarter and stupider than we seem.

[1] http://colinklein.org/papers/DualTrackWeb.pdf [2] https://plato.stanford.edu/entries/causation-mani/

You're the one conflating intuition and emotion.

Intuition is closer to recognition. Recognizing a person from the way they walk, recognizing a dangerous situation, recognizing a combination of clues whether to trust a person, recognizing a pattern to predict a future outcome.

Intuition is very powerful and obviously prone to bias[1], as predicted by the No Free Lunch theorem[2].

Kahneman describes rational thought as a crosscheck to intuition, and that seems highly reasonable. Emotion is a whole different category. You don't need an fMRI to experience these distinctions yourself. In fact I'm baffled if you don't.

[1] https://en.wikipedia.org/wiki/List_of_cognitive_biases

[2] https://en.wikipedia.org/wiki/No_free_lunch_theorem "if an algorithm performs well on a certain class of problems then it necessarily pays for that with degraded performance on the set of all remaining problems"

I'm ultimately conflating emotion and intuition because I don't think they're very different, and by extension, I don't think emotion and intuition are very different from "rationality." Whether to trust someone is a feeling you get from being around them; danger is one's sense of a situation. Likewise, the way we feel about things is dependent on what we know about them, which is to say, our past experiences with those things or things similar to them (and, for that matter, "similar to" is the same sort of sense about things).

This is probably better seen from a couple other angles. Probably the most interesting thing, since you bring up cognitive biases, is that confirmation bias can be the only way we approach information. If not for confirmation bias, we'd be incapable of talking about "signal" and "noise," or else we'd wonder, how do you tell the difference?

Or to go deeper, it's known at this point that formal systems aren't decidable in their application (i.e., the entscheidungsproblem), so it's just not possible that rationality is like a formal system. But then, what is it? My view is that it's just the same thing as intuition (the sense we have of things) but more of it, which goes under the charitable name "abductive reasoning."

I wonder if part of the problem is that computation is often excessively focused on precision, when what you often need is a good approximation. Precision is very valuable in the right context, of course, but in the wrong context it's like bringing a scalpel to a sword fight.
Computing must be focused on precision, because you need exact addressing to have data structures and branches. You could maybe let data structures slide, but if you don't have branching (or something equivalent) then you don't have "universal" computation.
I don't agree at all. Of course you want to be able to do things precisely but if that's the only way you can do things then your system is too fragile.

There are times when it's very important to distinguish between 0.999998 and 1, and times when it's very important to treat the difference as negligible.

Have you ever played with an analog computer? I think you'll find it interesting. Modular synthesizers are essentially lego for analog computation, and you can find completely analog sequencers and so on. It takes some time to get the hang of this, but learning to build self-sustaining chaotic attractors is both enjoyable and interesting. The demo version of teh software here will get you started if you are not near a place with a decent music store: http://www.nordkeyboards.com/downloads/legacy/nord-modular-g...

Your brain is not a perfectly precise or reliable organ, but it's taken you this far.

This is days old, but I figured I'd mention, what I mean isn't the difference between 0.99999998 and 1, but you need exact addressing. That is, a program always has to branch to the right place, i.e., pointers must be exact; this is what gives digital computers the appearance of acting like finite state automata. The theoretical formulation of so-called universal computation is based on discrete state (be it state machines in Turing's version or "pure" symbols in Church's), and the only way to simulate that with analog computers (i.e., the electronics in the actual device you're using right now) is with high precision.

Analog computation is definitely interesting, but at least in terms of theory and standard practice, it's worlds apart from digital computation. Put another way, though this may be even more obscure, the problem with analog computers is that they're application-specific. "Digital" computers are still analog computers under the hood, and their application is simulating set theory (so the "universality" of computation is contingent on set theory being universal). My point here, really, is that, if you make that not the case, then you're just saying, what if we didn't use digital computers at all? An interesting enough question, but then you really do have to study analog computers, and whatever you come up with will be totally unrecognizable to current computer science.

In any case, my original point is that brains can't be formal systems, as a comment on the supposed "rational brain." Formal systems don't work out in practice for a lot of reasons, and many of them are exposed by the actual experience of computer science. Returning to analog computation would just mean agreeing with me.

> Your brain is not a perfectly precise or reliable organ, but it's taken you this far.

...and it took only four billion years of evolution. (Or maybe 100 million years of mammalian evolution, or 20 of primate evolution, or 200 thousand years of human evolution. Whatever you pick, it's slow.)