more rumination on this threadâŚ
We have five senses (letâs stick to conventional wisdom):
- sight
- sound
- smell
- touch
- taste
Of these, the first three donât require physical contact, so we can think of them as remote sensing methods.
The three remote sensing methods, have different bandwidths, distance requirements, speed, etc., all functions of the underlying transportaton mechanism. I can see the moon (a few bajillion miles away) but I canât see around the corner. I canât hear what happens on the moon, but I can hear what happens in the next room even though I have no âline of sight.â Smell requires me to be even closer to the source than the other two, but in spite of its limitations, can reveal qualities about the source that sight and sound canât.
The two non-remote-sensing methods â letâs call them physical-sensing methods â require very close proximity. They are severely limited in their bandwidth but are distinctly different from their more powerful remote-sensing cousins to merit their own place in the pentad of senses.
Together, these five senses help us perceive in the sense of what my dictionary terms perception as being âthe ability to see, hear, or become aware of something through the senses.â
But what is going on here?
Ancient nuclear fusion reactions at ~15M°C ~150M kms away emit light and heat in the core of the sun. Light travels at ~300K kms/sec and hits objects on earth wherein some of it gets absorbed, some may pass through the objects, and the remainder is reflected. The reflected light hits our eyes and sets off further chemical and electrical reactions that send signals to our brain. In the beginning, perhaps the brain has no idea what to do with this. Perhaps some of it is genetically encoded, but most of it is probably gibberish. But the brain learns quickly. A baby is constantly sensing, touching and grasping at things, putting them in its mouth and tasting them, listening, smelling, and seeing. The eyes, above all, are constantly seeing and filtering, filing. Imagine something like so
const fs = require('fs')
const rs = fs.createReadStream('stuff I am sensing')
rs.on('readable', () => {
const seen = compareWithPreviouslySensed(rs.read())
if (seen) {
takeAppropriateAction(seen)
}
else {
tryOrQuit(seen)
}
})
rs.on('end', () => {
fileForFutureReference()
})
But as the old adage goes, you canât explain what is an elephant in terms of an elephant - âan elephant is like an elephantâ is not a very good explanation. We need references. These references can be well-defined or subtle or even extremely difficult to impossible to resolve. Compare the two paths below
if (feelsHot(seen)) {
letGoImmediately(seen)
}
// and
if (killAFewToSaveMore(seen)) {
killAFew()
}
Weâve gone from the realm of decision-making by science to decision-making by morality. Can philosophy resolve this tension? Donât know, but something tells me it has a better shot at it than science.