This reminds me of Waiting For Godot by Samuel Beckett, something like, "I can't go on like this."
ESTRAGON: I can't go on like this.
VLADIMIR: That's what you think.
Schopenhauer was among the first to contend that at its core, the universe is not a rational place.
I agree with Kant's view that human rationality lacks the power to answer questions, since our knowledge is limited by our specific and narrowly-circumscribed capacities for organizing our field of sensation. It is a perennial philosophical reflection that if one looks deeply enough into oneself, one will discover not only one's own essence, but also the essence of the universe.
Edmund Husserl is well known for his critique of the “mathematizing tendencies” of modern science, and is particularly emphatic that mathematics and phenomenology are distinct and in some sense incompatible. In fact, what first got me interested in Husserl was the title of his work, The Crisis of the European Sciences and Transcendental Phenomenology.
Husserl himself uses mathematical methods in phenomenology. The Husserlian doctrines which seem to speak against application of mathematics to phenomenology do not in fact do so. I'm not attacking Husserl. I find his mind fascinating. It's just that we are all bound to make baboons out of ourselves when we go monkeying around with rationalizing an irrational universe, or, thinking we have chained the chaos of thought into logical order simply because we find patterns ...
As Husserl sees it, the mathematization of nature comes to be established by a process of
idealizing the “life-world”. For Husserl, the life-world is the pre-scientific world of simple sensuous intuition. The true being of the world is joined together with the mathematical manifold, systematically concealing the life-world. Science became fully estranged and alienated from its “aboriginal source” (Kockelmans) in the life-world.
It can be thrilling to question the very ground of reason and lean strongly towards madness. I mean, one could just as easily deny that there is even really a "person" that the court addresses when "the State" presumes to inquire if you are in deed "such and such" a person. We play by the voodoo-bs-rules of our society. If we were truly to question the objective world and the whole concept of persons, we might be placed under the authority of psychiatric police.
Maybe this is why I find some comfort in relating abstractions to computer code. I seem to really enjoy putting code in a debugger, stepping through each line of code, watching local and global variables change value, checking the registers to see each step "behind the magic".
There is some comfort in the logic ... being able to follow the logic ... and then there this aboriginal source of the life-world, the body becoming weak when it does not stop to focus on eating some food, taking in nutrients ... dizziness ... heart beating, blood pumping into the veins ... primal being ... we observe processes we are "thrown into and stuck in" and we call these processes "the world" and even "our self" or our body ... and yet one can't separate one's so-called body from the air it breathes. It's all very weird. Truly weird in cosmic proportions. Sorry, I am becoming sleepy all of the sudden and can't seem to make much sense.
I agree with Kant's view that human rationality lacks the power to answer questions, since our knowledge is limited by our specific and narrowly-circumscribed capacities for organizing our field of sensation.Maybe that's why I like to reflect upon code ... even with just the organic compiler/debugger in my head. I can't get to the bottom of the big picture, but I can observe little processes and understand what is taking place. We just have to try not to be overwhelmed by our own consciousness. Give it something basic and fundamental to meditate upon.
int gcd_positive_subtractive_recursive(int a, int b) {
assert( (0 < a) && (0 < b));
if (a == b) return a;
if (a < b) return gcd(a, b – a);
/* if (b < a) */ return gcd(a – b, b);
}
I like to mentally go through that code and understand why it is ok to comment out "if (b < a)" since , if it is, it will get to that code, if not, it won't.
And what exactly is "it" that is going through the lines of code when it is turned into 1's and 0's that machines understand?
It is actually a human mental phenomenon. OK, granted. At some point, one seems to have to detach from the big picture and ... oh ... sorry ... I am rambling.
Let us not require that we always make sense.