Why does the universe exist? 7.0

ParEdit, 2

.

What is there before the beginning of the universe?

What does the universe change from?

— Me@2016-07-20 06:16:34 AM

.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(autoload 'enable-paredit-mode
  "paredit" "Turn on pseudo-structural editing." t)

;;;;;;;;;;;

(defun add-hooks (hooks fn)
  (mapc (lambda (hook)
      (add-hook hook fn))
    hooks))

(add-hooks (list
        'emacs-lisp-mode-hook
        'eval-expression-minibuffer-setup-hook
        'ielm-mode-hook
        'lisp-mode-hook
        'lisp-interaction-mode-hook
        'scheme-mode-hook)

       #'enable-paredit-mode)

;;;;;;;;;;;

(add-hook 'slime-repl-mode-hook
      (lambda () (paredit-mode +1)))

(defun override-slime-repl-bindings-with-paredit ()
   (define-key slime-repl-mode-map
     (read-kbd-macro paredit-backward-delete-key) nil))

(add-hook 'slime-repl-mode-hook
      'override-slime-repl-bindings-with-paredit)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

— Me@2022-12-09 01:24:55 PM

.

.

2022.12.09 Friday (c) All rights reserved by ACHK

Why does the universe exist? 7.3

Euler problem 10.4

.

program main

  implicit none

  integer :: p_max, p_count, i, j
  integer(kind = 16) :: p_sum
  logical, ALLOCATABLE, DIMENSION(:) :: is_prime

  p_max = 2000000

  ALLOCATE(is_prime(p_max))

  is_prime = .true.

  is_prime(1) = .false.

  do i = 2, ceiling(sqrt(real(p_max)))
     if (is_prime(i)) then
        do j = i*i, p_max, i
           is_prime(j) = .false.
        end do
     end if
  end do

  p_count = 0
  p_sum = 0
  do i = 1, p_max
     if (is_prime(i)) then
        p_count = p_count + 1
        p_sum = p_sum + i
     end if
  end do

  print *, "p_count == ", p_count
  print *, "p_sum == ", p_sum

  DEALLOCATE(is_prime)

end program main

For a universe part, which is partial in space or in time, you can ask for its cause.

But for the universe as a whole, you cannot.

If the big bang is the first cause, you cannot ask for the cause of its existence.

Asking for the cause of the existence of the universe is the same as asking for the cause of the first cause.

— Me@2012-10-15 08:33:01 AM

— Me@2022-11-27 09:09:53 PM

.

.

2022.12.04 Sunday (c) All rights reserved by ACHK

Why does the universe exist? 7.2

“There is nothing in that region of space”

and

“there is nothing outside the universe”

have different meanings.

.

there is nothing except quantum fluctuations in that region of space

= the best detector detects nothing but quantum fluctuations

.

there is nothing outside the universe

= whatever detected, label the whole collection as “the universe”

.

“There is nothing outside the universe” does not (!!!) mean that “we go outside the universe to keep searching, but find nothing”.

— Me@2012-10-15 08:33:01 AM

— Me@2022-11-27 09:09:53 PM

.

.

2022.11.28 Monday (c) All rights reserved by ACHK

Why does the universe exist? 7.1

Why is there something instead of nothing?

Why is there the universe?

.

The existence of the universe is not a property of the universe itself.

Instead, it is a property of the system that the universe is in.

.

However, there is no bigger system that contains the universe, because by the definition of the word “universe”, the universe contains everything.

So the question “why is there the universe” should be transformed to “why is there something instead of nothing?”

.

For example, the watch exists because the watchmaker has made it.

Similarly, if someone has created the universe, we can say that that someone is the cause of the existence of the universe.

However, there is no “someone” outside the universe, because of the definition of the word “universe”.

The universe has no outside.

— Me@2012-10-15 08:33:01 AM

— Me@2022-11-21 09:41:23 PM

.

.

2022.11.22 Tuesday (c) All rights reserved by ACHK

事件實在論,更正

Event Realism | 事件實在論 6.1

.

exist = can be found

無後果,就不再存在。

— Me@2013.09.25

.

If the consequences of an event cannot be found anymore, that event no longer exists.

— Me@2019.09.05

.

The surprising implications of the original delayed-choice experiment led Wheeler to the conclusion that “no phenomenon is a phenomenon until it is an observed phenomenon”, which is a very radical position. Wheeler famously said that the “past has no existence except as recorded in the present“, and that the Universe does not “exist, out there independent of all acts of observation”.

— Wikipedia on Wheeler’s delayed choice experiment

.

「事件」並不完全「實在」。

實在 ~ 堅實地存在

仍然有後果的事件,才為之「仍然存在」。

永久地有後果的事件,才為之「實在」。

— Me@2019-09-05 09:08:41 PM

.

.

2019.09.05 Thursday (c) All rights reserved by ACHK

The Door 1.1

The following contains spoilers on a fictional work.

In Westworld season 2, last episode, when a person/host X passed through “the door”, he got copied, almost perfectly, into a virtual world. Since the door was adjacent to a cliff, just after passing through it, the original copy (the physical body) fell off the cliff and then died.

Did X still exist after passing through the door?

Existence or non-existence of X is not a property of X itself. So in order for the question “does X exist” to be meaningful, we have to specify “with respect to whom”.

In other words, instead of “does X exist”, we should ask

With respect to the observer Y, does X exist?

.

There are 3 categories of possible observers (who were observing X passing through the door):

  1. the original person (X1)
    .
    X_1 == X

  2. the copied person (X2) in the virtual world
    .
    For simplicity, assume that X2 is a perfect copy of X.

  3. other people (Y)

— Me@2019-02-09 1:09 PM

.

.

2019.02.28 Thursday (c) All rights reserved by ACHK

Existence and Description

Bertrand Russell, “Existence and Description”

.

§1 General Propositions and Existence

“Now when you come to ask what really is asserted in a general proposition, such as ‘All Greeks are men’ for instance, you find that what is asserted is the truth of all values of what I call a propositional function. A propositional function is simply any expression containing an undetermined constituent, or several undetermined constituents, and becoming a proposition as soon as the undetermined constituents are determined.” (24a)

“Much false philosophy has arisen out of confusing propositional functions and propositions.” (24b)

A propositional function can be necessary (when it is always true), possible (when it is sometimes true), and impossible (when it is never true).

“Propositions can only be true or false, but propositional functions have these three possibilities.” (24b)

“When you take any propositional function and assert of it that it is possible, that it is sometimes true, that gives you the fundamental meaning ‘existence’…. Existence is essentially a property of a propositional function. It means that the propositional function is true in at least one instance.” (25a)

— Brandon C. Look

— University Research Professor and Chair

.

.

2018.10.07 Sunday ACHK

Mirror selves, 5.2

Anatta 3.3 | 無我 3.3

.

You fight for existence, for being alive.

However, your existence is not “yours”.

The existence of you, is not your property.

The existence of you, is a property of the group you are in.

The existence of you, is a property of other people.

.

To meaningfully say the statement “I exist”, you have to specify you exist with respect to whom.

To exist, you have to specify to exist in which people’s world.

— Me@2018-05-22 7:43 AM

.

.

2018.07.02 Monday (c) All rights reserved by ACHK

Life, 3

生命 3

.

We exist in time because time is change.

Growing is part of the definition of life. Growing is a kind of change.

.

Also, without time/change, there would be no thinking and no thoughts.

— Me@2017-12-26 11:42 am

— Me@2018-05-23 10:05:03 PM

.

time ~ change

.

Time is logically necessary if change is necessary.

— Me@2018-02-04 09:07:48 PM

.

.

2018.05.23 Wednesday (c) All rights reserved by ACHK

The Sixth Sense, 3

Mirror selves, 2 | Anatta 3.2 | 無我 3.2

.

You cannot feel your own existence or non-existence. You can feel the existence or non-existence of (such as) your hair, your hands, etc.

But you cannot feel the existence or non-existence of _you_.

— Me@2018-03-17 5:12 PM

.

Only OTHER people or beings can feel your existence or non-existence.

— Me@2018-04-30 11:29:08 AM

.

.

2018.04.30 Monday (c) All rights reserved by ACHK

The meanings of ONE

鑽石棉花 2

.

One bag of apples, one apple, one slice of apple — which of these is one unit? Explore the basic unit of math (explained by a trip to the grocery store!) and discover the many meanings of one.

— Lesson by Christopher Danielson, animation by TED-Ed

.

A unit ~ a definition of one

(cf. One is one … or is it? — TED-Ed)

— Me@2017-02-13 8:48 AM

.

One is not a number, in the following sense:

.

Primality of one

Most early Greeks did not even consider 1 to be a number, so they could not consider it to be a prime. By the Middle Ages and Renaissance many mathematicians included 1 as the first prime number. In the mid-18th century Christian Goldbach listed 1 as the first prime in his famous correspondence with Leonhard Euler; however, Euler himself did not consider 1 to be a prime number. In the 19th century many mathematicians still considered the number 1 to be a prime. For example, Derrick Norman Lehmer’s list of primes up to 10,006,721, reprinted as late as 1956, started with 1 as its first prime. Henri Lebesgue is said to be the last professional mathematician to call 1 prime. By the early 20th century, mathematicians began to arrive at the consensus that 1 is not a prime number, but rather forms its own special category as a “unit”.

A large body of mathematical work would still be valid when calling 1 a prime, but Euclid’s fundamental theorem of arithmetic (mentioned above) would not hold as stated. For example, the number 15 can be factored as 3 · 5 and 1 · 3 · 5; if 1 were admitted as a prime, these two presentations would be considered different factorizations of 15 into prime numbers, so the statement of that theorem would have to be modified. Similarly, the sieve of Eratosthenes would not work correctly if 1 were considered a prime: a modified version of the sieve that considers 1 as prime would eliminate all multiples of 1 (that is, all other numbers) and produce as output only the single number 1. Furthermore, the prime numbers have several properties that the number 1 lacks, such as the relationship of the number to its corresponding value of Euler’s totient function or the sum of divisors function.

— Wikipedia on Prime number

.

As long as something exists, it is possible to define one.

One as the basis for counting (number); one itself is not a number, in the sense that one is for existence, not for counting.

When counting, we have to know count with respect to what. That “what” is a “unit”, aka one.

That is why

x times 1 = x

— Me@2017-02-13 8:48 AM

.

\displaystyle{2 \times 1 = 2}

there are 2 units of apple == there are 2 apples

— Me@2021-08-22 07:13:46 AM

.

\displaystyle{2 \times 1 = 2}

2 units = 2

— Me@2021-08-22 10:27:52 AM

.

You define one in a context.

But you cannot define two without defining one.

— Me@2017-02-14 07:10:51 AM

.

You define a unit in a context.

But you cannot define a number without defining a unit.

— Me@2021-08-21 10:08:58 PM

.

.

2017.03.26 Sunday (c) All rights reserved by ACHK

Dear Esther, 4

cease to exist

~ cannot be found in the original region,

but is still possible to be found in the meta-region

For example, at the end of the video game Dear Esther, the character dies, computer screen turns black, you cease to exist there,

but you wake up and continue to exist outside that video game, outside that computer screen.  

— Me@2012.10.27

2014.06.01 Sunday (c) All rights reserved by ACHK

Hole, 2

The existence of X is not a property of X itself. Instead, the existence of X is a property of the bigger system that consists of X.

For example, the existence of a hole is a property of the whole, not of the hole itself. You cannot define a hole without the whole. Without the whole, the hole cannot exist at all.

hole ~ whole

— Me@2012.10.26

2014.04.30 Wednesday (c) All rights reserved by ACHK

Existence, 10

exist

~ is

~ has

存在

~ 有

~ 擁有

An apple exists in there

~ There exists an apple

~ There is an apple

~ There [has] an apple

一個蘋果(儲)存在那裡

~ 那裡存在一個蘋果

~ 那裡有一個蘋果

~ 那裡(擁)有一個蘋果

— Me@2012-10-19 09:20:39 AM

— Me@2014-03-13 11:25:58 AM

2014.03.16 Sunday (c) All rights reserved by ACHK

Why does the universe exist? 6

Why is there something instead of nothing?

— Me@2012-10-15 08:33:01 AM

If you use “universe exists” to mean “something exists” and use “why does the universe exist” to represent “why does something exist“, you have to specify which thing the “something” refers to.

For every particular thing, you can explain how come it exists, at least in principle. For example, when you ask,

How come there is an apple?

I can answer,

Because I have just bought it.

Without specifying what “something” is, “why does something exist” is a meaningless question.

— Me@2012-10-18 12:47:32 PM

— Me@2014-03-08 08:22:11 AM

2014.03.10 Monday (c) All rights reserved by ACHK

Property

Something is a “property” means that you can use that “property” to separate objects into two groups, such that all the members of one group have that “property”, while all the members of another group have not.

For example, “being big” is a property of some dogs, because you can separate all the dogs into two groups: group with big dogs and group with non-big dogs.

However, “existence” is not a property of any dogs, because you cannot separate all the dogs into two groups, such that one has existing dogs and one has non-existing dogs.

The existence of a dog is not a property of the dog itself. Instead, the existence of a dog is a property of, for example, rooms.

You can use “the existence of dogs” to separate all the rooms in this world into two groups: the room with dogs and the room without dogs. 

— Me@2012-10-18 12:47:32 PM

— Me@2014-03-03 02:46:35 PM

2014.03.03 Monday (c) All rights reserved by ACHK