-
Notifications
You must be signed in to change notification settings - Fork 1
/
a-simple-universe-math.tex
2141 lines (1850 loc) · 101 KB
/
a-simple-universe-math.tex
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[a4paper
,draft
]{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{appendix}
\usepackage[english]{babel}
%%%%%%%%%%%%%%%%%%v
\usepackage{combelow}
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\usepackage{newunicodechar}
\usepackage[
backend=biber,
style=apa
% citestyle=authoryear,
% citestyle=alphabetic,
% sortcites=true,
% style=authoryear
% style=alphabetic
]{biblatex}
\DeclareLanguageMapping{english}{english-apa}
\addbibresource{design-argument.bib}
\newunicodechar{Ș}{\cb{S}}
\newunicodechar{ș}{\cb{s}}
\newunicodechar{Ț}{\cb{T}}
\newunicodechar{ț}{\cb{t}}
\title{A Simple Universe Argument}
\author{Virgil Șerbănuță\thanks{\href{mailto:[email protected]}{[email protected]}}}
%\date{June 2015}
%%%%%%%%%%%%%%%%%%^
\usepackage{amsfonts}
\usepackage[obeyDraft]{todonotes}
\newcommand{\svn}[2][]{\todo[author=Virgil,color=red!25!white,#1]{#2}}
\newcommand{\tsf}[2][]{\todo[author=Traian,color=green!40!white,#1]{#2}}
\newcommand{\tsfgata}[2][]{\todo[author=Traian,color=blue!40!white,#1]{DONE - #2}}
\newcommand{\commentfootnote}[1][]{}
\def\infordinala{\omega}
\def\infordinalb{\omega_1}
\def\reale{\mathbb{R}}
\def\intregi{\mathbb{Z}}
\def\complexe{\mathbb{C}}
\def\naturale{\mathbb{N}}
\def\rationale{\mathbb{Q}}
\def\descriptions{D_L}
\def\designer{\mathbb{D}}
\def\our_description{OURD}
\newcommand{\paper}[1]{paper}
\newcommand{\multime}[1]{\left\{ #1 \right\}}
\newcommand{\definitie}[1]{\textbf{#1}}
\newcommand{\ghilimele}[1]{``#1"}
\newcommand{\lnotat}[1]{\sim #1}
\newcommand{\negat}[1]{\sim #1} % TODO: This is the same as \lnotat
\newcommand{\citare}[1]{(\cite{#1})} % TODO: Separate this in a version with parenthesis and one without.
\newtheorem{definition}{Definition}
\newtheorem{afirmatie}{Claim}
\newtheorem{notatie}{Notation}
%\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}{Lemma}
\newtheorem{axiom}{Axiom}
\newtheorem{note}{Note}
\begin{document}
%%%%%%%%%%%%%%%%%%
\maketitle
%%%%%%%%%%%%%%%%%%
\begin{abstract}
This \paper{} argues that if our universe is not designed, it should
have a high level of a certain kind of complexity that should be visible
everywhere. Given that we don't observe this, our universe is most probably designed.
Moreover, it's probably designed for intelligent beings.
\svn{This is valid regardless
of how many universes exist, whether it is one, or all logically
possbile ones, or anything in between.}
\end{abstract}
\section{Introduction}
There is a common belief
that there are certain laws that explain our universe's behavior fairly well,
that we can compute its age,
and that we can make predictions about the distant future, and so on.
In a way, all of these are really surprising.
In the words of \textcite{Feynman2009}:
\begin{quote}
Incidentally, the fact that there are rules at all to be checked
is a kind of a miracle; that it is possible to find a rule,
like the inverse square law of gravitation, is some sort of miracle.
It is not understood at all, but it leads to the possibility of
prediction --- that means it tells you what you would expect in
an experiment you have not yet done.
\end{quote}
This \paper{} attempts to figure out statistically
why we observe such a surprising universe and
what we can reasonably believe about it.
The argument can be described as a statistical approach to Aquinas' fifth way.
It tries to avoid some of the issues encountered by other statistical approaches
attempting to show that our universe is designed
(e.g. the fine-tuning argument).
To be specific, it argues that, in the context of all the possible universes
that could contain human-like beings, our universe is an extremely unlikely
case unless
a Designer intended it, and furthermore, it's probable that the
Designer wanted to design for human-like beings.
In order to show this, we first need to specify what would count as a universe.
This is a difficult question in general but, fortunately, this paper's argument
also works if we take into account only a subset of all possible universes.
In particular, we only need to take into account universes that are able
to sustain intelligent beings
and, assuming that they contain intelligent beings, there should be mathematical
theories (called \ghilimele{descriptions}) that these beings could use to
predict (either fully, or approximately) how their universes behave.
We allow for both deterministic and non-deterministic universes.
% Diff with the edit.
%The section entitled Possible Universes and Their Descriptions introduces these ideas in a more
%rigorous way, together with some of the reasoning behind them.
Section \ref{sec:possible-universes} introduces these ideas in a more
rigorous way, together with some of the reasoning behind them.
% Diff with the edit.
% The section Options for Our Universe discusses the ideas central to this paper.
Section \ref{sec:options} discusses the ideas central to this paper.
% Diff with the edit.
%Merely defining the ideas presented in the section Possible Universes and Their Descriptions
%is not enough;
%we also need to make some assumptions about our universe and about
%the link between mathematical theories and reality.
Merely defining the notions presented in section \ref{sec:possible-universes}
is not enough;
we also need to make some assumptions about our universe and about
the link between mathematical theories and reality.
First, we specify what it means to observe events that have a probability of $0$,
then we specify what happens when there is no way to assign probabilities to
the events that we observe.
Next, we assume that our universe can be modeled by a finite-dimensional
space based on real numbers or by something close to that.
We also assume that it is possible to predict, approximately, the behavior of the space
around us, assuming it to be satisfactorily isotropic,
i.e., the same physical laws apply everywhere.
We also need to assume that the set of possible universe descriptions
is large enough, i.e., it has the same size as the set of real numbers.
% Diff with the edit.
% The section entitled Axioms contains axioms for all the assumptions mentioned
% above, each containing an argument for how they make sense.
Section \ref{sec:axioms} contains axioms for all the assumptions mentioned
above, each containing an argument for how they make sense.
With these arguments made, we can start the main part of the discussion
which can be stated as follows: that, in the context of all the possible universes that could
have human-like beings, our universe is extremely unlikely to exist
unless a Designer
intended it to, and that the most obvious reason for its existence is
that the Designer created it for human beings.
The main issue is that our universe seems to behave according to relatively
simple laws that do not change with time and space.
It's completely implausible for this to happen by chance so there should be
an explanation for it.
If our universe is not designed, then the only other possible explanation is that
there is something outside of our universe that made it likely for our universe
to exist, i.e., a meta-universe.
However, this paper will argue that a meta-universe that
would explain our universe is also unlikely, so, in the same way,
it would require a meta-meta-universe explaining the meta-universe,
which in turn would need an explanation and leave us with an infinite chain
of meta-universes.
Since this chain would also need an explanation, perhaps we could make a
claim for a meta-infinity universe that explains it all.
But wouldn't this meta-infinity universe also need an explanation?
We could, of course,
continue this process for quite a while,
which makes these meta-universes also somewhat implausible.
This means that if our universe is not designed, then it will not behave
according to simple laws, and, in principle, this behavior should be
noticeable to us.
Yet it isn't evident that our universe behaves outside of simple laws.
Of course, our current means of space-travel allows us to observe only a limited
part of our entire universe, so it's theoretically possible that we live
in a bubble covering
a large amount of time and space in which simple laws apply.
Even if it were the case that ours was a bubble universe,
it's still very unlikely among all possible bubble universes
because our bubble is much larger than it needs to be.
A conservative estimate produces a probability so low for the existence of our universe,
that almost any other explanation is preferable.
As an example, if that bubble includes the planet Mars for at least one second,
then our universe has a probability lower than $1$ to $10$ to the power $3·10^18$.
That power is proportional to the volume of space included in the bubble,
so one can figure out what happens if, say,
our entire galaxy is included in the bubble.
It's harder to estimate the same probabilities when there is a Designer, but
it is likely that the probability for the existence of our universe is much higher than in the
non-design case.
% Diff with the edit.
% The section Valid Options for Our Universe describes this argument in detail.
Section \ref{sec:valid-options} describes this argument in detail.
% Diff with the edit.
% Objections and Clarifications presents some exposition and possible
% answers to various objections to this paper,
% and the final section, Conclusion, draws this paper's argument to a close.
Section \ref{sec:objections} presents some exposition and possible
answers to various objections to this paper,
and the final section, \ref{sec:conclusion}, draws this \paper{}'s argument to a close.
This \paper{} uses some mathematical concepts related to set cardinalities,
probabilities and ordinals which can be found in, for example,
\textcite{sep-set-theory}, \textcite{Cohen1966} and \textcite{Billingsley1995}.
These are summarized in section \ref{sec:background}, together with some
mathematical statements related to them.
\section{The Ordered Universe Argument}
\label{sec:ordered-universe}
The great Catholic theologian Thomas Aquinas,
in his \ghilimele{fifth way}, attempts to show God's existence from
the order of the universe, arguing that almost all bodies, almost always
behave according to simple natural laws.
One can find a good exposition of this argument in
\citetitle{swinburne1968}
\parencite{swinburne1968}, but let us look at a few ideas which are
interesting in the context of this \paper{}.
There are two types of order one may consider for showing God's existence,
the spatial order and the temporal order.
The former is the order that can be seen in, say, a watch:
even if one would not know what a watch is or does,
the way it is built has a certain order among its pieces
and within each piece that makes it highly unlikely to be a natural product.
One could argue that some part of our universe,
either something as large as our galaxy, or as small as a bacteria,
has some similar kind of order that is unexpected and which suggests
the work of a Designer.
For example, an animal, or a plant usually has a lot of components that
fit and work together in a rather complex way,
and people have argued that this makes it look like the work of a Designer.
The latter–temporal order–can be seen in the behavior of things, including the laws of
nature, and it's the one that will be used in this \paper{}.
While it addresses many possible objections to Aquinas' fifth way,
% Diff with the edit
% Swinburne’s argument from design still leaves it vulnerable to criticism
Swinburne’s Argument from Design still leaves it vulnerable to criticism
by virtue of its basis on an analogy between the order of the world and the order
produced by people, which limits its strength.
I think that this \paper{}'s argument, although it builds on the same
foundation, does not need a high probability for our world,
so it’s much less dependent on analogies between people
and a potential Designer
% Diff with the edit
% (see the Design Probability section).
(see Section \ref{sec:design-probability}).
Depending on how one reads this section, it may even work without an analogy.
The following quote from \textcite{swinburne1968}, made when addressing
Hume's objection that the order which can be observed in this universe
is just an accident, makes a nice introduction for the argument
described in this \paper{}:
\begin{quote}
But if we say that it is chance that in 1960 matter is behaving in a
regular way, our claim becomes less and less plausible as we find that in
1961 and 1962 and so on it continues to behave in a regular way. An appeal
to chance to account for order becomes less and less plausible
the greater the order.\footnote{
% TODO: Cite using the Latex tools.
Swinburne, R. G. (1968). The Argument from Design. Philosophy, 43(165), page 210.}
\end{quote}
% TODO: Maybe list some of Hume's issues with this argument.
\section{Possible Universes and Their Descriptions}
\label{sec:possible-universes}
If our universe is designed, then it's likely to be the way it is because
its Designer wanted it to have certain properties.
In order to understand why our universe works the way it does,
one would need to understand the intent of its Designer.
While that's interesting in itself, I will not try to pursue it in depth here,
except for outlining a few brief ideas.
For most of the remainder of this \paper{} let us consider the other case
and assume the hypothesis that our universe is not designed,
and try to make a prediction based on it.
How would a non-designed universe look?
Would it be similar to our universe?
Maybe an infinity of universes exist and ours is just one of many,
or maybe our universe is the only one.
Even if ours is the only one, we could easily imagine that it worked
in a different way, for example, maybe some constant like the speed of light would be
different, or maybe gravity would work differently.
There are people who claim that all logically possible universes exist,
either because they think that it simply makes sense or because they want to
give a good account of modality, or for other reasons.
Were it indeed the case that all logically possible worlds exist, making predictions about
non-designed universes would seem, at first sight, rather challenging.
This \paper{} argues, however, that there are certain things that can be said
regardless of how many universes exist (just one, every logically
possible universe, or any number in between).
%The argument in this \paper{} does not assume that more than
%one universe exists, but it should work either way.
A possible universe
could have exactly the same fundamental laws as ours but with matter
organized differently.
It could have similar laws but with different universal constants.
It could have different fundamental particles (or fields, or whatever the basic
building blocks of our universe are, assuming that there are any).
Or it could be completely different, i.e., different in all possible ways.
It could be that our logic and reasoning are universal instruments,
but it could also be that some of these possible universes are
beyond what our reasoning can grasp and others have properties
for which our logic is flawed.
Even if that's the case, let us see if we can say anything about
the possible universes that we could understand and model in some way.
In the following, the \definitie{possible universes} term will denote
only the logically possible universes that we could model (with a few
more constraints that will be added below). However, the word
\ghilimele{possible} is ambiguous so when the distinction between logical
possibility and actual possibility is important, the
term \definitie{conceivable universes} may be used instead.
This concept of a model is not precise enough.
Let us further restrict the possible universes term
to possible universes that could be modeled mathematically–even
if that leaves out some of them.
This may seem too restrictive,
especially since this paper only needs universes that can be approximated
by mathematical models.
We are going to relax this when discussing approximations, but, for now,
let's consider only universes
which are modelable with sets of axioms that are at most countable.\footnote{
A set of axioms is countable if it is infinite,
but the axioms can be counted, i.e.,
one can assign distinct natural numbers to them.
A set is at most countable if it is finite or countable.
}
Let us restrict the universes we are considering even further to universes that
have something remotely resembling time and space and for which
the statement, \ghilimele{the state of the universe at a given moment in time}, or something
close, makes sense; and which can plausibly contain intelligent beings.
% And let us restrict again, to universes where there is no action at a
% distance.
Any such universe is, for the purpose of this paper, a conceivable universe.
To keep the exposition simple, I will use
\ghilimele{the state of the universe at a given moment in time},
but one can replace it with one's preferred alternative concept, e.g.,
\ghilimele{the state of a hyperplane whose points only have spacelike
intervals between them}.
Let us define a \definitie{universe description} as a
consistent mathematical theory that has
a set of axioms which is at most countable and which allows making
predictions about the future state of the universe–given its state
at a certain moment in time. A \definitie{universe region description}
is something similar, but limited to a given space-time region of a universe,
with extra axioms to take into account interactions with the rest of the
universe (e.g., by using the state of the region boundary when predicting).
In the best case, for a deterministic universe, there might exist
a description which allows one to correctly predict the entire future
given the state of the universe at some moment in time,
but a universe description
as defined here does not have to predict everything and,
even when it predicts something, it does not always have to be correct.
\ghilimele{Predicting}, as used above, would normally mean that one
starts from the theory and makes some formal inferences and computations, producing
the prediction as the result.
% Diff with the edit
%However, as Calude et al.(2013) shows, there are many
However, as \cite{Calude2013} shows, there are many
things that can't be proven this way and
we don't know if the state of the universe at a given moment in time is one of
those things, although we could restrict our descriptions to cases where this
is possible, at least up to a reasonable level.
Regardless, let us use a different meaning: a theory predicts something if
that something is true in all mathematical models of that theory (i.e., all
sets in which the theory's axioms are satisfied).
Note that usually the data available for making predictions is dependent
on who is making the prediction. For example, if we assume that
all predictions are about things that can be perceived, directly or indirectly,
then
each kind of intelligent being (e.g., humans) will make predictions
about the universe as perceived through their senses. If a universe contains
multiple kinds of intelligent beings, with different kinds of
sense organs, then that universe may have descriptions that are
very different.
Of course, things that are not observable directly can sometimes be mapped
to things that are observable, but this may not always be true.
In order to handle this dependence on who observes a universe
in a reasonable way, in the remainder of this paper we will work with universes
that contain intelligent beings,
and all predictions will be relative to what these intelligent beings
could observe.
If there are multiple kinds of intelligent beings in the
universe, whenever we are talking about its description
we will assume that we picked one such kind,
i.e., although we
will talk about universes and their descriptions, we'll actually mean
universes as perceived by their intelligent beings, and descriptions corresponding to those perceptions.
Next, let us try to specify how good a universe description
should be. First, predictions speak about the future, but expecting to
predict everything until the end of the universe (if any) may not be
reasonable. We may want to fix an amount of time $\Delta t$,
focusing on predictions about things that are at most
$\Delta t$ in the future. Second, we shouldn't expect to
be able to describe everything with full precision, so we may want to
have a precision $\eta>0$ for all the values that are predicted.
Third, we shouldn't expect predictions to always be correct, so
we should require that they are true with probability $p>0$.
The exact meaning of \ghilimele{true with probability} here is left open,
except that we require $p$ to be the same for each location where
predictions are being made.
Of course, we may add other similar constraints if needed.
As an example, we could demand that, of all predictions we can make
at a given space-time location, a fraction of $p$ must turn out to be true.
If we are making
statistical predictions, then the observed outcomes would be consistent
with a fraction $p$ of all sentences representing statistical predictions
being correct.
Then let us say that an \definitie{approximate universe description} with a
\definitie{level of approximation} $L=(\eta>0,$ $p>0$ and $\Delta t>0)$
is a universe description which allows approximating the future
state of the universe with a precision $\eta$, with a probability
$p>0$ for a prediction to be correct
and for a limited amount of time $\Delta t$.
There is a distinction that we should make.
When predicting weather, for example, we can't make long-term precise predictions
because weather is chaotic and, more specifically, a small difference
in the start state can create large differences over time.
This would happen–even if the universe was deterministic
and we knew the laws of the universe perfectly–as long as we didn't know
the full current state of the universe.
However, high precision predictions may be possible for a deterministic
universe if the full state
is taken into account and, as mentioned, we assume that we know that full
state when making predictions.
% TODO: Distinction with what?
For a given universe or region of a universe,
at an agreed level of approximation, we will pick a canonical description
in the following way: Let $S$ be the set of descriptions that account for
the universe with the given level of approximation. If $S$ contains
at least one finite description, then, for this paper,
we could pick any finite description from $S$ as
\ghilimele{the canonical description}.
However, in order to make this more precise,
let's just pick the description with the minimum length
that comes first in the dictionary.
Otherwise, we simply say that the
universe (region) has an infinite description, and we will abuse the
terminology a bit by picking the entire set
$S$ as the canonical description (we could
also pick a random description from the set).
If the level of approximation is obvious from the context, we will call
this canonical description \definitie{the universe's description}
or \definitie{the universe region's description}.
One could also use a well-ordering on the set of real numbers to choose the
lowest description as the universe's description, but that would
complicate things without any benefit.
\section{Options for Our Universe}
\label{sec:options}
The remainder of this paper will analyze what we can reasonably believe about
the following issues:
\begin{itemize}
\item Our universe is designed or not.
\item Our universe has a finite or infinite description.
\item There is an uncountable chain of meta-universes, in which
our universe is the first, and in which any meta-universe
includes, directly or not, all the previous ones.
\item The set of possible descriptions for a finite chunk of space-time
that is also compatible with life has at least the cardinal
of the set of real numbers, $\reale$, or a smaller one.
\end{itemize}
\section{Axioms}
\label{sec:axioms}
\subsection{Observing Events}
In the main argument we will try to use the fact that the set of laws describing
the behavior of our universe is a member of a large set of universe
descriptions, a set large enough to have the same cardinality as the set of
real numbers.
For sets with the same cardinality as real numbers,
the most natural probability distributions are the continuous
ones, i.e., probabilities for which any element of the set has probability $0$.
Practically, this means that we would lose any bet that we would make on a
single element of the set.
In order to make some sense of this, we will use two terms,
\ghilimele{generic} and \ghilimele{peculiar},
% Diff with the edit
% which are defined precisely in the section Probabilities.
which are defined precisely in section \ref{sec:probabilities}.
Informally,
an object is peculiar if it satisfies a peculiar predicate, and a peculiar
predicate is one that has a zero probability for any continuous probability
distribution.
For example, \ghilimele{has a finite number of digits} is a peculiar
predicate over real numbers, and any real number with a finite number
of digits, like $12.5$, is peculiar. An object or predicate is generic if
it's not peculiar.
Axiom \ref{ax:zeroisgeneric} below specifies this in a more formal way.
However, it might happen that for some of the sets used in this \paper{}
no reasonable probability distribution can be defined.
Axiom \ref{ax:noprobability} specifies how choice works in those cases.
Throughout this paper we will implicitly use only separated probability
measures, i.e., they can measure singletons (single-element sets).
\begin{axiom}
\label{ax:zeroisgeneric}
If $P$ is a probability over the set of real numbers\footnote{Note
that here, and in all the axioms in this paper, it's not required that
$P$ is a probability over the
Borel algebra of $\reale$, although people often implicitly
assume it when talking about probabilities over $\reale$.
}
(or a set with the same cardinal)\footnote{
Readers should
keep in mind that, in most cases throughout this paper, what is being said
about the set of real numbers is similarly valid for any set with the same
cardinality.},
we observe a real number $x$, and $P(x)=0$, then $x$ is generic.
\end{axiom}
The set of events for which $P(y)$ is
% Diff with the edit
% greater than $0$ is at most countable (see the Probabilities section),
greater than $0$ is at most countable (see section \ref{sec:probabilities}),
and, if we remove them from $\reale$, what remains will still have
the same cardinality.
Let us consider only this later set containing all elements with probability $0$.
If its probability is $0$, then we will not observe any of its elements,
which means that we will not be able to apply the axiom above.
Otherwise, let us note that the probability
of all peculiar events taken together is $0$, so there is no chance of us
observing one.
In other words, within this set, the probability of all generic events is $1$,
so we can be sure that we observed a generic event.
Of course, the (logical) possibility of observing a peculiar event still exists,
but, practically, we will not observe it as long as the set of our
observations is at most countable.
\begin{axiom}\label{ax:noprobability}
If we observe a specific real number $x$, when we could have
observed any real number, and there is no probability distribution that could
describe how $x$ was chosen, then $x$ is generic.
\end{axiom}
Note that this axiom doesn't say that we do not know this probability
distribution; it says that there is no such probability distribution.
Anyone believing that this cannot happen should treat the cases where
this axiom applies as invalid.
Also note that this cannot happen when using subjective probabilities.
If there is nothing that could favor
peculiar numbers over generic ones, it's absurd to think that we could have
observed an element of such a tiny set among something infinitely larger.
Also, the similar axiom for probabilities above suggests that this is the only
reasonable assumption in this case.
\subsection{$\reale^4$ Universe}
The universes we are interested in are universes that can be
modeled on top of a finite-dimensional space based on real numbers,
or something close enough to that.
In order to not define what \ghilimele{close enough} means, we will use
the following axiom, which is true for any finite dimensional space
based on the set of real numbers, but it also works on spaces based on,
say, the set of rational numbers, and on many similar finite dimensional spaces.
Let us define a \definitie{generalized rational number} as being either a
rational number, or one of $-\infty$ and $+\infty$. Let us have
\ghilimele{cuboid} stand for a corner-based shape in the $n$-dimensional space
(we could take it to mean \ghilimele{hyperrectangle}, \ghilimele{hypercube},
or any similar shape).
\begin{axiom}\label{ax:rationalcovering}
The set of (generalized) cuboids using the same dimensions as our space-time
and whose corners' coordinates are generalized rational numbers (i.e., they
belong to $\rationale\cup\multime{-\infty, +\infty}$),
is countable and covers our universe.
\end{axiom}
Note that any space-time based on real numbers, i.e., included
in $\reale^\alpha$, will be included in the generalized cuboid having
its corners at plus or minus infinity.
The axiom above does not require the space-time to include the cuboids or
their corners.
If, let's say, our universe is based on the set of integers, i.e.,
it would be included in $\intregi^\alpha$,
we could consider it as being included in $\rationale^\alpha$,
where we could check if it's included in one of the cuboids mentioned
above.
The following definition could also be written as an axiom.
\begin{definition}\label{finitecuboid}
A part of our universe is \definitie{finite} if
it can be covered with a finite cuboid, i.e., one
for which all corner coordinates are rational numbers.
\end{definition}
There are a lot of possible definitions for \ghilimele{finite} which are not
covered by this definition.
While this paper could probably be extended to also handle many of these,
most likely there is no point in doing so.
For example, in $\reale^3$ one can define it as
\ghilimele{having a finite volume}, which would
mean that there are finite things that do not fit in finite cuboids.
In order to handle this we could change the way we define a level of approximation
by allowing ourselves to ignore what happens in a small part of the region we model.
\subsection{Logically Possible Universes}
The following axiom states that, for a given level of approximation,
there is a large set of conceivable universes, which in some narrow respects
are similar to ours, but which are, in general, wildly different.
Also, our universe belongs to this set.
\begin{axiom}\label{ax:uncountable}
For any level of approximation $L$ above a certain minimum level (see below)
there is a set $\descriptions$
of universe descriptions such that the following are true:
\begin{enumerate}
\item $\descriptions$ has the same cardinality as
the set of real numbers $\reale$.
\item For all descriptions $d$ in $\descriptions$
there is at least one conceivable
universe $U_d$ which
\begin{enumerate}
\item is based on space-time or something similar enough;
\item can plausibly contain intelligent beings that use mathematics;
\item for the intelligent beings mentioned above and
for the level of approximation $L$,
$d$ is $U_d$'s description.
\end{enumerate}
\item A description can be used only for its universe, i.e.,
if $d$ and $d'$ are descriptions from $\descriptions$,
then $d$ does not work
for $U_{d'}$, the universe corresponding to $d'$.
\item $\descriptions$ contains a description for our universe.
\end{enumerate}
The same is true for universe regions, except that
$\descriptions$ may have a lower
cardinality.
\end{axiom}
The minimum level for which this is true is left unspecified, but we should
include some common-sense restrictions, e.g., the minimum length we would
need to measure is not below Planck's length.
All levels of approximation used below will be above this
minimum level, even if this is not mentioned explicitly.
To see why this axiom is reasonable, we will first show that our universe's
description could be part of such a set, then we will identify a large set
of descriptions that fulfills all the requirements except for containing
our universe's description. We will then show that, by removing some of the
descriptions in that set and adding our own, we get a set that fulfills all
requirements.
Let us note that
we most likely have an approximate description for the observable part
of our universe
given by classical mechanics, maybe with some additions.
Alternatively, one could use a description based on, say, quantum field theory.
We can then assume that there is a description
(possibly different from the one above) that works for our entire universe,
as we are theoretically able to observe it. In the worst case, the description
would be just a recording of what we would observe (i.e., at a given time, in
a given place, a certain event takes place).
For almost any countable axiom system that still
has an $n$-dimensional real space $\reale^n$ as a base,
one could imagine an alternate universe
which, in the present, is exactly like ours inside (say) the orbit of Mars,
but what is outside of this orbit is described by that axiom set.
Some of these axiom sets would describe laws of nature which are similar enough
to ours to allow us to observe what happens outside of the orbit of Mars,
but different enough that
we would notice (e.g., gravity could work differently, depending on the region
of space in which one travels). Some of them would also allow life
to exist inside the orbit of Mars (this is not a given since, for example, the zone
outside of this orbit may produce large quantities of heat that
would make sure that inside the orbit only hot gas or plasma exists).
So we could then try to take all hypothetical universes with infinite space
or time, and we could split them into an infinite number of regions. If we take
all ways of having sets of laws (descriptions) which are different enough
for these regions,
we get a set of universes whose set of descriptions has the same cardinality
as the set of real numbers and which fulfills all the conditions of the axiom
above, except the last one.
To be more precise, for any approximation level $L$, and any region that
is not trivial for $L$
(the meaning of \ghilimele{trivial} is left open, but, for example,
if we use an approximation level that doesn't distinguish things smaller
than a size $l$, then the region must be significantly larger than $l$),
there are multiple possible descriptions that
are different enough for $L$, i.e., there is no possible region where both
descriptions
would be valid within the level of approximation $L$
% Diff with the edit
% (see the section Not Enough Descriptions).
(see \ref{sec:not-enough-descriptions}).
We can find two descriptions that are not valid for the region of space around
us, which means that they are different enough from any approximate
description that we would use.
By splitting an infinite space-time
into disjointed regions defined by a set of finite rational coordinates
(for example, we could split it into cubes whose edges have length $1$ and whose
corners are integers)
and taking all possible ways of assigning descriptions to these regions,
we get a set of universe descriptions with infinitely countable axioms
which we will denote by $\descriptions$.
Since the set of regions is countable, and we can assign at least two
descriptions to each region, we get a set of assignments with the same
% Diff with the edit
%cardinality as $\reale$ (also see the section Cardinals).
cardinality as $\reale$ (also see section \ref{sec:cardinals}).
We will still get a set with the same cardinality as $\reale$ if we identify a region $A$ that can sustain intelligent life,
whose description is fixed,
and we require that the other regions around it have descriptions that are compatible with life
in region $A$.
Also, let us note that, from the way we constructed it, we can add our
universe's description to this set without breaking any of the requirements.
This means that $\descriptions$, the set of descriptions mentioned in the axiom,
has the same cardinality as $\reale$. See
% Diff with the edit
% Few Universes Exist for another take on this issue.
section \ref{sec:fewuniverses} for another take on this issue.
% Diff with the edit
% Also see Manson (2003) who suggests that something similar
Also see \parencite{Manson2003}, who suggests that something similar
might be happening in our universe.
\subsection{Neighborhood Modeling}
Since we currently cannot observe our entire universe, saying that it has a
high level of complexity is of limited use.
The second part of our argument will try to draw some conclusions from
what we see in the observable part of our universe.
In order to do that we need an axiom saying that, around us, perhaps in the
entire observable part of our universe, there is a relatively simple
set of laws that describe it.
\begin{axiom}\label{ax:finiteneighbourhood}
There is a large compact space-time region of our universe that
includes our solar
system, and there is a level of approximation $L$ such that:
\begin{enumerate}
\item Any cuboid included in that region has a finite approximate
description for the level $L$ (i.e., we can make non-trivial
approximate predictions in all such cuboids).
\item A description for one of the cuboids also works for all other
cuboids with the same size in the given space-time region
(i.e., the space region is isotropic enough).
\end{enumerate}
\end{axiom}
Usually we assume, implicitly or explicitly,
that this statement is true, and, moreover, we assume that a cuboid's description works
for the entire universe.
This is especially the case when claiming, for example,
that the universe is around $14$ billion years old, that the sun will,
in some distant future, become a white dwarf; or that standard-candle supernovae
are not illusions.
In order to believe this, one must assume that our universe has a
finite approximate description or, at least, that our
solar system/galaxy/observable part of the universe has such a description.
\section{Valid Options for Our Universe}
\label{sec:valid-options}
This section will try to develop the axioms above so as to establish what
is reasonable to believe about the issues presented in
% Diff with the edit.
% section Options for Our Universe.
section \ref{sec:options}.
We will focus mostly on what happens when our universe is not designed
since in this case it's easier to make predictions about our universe
and to falsify them, but we will also take a look at created universes.
% Perhaps a diff with the edit
\textcite[][The section entitled \ghilimele{Why a world with human bodies is unlikely
if there is no God}]{Swinburne2003} comes quite close to the argument
presented here, but while Swinburne
argues that human bodies are unlikely, I am arguing that, in the context
of all possible universes that could have human-like beings,
our universe is extremely unlikely unless a Designer intended it,
and, what's more, the Designer wanted to design for human-like
beings.
Since the existence of human bodies is not directly related to the subject
of this \paper{}, I won't discuss that section more
than is strictly needed.
% Perhaphs a diff with the edit
% Note that (Swinburne, 2005) says that individual sets of laws
Note that \textcite{Swinburne2003} says that individual sets of laws
have non-zero probability whereas I'm claiming that their probability is $0$.
It seems to me that Swinburne’s paper implicitly assumes that
such a set has a finite number of laws, while I am explicitly removing
that constraint. I contend therefore that both Swinburne and I can be right within our own contexts.
\subsection{Peculiar Descriptions and Meta-universes}
\label{fdaumu}
\subsubsection{Informal argument}
From what we observe around us, it seems that our universe is fairly homogeneous,
having a relatively simple approximate description.
In this section we will try to see how plausible it is that this description
(or any finite description that still approximates what we see around us)
applies to the entire universe, not only the space and time around us.
To do this, we will first note that a finite description is peculiar,
which means that there is no chance of
us observing it both in the case where we use a continuous probability
distribution over universes (axiom \ref{ax:zeroisgeneric}),
and in the case when we can't use any probability
distribution (axiom \ref{ax:noprobability}).
This result should probably be good enough, and if you agree with
% this, please skip to the section Peculiar Descriptions for Universe Regions.
this, please skip to section \ref{sec:peculiarregions}.
Otherwise, the only option left is that the correct probability
distribution used over universe descriptions is discontinuous.
That, in itself, is not enough because if our universe's description is not
one of these discontinuities, then its probability is still $0$, which,
as stated in axiom \ref{ax:zeroisgeneric}, means that it's still generic.
If our universe is not designed, then we don't normally have any
reason for using a discontinuous probability distribution.
For many people this may be enough to
show that any approximate description for our universe's description is
infinite, and it should settle at least the case when this probability
distribution is a subjective one.
However, we will look deeper into this issue.
Let us assume that there is a probability distribution over universe
descriptions, and that this probability distribution has discontinuities,
and that our universe's description is such a discontinuity.
First, we can ask ourselves why there is a probability distribution over
universe descriptions.
A probability distribution means that which universes exist and which do not,
and how many of each type exist, is not completely chaotic,
i.e., there is a minimal amount of order to them.
We will call this order a \ghilimele{meta-universe}, and we will say that
this meta-universe includes our universe, but keep in mind that the usual
intuition is that a meta-universe is something more complex than just
a minimal amount of order.
On the other hand, the most natural explanation for this order
that does not involve design is an actual
meta-universe, which may contain many other universes besides ours.
To condense this entire paragraph into fewer words: the probability distribution over
universe descriptions is determined by something we will call
a \ghilimele{meta-universe}, which includes our universe.
Now we have something that explains this probability distribution, which,
as mentioned above, is not continuous.
We can ask ourselves if this distribution's discontinuities are what
we would normally expect or not.
It's natural to ask whether we have a probability distribution telling us
what we should expect from these discontinuities, and what kind of probability
distribution it would be.
The set of discontinuities for a probability distribution is at most countable
% Diff with the edit
% (see Probabilities) so, if they are described by a
(see section \ref{sec:probabilities}) so, if they are described by a
continuous probability
distribution, or if there is no such probability distribution, we would
expect them to be generic.
Since our universe's description is one of them, then it should be generic.
Since it's not generic, we can try to explain it (or its discontinuity
in the meta-universe)
using a discontinuous probability distribution over discontinuities
and assume that our universe's description is also one of the
discontinuities for this new probability distribution.
Having this probability distribution would mean that there is
a meta-meta-universe that includes the meta-universe and, indirectly,
our universe.
However, by using the same reasoning, having peculiar discontinuities for the
meta-meta-universe probability
distribution is plausible only if there is a meta-meta-meta-universe
with a discontinuous probability distribution.
By repeating this reasoning, we get an infinite chain of meta-universes,
each with a discontinuity for our universe's
description.
Applying the same reasoning as above to this chain, this discontinuity
must be generic,
unless there is something explaining it, i.e., a meta-infinity universe
whose probability distribution has a discontinuity for our universe's
description.
In order to make this chain more precise, we will assign a number corresponding
to the meta-level of each meta-universe.
We will assign $0$ to the meta-universe including ours, $1$ to the
meta-meta-universe including (directly or indirectly) the meta-universe and our
universe, $2$ to the next level, and so on.
Then we can denote by $\omega$ the meta-infinity universe that explains why all
the meta-universes corresponding to finite numbers have a certain discontinuity.
But, if the $\omega$ meta-universe probability distribution has a peculiar
discontinuity, then it also needs an explanation, so, again,
either our universe's
description is generic, or there is a meta-universe with a discontinuous
probability distribution that includes the
$\omega$ meta-universe.
We will call this the $\omega + 1$ meta-universe.
It follows then that we need meta-universes corresponding to $\omega + 2$,
$\omega + 3$, and so on.
So we get another infinite chain of meta-universes that also needs an
explanation which, in turn, should be provided by another meta-universe, including this
second chain. We will call it the $\omega + \omega$ meta-universe
or the $2\omega$ meta-universe.
But this new meta-universe still needs an explanation,
which means that we also need
meta-universes corresponding to $2\omega + 1$, $2\omega + 2$, ..., and,
in the end, corresponding to $3\omega$.
Next, we will need meta-universes
corresponding to $4\omega$, $5\omega$, and so on.
But to explain this (doubly) infinite chain,
we need another meta-universe which we
will call $\omega\omega$, or $\omega^2$.
Continuing, we will need meta-universes up to $\omega^3$, then up to
$\omega^4$, and so on.
In the end, we will need one for the entire
infinite chain, denoted by $\omega^\omega$.
However, we can't stop here, and we will not be able to stop for quite a while.
Each of these meta-universes corresponds to a statistical observation and,
as long as we make a countable number of observations, we either expect to
observe generic discontinuities, or we expect to find yet another meta-universe
above everything that we have heretofore observed.
% Possible diff with the edit.
% This construction corresponds to ordinals, see Cohen (1966), Section 3,
This construction corresponds to ordinals, see \textcite{Cohen1966}, Section 3,
to find out more.
The process will break down at the first uncountable ordinal (let us call it