-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter.2.01.xhtml
executable file
·1441 lines (1378 loc) · 83.3 KB
/
chapter.2.01.xhtml
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
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<!-- <!DOCTYPE html> -->
<!-- <html lang="en"> -->
<head>
<title>The Principles of the Trinary Universe: Chapter 2.01 Dimension Basics</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Jeffrey Scott Flesher" />
<meta name="created" content="1961-01-14T18:32:33.366699936" />
<meta name="changedby" content="Jeffrey Scott Flesher" />
<meta name="changed" content="2020-01-14T18:32:57.366666666" />
<meta name="description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="keywords" content="Light,Wizzard,Wizard,Newton,Tesla,Franklin,God,Jesus,Bar/Abbas,Darkness,Trinary,Universe,Sanctuary,Physics,Sun,Step,Jeffrey Scott Flesher" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TheLightWizzard" />
<meta name="twitter:creator" content="@TheLightWizzard" />
<meta name="twitter:title" content="The Principles of the Trinary Universe: Chapter 2.01 Dimension Basics" />
<meta name="twitter:description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="twitter:image" content="images/cover.jpg" />
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<!-- *** Put all js files inside comment tag when running kindlegen to get rid of warnings
*** -->
<link rel="stylesheet" href="1doc2rule.min.css" />
<!-- <script async="async" src="1doc2rule.min.js"></script> -->
</head>
<body>
<!-- ************* CONTAINER ********************************************** -->
<div class="container">
<!-- ************* BEGIN_TITLE_PAGE_COPYRIGHT ***************************** -->
<div class="noprint">
<span class="show_web_page_only"><span class="align_center"><span id="google_translate_element" class="google_translate_element"></span></span></span>
<span class="bigcenter"><cite>The Principles of the Trinary Universe</cite></span>
<span class="bignboldncenter">Chapter 2.01:<br />Dimension Basics</span>
<span class="small_text_line_center"><span class="center_italic">C</span>®<span class="center_italic">pyRight</span> & <span class="center_italic">C</span>©<span class="center_italic">pyLeft</span><br />by</span>
<span class="a_signature_large_center">Jeffrey Scott Flesher</span>
<span class="author_title">“Medically Retired United States Air Force Staff Sergeant”</span>
<span class="center_small">Last Update: <span class="text_mono ">14 January 2020</span></span>
<span class="center_small">
<a href="http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.xhtml" class="blank_target_link">http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.html</a>
</span>
<div class="a_line_show_break_html"></div><span class="a_blank_line"> </span>
</div>
<!-- ************* END_TITLE_PAGE_COPYRIGHT ******************************* -->
<!-- ************* BEGIN_CHAPTER_2_01 ************************************* -->
<div class="page_content">
<h3 id="chapter_02_01" class="a_header"> Chapter 2.01:<br />Dimension Basics </h3>
<p class="text_top">
There are 3 Dimensions, and 1 Dimensionless Dimension numbered 0 in the
<a id="return_term_trinary_universe_2" class="a_link" href="terms.xhtml#term_trinary_universe">Trinary Universe</a>,
more commonly known as the Physical Universe we live in,
which I call the Trinary Universe,
so that I do not have to redefine Scientific Terminology that most people apply to the Universe they know,
so we have Einsteins Dynamic Universe, which I refer to like Science Fiction,
and we have the Newtonian Universe, which Trinary is based on,
and just like I renamed Trinary Energy to get away from the Dogma about God,
I will do the same for the Universe,
so we know we are talking about real Science,
and the Trinary Universe,
and when it comes to Dimensions,
it is as easy as 0, 1, 2, 3.
</p>
<p class="text_indent">
To start off from the very beginning,
and explain this in terms that anyone should be able to understand,
I will explain it from the viewpoint of conscientiousness,
in terms of the Little Voice in most of our Heads,
which some refer to as that Little Voice of Reason,
because normally I only think in terms of Images,
and I have to convert them into words,
but I know I have Autism in the Highly Functional Spectrum,
so Communication is not a skill I was born with,
but rather had to learn it the hard way,
so I need to find another way of communicating,
and that Little Voice gives me that Audience I need to talk to,
so I can write this all down in a Document,
and all I am asking you,
is to keep this in mind,
because when I talk about God as being only Energy under Intelligent Control,
I am not talking about a Deity,
I am talking about science, and science is based on facts and observable evidence,
that can be demonstrated as a repeatable Experiment,
so the journey I am about to take you on starts off with the Element known as Hydrogen with 1 Proton and 1 Neutron,
I use this Atom because as far as I am concerned,
it is the first one, it has an Atomic Number of 1,
it has only 1 Proton and 1 Neutron,
so it has receptors for only one Valence Electron,
so it makes it the simplest Atom to talk about.
</p>
<p class="text_indent">
Representing our Hydrogen Atom using a 3 Dimensional Construct:
width, height, and depth, or x, y, and z as shown in:
<a class="a_link" href="#illustration_2_01"> Illustration 2.01: Hydrogen Atom</a>,
helps us to see it more clearly as a single atom.
Note: Even though Our Hydrogen Atom has an Electron orbiting it; which we cannot see,
nor know its exact coordinates;
but we still know it is somewhere within the sphere surrounded by a powerful force field,
so powerful in fact that another Atom can not come into contact with it no matter how hard we try to force them together,
the Atom's nucleus can never come into contact with each other,
not even in a Nuclear Explosion,
because that would destroy Energy, and defy the laws of Physics,
but the Atom can be destroyed and turn to ashes which are called Neutrinos,
but this concept goes beyond what Atom's are specified as having and doing,
it is about how they really behave in reality,
they transform from one type of energy into another,
for example, if you create a Hydrogen Bomb,
and you split the Atom using an Explosion to accelerate another Atom,
that crashes into the Hydrogen Atom,
all it does it break the bonds from the Proton and Neutron,
causing forcing them into the 0 Dimension,
where its Energy is allowed to flow freely while that connection is open,
but as soon as the Atom's start to collide with other Atom's, they become unstable,
like Peter stealing from Paul, these atoms transform from one type of molecule into another,
from one compound into another, this is the Alchemy of Science,
the expansion of this explosion moves outward,
causing everything in its path to be accelerated to a resonant frequency where it catches fire,
this, in turn, will transform some materials like wood into ash,
it is just a chemical reaction because Fire is a Chemical change, it is also Energy,
it is nothing but Electricity, and every Element has its own Frequency that it will catch fire,
if you do not believe me hook up an electrical cord and raise the Frequency and Power,
eventually, if you have enough of both, anything will catch on fire,
and you can measure the weight of the object before and after,
then collect all the Gas, and atomic debris and even count the Neutrinos,
and you can account for all its lose of mass,
and prove that all it did was transform one type of energy into another,
it gives off all its Energy as Light, with other Thermal Properties,
all of which are Electrical in nature,
so they can be converted into Electricity as proof of concept.
I use Computer Animated Atom's because I do not own an Electron Microscope.
</p>
<div class="a_illustration" id="illustration_2_01">
<span class="image_wrapper">
<img src="images/trinary-engine-0072.thumbnail.png" alt="Hydrogen Atom" class="the_image" /><br />
</span>
<span class="a_caption"> Illustration 2.01: Hydrogen Atom </span>
<span id="trinary_engine_0072_chapter_2_01" class="no_show_pdf"><a class="a_link" href="bix/trinary_engine_0072_chapter_2_01.xhtml">Full Size</a></span>
</div>
<p class="text_indent">
So for my example, this is the Known Trinary Universe,
and it consists of 1 Hydrogen Atom at a Spatial Coordinate location with an
<span class="Red">X</span> drawn in Red,
a <span class="Green">Y</span> drawn in Green, and a <span class="Blue">Z</span> drawn in Blue,
and a vertex where all lines converge at the center of the Universe,
which is always the center of the Atom in question.
“From the viewpoint of 3 Dimensions, everything has 3 Dimensions.”
At first, that statement might sound too simplistic:
but once we start viewing Atom's under a microscope we can only magnify them so much
and cannot cut them open,
although Atomic Accelerators or Smashers claim to split the Atom's into
<a id="return_term_quarks" class="a_link" href="terms.xhtml#term_quarks">Quarks</a>,
which is as far as we have gone so far,
they could not destroy the Energy that is in the Atom,
so spiting it, did not mean it actually cut the Atom in half, rather it just spits off sections of it,
protons and neutrons can be split apart without destroying the Energy,
just the matter the Atom is made of.
</p>
<p class="text_indent">
Normally splitting Atoms is referring to splitting Uranium or Plutonium Atom's into two new atoms,
with extra neutrons, so I am only talking about cutting them in half as a figure of speech,
meaning for diagramming them only, so If we keep cutting an Atom in half, we will find Quarks;
so now let us cut these in half and see what is in the very Center of a Quark,
and we can go on and on naming stuff I have no idea if it actually exists,
because Quarks are all based on Quantum Mechanics,
and my work does not need to reference Quantum Mechanics or use any of its Theories to explain things,
but I needed to point this out,
so when I start cutting into Atom's you do not think I am destroying Energy,
or see Quarks and other things hidden inside an Atom,
because the physical material an Atom consists of is the stuff Neutrino Detectors discover,
and that is Matter/Antimatter that has no Protons or Neutrons,
and it is microscopic or subatomic,
meaning smaller than an Atom, so small that we have nothing that can capture it to study,
so I want to make this point very clear,
the level of identifying every Quark in an Atom is simply not required to explain Trinary Energy,
so I will not try,
so the Term 3 Dimensional means that it has Matter that exist in this Dimension that has:
Width, Height and Depth,
and implies it has 4 Dimensions,
which is confusing,
because the Dimensions numbering scheme starts at 0, just like normal numbers, 0, 1, 2, 3...
</p>
<p class="text_indent">
The 0 Dimension has no dimensions, and space does not exist here,
and the 1<sup>st</sup> and 2<sup>nd</sup> dimension has no concept of width, depth or height,
because they have no meaning once you remove 1 dimension from the 3<sup>rd</sup> dimension,
this concept should be simple, but it confuses many people who try to understand this concept,
because they think of the 2<sup>nd</sup> Dimension as 2D, and try to graph in on a piece of paper,
thinking that represents a 2D drawing, but then reality kicks in,
and you realize that a true 2D object would be a hole in the paper,
because the paper is a 3D concept, it has depth, which is the thickness of the paper,
and real 2<sup>nd</sup> dimensional space does not have depth, so width and height have no meaning,
because in reality Matter can not exist in this Space, only Energy, because all matter is 3 Dimensional,
and why I do not talk about Quarks,
which are matter,
and at this level, they do not exist, so there is nothing to talk about,
as far as I can tell Atoms are just Protons, Neutrons and Electrons,
all of which are made of Neutrinos,
if the Structure of that Atom is not actually just a sphere,
or maybe a Toroid, I have no idea if there is actually something inside of it other than Neutrinos,
so I do not want to argue about Quarks, the concept actually still works for me,
so I talk about them as if that was all there was to Quantum Mechanics,
but as far as I am concerned that is all I needed to know about it,
they do not take my Universe into account,
so I will only validate this part of theirs,
so the 0 Dimension and the shape and construction of Atom's,
is just the starting point of this Science,
it all comes down to how people relate it to reality,
what names you call it or what shape it is,
has never been my favorite aspect of Science,
you ask me what images I see in the Sun,
I can describe all kinds of Shapes,
if an Atom is in any of them I have no idea,
but I imagine them as Toroid shaped,
but that is not just a guess, I never guess at things unless I tell you I did,
I can only use Logic to determine such things,
and the resolution of technology at this time is not clear enough to prove one way or the other,
but one day that will change,
and I am confident that they will determine its Toroid shaped,
and it is the only shape that can survive the 0 Dimension.
</p>
<p class="text_indent">
If we view space as 3 Dimensional,
then we are limited as to what we see once we remove one Dimension,
but if you keep cutting something in half,
eventually, you will have to cut off one of the dimensions to get to the next level,
because to believe you can keep cutting something in half till indefinitely is a very limited way of thinking,
so how can you prove it can be done,
or that it is possible to just cut off one dimension,
in fact, trying to prove it can be done is impossible when you think about it,
because it would destroy Energy, and Energy can never be created nor destroyed,
it can only transform from one form into another,
which proves it can not be created or destroyed,
because it will only transform,
because it is clear from every experiment that destroyed the Matter of an Atom,
its Energy still existed,
even though the matter in the Atom was disintegrated, it was not destroyed,
you can count the Neutrinos to prove that,
because slitting the Atom did not destroy the Energy,
just the bound to the Matter/Antimatter of the Atom itself,
note that Neutrinos have both, sometimes I mean to say Material instead of Matter,
since Atom's make up Material,
but the Material Atoms are made of is Neutrinos with Matter on one side,
and Antimatter on the other,
and Energy still needs a Medium to exist in,
it can not exist in “Thin Air”,
unless its Magic, and I do not like Magic in my Science,
even if I claim to be a Wizard,
I like to have my Science based on Observations and Facts and not Magic,
which means it needs another dimension it can transform into,
which is in another dimension,
so we must learn to think in terms of a single dimension,
so we start with the 0 Dimension,
because this is as far as you can cut when it comes to dimensions,
you start with 3,
cut off 1 and you have 2,
cut off another and you have 1, cut it off and you have 0 Dimensions left,
but is the 0 Dimension real?
Of course, Real means it exist as Matter and Antimatter,
and the Atom still does when its here,
only Space is missing,
so the Neutrinos collapse to the size of nothing,
so it can not be seen in any Dimension,
since it has no Dimension of Space to be seen in,
and we can only see Space,
we cannot see no Space,
even if we think we see nothing in that space,
we know Space is still there,
but to see No Space,
that would make seeing anything else impossible,
so it is a good thing we can not see: No Space,
double negative: can not see No Space,
just like Faith that the Light Exists,
just because we can not see Space without Dimensions of Space in it,
and why it is so limiting to image 3 Dimensional Space,
without taking into account all the other dimensions of Space,
just because we can not see them.
</p>
<p class="text_indent">
The way we define Space is what defines our Reality about Space,
if we define it as only having 3 Dimensions,
then our Reality does not include the possibility of No Dimensions,
other than to say it does not exist, but does it have to exist to not exist,
which is a valid question,
because how can something that does not exist really exist? Is it imaginary,
meaning it is not real except in our imagination,
or does it really exists, but we can only see it in our imagination.
It is clear that we can not answer this question using philosophy,
but in science, we can use logic to determine if something is real,
and I can prove that just because you do not see something,
does not mean it does not exist, it only means that it does not exist in our 3 dimensions,
but it can exist in other dimensions.
In Quantum Mechanics we all know about God's Particle,
it is a known fact that there is a phenomenon when viewing a single Atom,
that we see a pattern,
we see a single atom as being solid, so we call it Matter,
which means it is made of some material,
it then shifts position,
and becomes less bright in intensity,
or perhaps it is just harder to see,
I call this its antimatter state,
this term describes its relationship with the Matter state,
if one is positive, the other is negative,
hence the term anti, which means opposed.
</p>
<p class="text_indent">
This relationship of opposed infers opposite,
and it will always be the opposite polarity, then it disappears,
and there is no getting over this possibility,
its gone, and does not exist,
then it reappears,
in one state or another and continues to behave like that as long as we observe it,
so we know that just because we can not see it, it still exists,
and we must explain this without magic,
and Quantum Mechanics does not explain it,
nor does God's Particle, that really was just a Joke,
but finding new Elements was not, that is Science,
but as long as Quantum Mechanics is based on General Relativity,
I will call it Science Fiction,
and I am done talking about it.
Polarity or the idea of the state changes being Positive or Negative is only as a reference,
and does not actually imply that these states are actually a physical state that has Polarity that can be measured,
in fact,
it is just a description that makes it easier to illustrate and explain the concept using this idea,
since if we graph it out,
it will appear to be Negative, Positive and Neutral,
but it is more of the fact that its just the Byproduct of such a relationship that creates the Polarity,
for example,
the Atom is made of Neutrinos, they do not have any Electrical Charge,
so stating they are negative or positive is not accurate,
they are just Matter and Antimatter,
one will always be the opposite of the other,
but the effect they make as they move through space,
does create a Negative and Positive charge that can be measured,
and they do correlate to those sides of the Neutrino,
how do I prove that is not as easy as it seems,
since we do not have any technology that I can use as of this date,
but Logic states that we know Neutrinos are Neutral,
so by themselves, they do not create electricity,
but you add the Light and watch them do their magic.
Viewing White Noise, all we really know about it,
is that it possesses some form of Intelligence,
and this debate will never be solved using Philosophy,
in Science, we can prove that its behavior is not at random,
and it will change if we are viewing it Live in Real-Time,
as compared to viewing a recording of it,
and that implies Intelligence,
and the word Trinary denotes its 3 states, as 0, 1, and 2, 0 is when it is invisible,
1 is when it is at its brightest, and 2 is when it shifts and is less bright,
as such the 0 state means you see 0 objects so in a 3-dimensional world,
we could say this is in the 0 Dimension, it has no width, height or depth,
yet we know it exists in reality,
but the only real proof that something that can not be seen does exist,
is because it existed before it disappeared and after it came back, a circular line of thinking,
that always comes back to the truth of a particle that only exists sometimes,
but we know for a fact it does exist part of the time but in fact,
it is visible most of the time when it is in the 3<sup>rd</sup> Dimension,
meaning it is in the 0, 1<sup>st</sup>, 2<sup>nd</sup> and 3<sup>rd</sup> dimension all at the same time,
but to prove it has intelligence, we must prove that it has intent.
</p>
<p class="text_indent">
Trinary Energy exists in 4 Dimensions, the 0 Dimension is the very center of its Universe,
in reality, it can never move, because it has no dimensions to move in,
and this is where Reality as viewed in the 3 Dimensional Reality,
must change to viewing the Universe in single Dimensions,
each one is part of the one before it,
so the 1<sup>st</sup> dimension is part of the 2<sup>nd</sup> dimension,
which make up the 3<sup>rd</sup> dimension,
and at the same time, each dimension is separate from the next,
the 0 dimension can see the 1<sup>st</sup> dimension,
but the 1<sup>st</sup> dimension can not see the 0 dimension,
but the 1<sup>st</sup> dimension can see the 2<sup>nd</sup> dimension,
but the 2<sup>nd</sup> dimension can not see the 1<sup>st</sup> dimension,
but the 2<sup>nd</sup> dimension can see the 3<sup>rd</sup> dimension,
but the 3<sup>rd</sup> dimension can not see the 2<sup>nd</sup> dimension,
and any dimension beyond the 3<sup>rd</sup> dimension are only viewpoints looking back at themselves,
so the 4<sup>th</sup> dimension is just a perspective of looking at the 3<sup>rd</sup> dimension,
as if you are looking back at the way it was,
and not the way it is, or the way it will be,
because in the moment that will always be true,
because once we see something it is no longer there,
because we know that at the subatomic level this is true during the 0 states of the Trinary Energy,
and we know that the only reason it looks solid is because of this perspective,
and it is all because our perspective changes when we think in terms of Size,
if we viewed the Universe through a hole the size of an Atom, our view would be very small,
therefore when its state changes to 0,
everything in the Universe is gone to us, we are all alone in the Universe,
because at this level, that Atom is the biggest thing we can see,
in fact, it is the only thing we can see,
think about the Universe, can you see endless miles of stars and Galaxies?
No, you can not see beyond the Heavens,
which is the Sky, during the day the Light blocks out the stars and Galaxies,
and at night we can only see a limited amount of them,
so our perspective depends on day and night,
but at the Atomic-level it can not see either,
because it is force field blinds it to the outside,
similar to how we view the Universe by looking at the sky.
</p>
<p class="text_indent">
Science is all about what we can prove,
and I know I just proved that the 0 dimension exist, at least in logic,
because you can debate where the Atom goes,
but the only way you can explain it is using dimensions,
so what I can prove is that when it disappears it is simply transforming from one form into another,
so if it was in the 1 state and changed to the 0 states,
it was simply transforming from the 1 state into the 0 state,
and the same is true for the 2 state change,
so to make things easier,
we will call this the (<sup>-</sup>1) state,
because it is clear that the 0 state is in the center,
and the (<sup>+</sup>1) state is on one side, and the (<sup>-</sup>1) state is on the opposite side,
and that is how simple this Trinary Energy is,
we can also measure it as Electricity and measure it as Polarity,
so the (<sup>+</sup>1) and (<sup>-</sup>1) are relative to electrical charges,
we can put this into a constant mathematical equation of
<span class="text_code">(<sup>+</sup>1) + (<sup>-</sup>1) = 0</span>,
because when the (<sup>+</sup>1) is seen, the 0 and (<sup>-</sup>1) state are not,
and when its (<sup>-</sup>1) is seen,
the 0 and (<sup>+</sup>1) state can not be seen,
and of course, you can not see the 0 state,
so it is simple 3 state 3 Dimensional logic constant mathematics.
</p>
<p class="text_indent">
What happens to the Matter/Antimatter of an Atom in other dimensions is something that is hard to explain,
when an Atom's state changes to 0,
it does not destroy the
<a id="return_term_tritanium_2" class="a_link" href="terms.xhtml#term_tritanium">Tritanium</a>
the Trinary Engine is made of,
it simply moves into a dimension of space that we can not see,
yet nothing exists in the 0 dimensions,
because it acts like a floating ground,
and this seems confusing even to me,
and I have tried to make models that would explain this by wrapping space around an Atom,
but I can not wrap my mind around such a concept,
yet magic is not the answer,
something physical is taking place,
and we are not cutting the Atom into pieces then reassembling it,
in fact, the Matter/Antimatter of the Atom Neutrino is not changing at all,
other than which what it is facing which is inside or out,
it is only our limited way of understanding the 0,
1<sup>st</sup> and 2<sup>nd</sup> dimensions,
yet I must explain where it is going at the same time,
so how do I do this? The answer is that I can not,
and I could spend all day trying to trick you with words and spells,
because that is how Wizards explain things,
and why that kind of talk is known as Magic,
so instead I tell you that Neutrinos have the ability to navigate around null space,
so as the null space creates a hole in space,
the Neutrinos called Tritanium in the Trinary Engine,
or by the Elements name in the Periodic Table of Elements,
actually move through the 3 dimensions of space and back again,
this is based purely on observations and based on sound logic and reasoning,
and is not based on a Theory,
but facts that fit the description,
it is easy to see in Atom's, not so easy with Trinary Engines,
because they have Material around them,
but that is covered in the chapters to come,
for now, we are just talking about Neutrinos,
and how they have Matter and Antimatter on each side,
and how they move through dimensions,
it is just how they fold in layers of Space that is being removed,
till the Neutrino collapses completely when it has no dimensions of space to keep its shape,
then it unfolds back into normal space.
</p>
<p class="text_indent">
Think of Interdimensional Space as that space that is in the 0,
1<sup>st</sup> and 2<sup>nd</sup> Dimensions,
and that when Matter! (means Matter/Antimatter) of an Atom is moved between these dimensions,
our perception of what takes place is altered in a way that we will never truly understand it,
but having faith does not mean we give up trying,
it only means that we must acknowledge that there will always be things in the Universe that we can not explain,
because I understand how it happens, I just can not explain it in words when I think in images,
because words do not exist in these dimensions but images do,
and that is where my mind must go to see these dimensions,
so in my mind, these are just doorways to another place, in the (<sup>+</sup>1) state,
the Matter of the Atom is in my Space or 3<sup>rd</sup> Dimension,
so I can physically interact with it, but when it shifts to the (<sup>-</sup>1) state,
it is half-way in the door to this other dimension, thus making it harder to see,
and impossible to interact with, and in the 0 dimensions it is all the way into the door,
and the door is shut,
and I can not see where it is,
but I know it still exists because it will return in another state change.
To make things more confusing,
I state that only Energy can exist in Interdimensional space,
which is true, so where is the matter,
simply stating that in the (<sup>-</sup>1) state is transformed into an Antimatter state,
meaning it is Interdimensional,
because state changes and dimensions are confusing the way I try to explain them,
because the concept is complex,
because Trinary Energy is only energy it is not physical matter or antimatter like Neutrinos,
and that will never change,
the Neutrinos are just along for the ride,
and it is this ride that most people want to know about,
and I will have to explain it better than using terms like you must have faith that God exist,
because that is how the Bible explained it,
and Newton wanted to know more also,
so I will use a lot of words and spells to try to explain it.
</p>
<p class="text_indent">
If you think of Space as separate dimensions,
then it becomes clear that we can only interact with the 3<sup>rd</sup> dimension,
which is made up of the 0, 1<sup>st</sup> and 2<sup>nd</sup> dimensions,
so it adds up to 3 dimensions,
and that a state change of 1, is in the 3<sup>rd</sup> dimension in space,
and also in the Interdimensional space,
but the Neutrinos collapse around the space that is absent in that dimension,
as such we can not interact with this dimension nor can we see it,
but this is God's Dimension, or the Father,
if we view it the way the Bible explains it,
the 0 Dimension was also known as the Mother,
the place where all Life comes from,
because we can see the Father but must have faith that God exists,
because God is the Light without Darkness,
and we can only see the Darkness in the Light,
so we have two views of the same Atom at the same time,
one we can see and interact with, the other we can not,
and to confuse matters even more,
I state that in the 1<sup>st</sup> or 2<sup>nd</sup> dimension,
that the state changes still take place even though we do not see them do so,
and oddly enough, this explains how the Atom moves from 1 dimension into the next,
it is done in stages,
first, it is moved into the 0 states,
which is where all Energy comes from, so it is the point of existing,
so when Electricity is converted into a Photon,
it is born or transformed in the 0 dimension,
and when Electrons are allowed to flow in a Circuit,
they too must be in the 0 Dimension at that point in time that the Atom they occupy disappears,
so this Light or Matter State of being,
is based on where they are in Space,
and that truth is that they are only in our 3-dimensional space some time but not all the time,
and state (<sup>+</sup>1) is the only time we can interact with those Atoms,
and it is because they are not moving,
so state (<sup>+</sup>1) is both in the 3<sup>rd</sup> dimension and the 0,
1<sup>st</sup> and 2<sup>nd</sup> dimension at the same time,
so it stands to reason that in state (<sup>-</sup>1),
it appears to be in the 3<sup>rd</sup> dimension,
yet we can not interact with it, and in fact, we can not clearly see it,
because it is transitioning from the 3<sup>rd</sup> dimension into the 0,
via the 1<sup>st</sup> and 2<sup>nd</sup> dimension,
keep in mind it is always in all 3 dimensions:
0, 1<sup>st</sup> and 2<sup>nd</sup> when in state (<sup>+</sup>1),
but when it switches to state (<sup>-</sup>1),
it is only in the 0, 1<sup>st</sup> and 2<sup>nd</sup> dimension, and not the 3<sup>rd</sup>,
but we can still see the Atom,
so its like stepping into the door so to speak,
as the door starts to fold onto itself as its space is removed one step at a time,
and when it changes into the 0 dimension, it is only in the 0 dimensions,
but we can still not interact with it, nor can we see it,
because all its space is folded around it,
nor did we see it when it shifted into the 1<sup>st</sup> dimension,
it just got less visible,
and why I tend to ignore it because there are only 3 state changes and 4 dimensions,
but its where all the logic takes place,
because we do not see that logic in the 2<sup>nd</sup> dimension,
but we know that we can see the effects of the 0,
1<sup>st</sup> and 2<sup>nd</sup> dimensions,
even though they are not in the 3<sup>rd</sup> dimension, but we can not interact with them,
but the 0 and 1<sup>st</sup> dimension has no dimensions to see,
and I do not want to use explanations like this is another Universe,
because it is still in our Universe, just in another dimension of space,
and my options of explaining it, in other words, is not going to help to clear this issue up,
there are something in science we just have to accept at face value,
or you will never understand what is real and what is not, and the truth is real,
it is based on facts, and the facts will never change when it comes to explaining dimensions,
so maybe I could learn to explain it better using examples that make more sense,
but the images in my mind make sense to me,
only I can not put them into words,
nor would those images help to describe them to you because they are missing tracks of information like emotions and feelings,
because a picture is worth a 1,000 words,
but I will try anyway,
so I will seem to repeat myself a lot, when in fact,
I am just trying to find another way to say something in a way that you might understand,
knowing that people with a High IQ understood most if not all of it,
and are getting bored with my trying to explain it to people with a Normal IQ,
or those with IQ of less than 75,
and it is hard for me to understand how to relate to them,
I know a lot of them, so I know that they do not understand much,
and the worst part is they think they do,
which makes it harder to teach them,
because they do not want to admit they are stupid,
yet after I explain everything to them,
they just look at me and say it is just a Theory,
and they have their own,
then they ramble on about it,
so I know they did not understand a word of what I just said,
and do not want to admit they just do not have the desire to learn anything new,
and that is what Stupid means,
and why it takes me so many words to convey what I mean to everyone,
if everyone understood things at my level,
they would have just understood Tesla when he said everything is Light,
the fact that 95% of the People on this Planet believe in a Deity,
which is a Politically Correct term for Insanity,
as is the Belief in a Theory called General Relativity,
where the author states he does not believe a word of it,
and only believes in Newton as I do,
so I have my reason for believing most people are insane and Stupid,
statistically, it is a fact,
and arguing the point will not change it,
the Right to Freewill does not give you the Right to think insanely,
and the Belief in a Deity is defined in a Dictionary as insane,
as is the Belief in a Theory that the author told you was a lie,
so Reality Sucks for 95% of the people in this World,
and why its Normal to have a Low IQ,
but the Truth is more important than Stupid Peoples feelings,
the Belief in Religion has made them all insane,
and they defend that insanity as if they have a Right to,
and they do not, not Legally or Morally,
the Truth about God is something that everyone in the world should know,
and those that say this is Not the Truth,
are not doing so with Fact or Evidence,
they are doing so with Pure Emotions,
no logic or reasoning, just Emotions, got it,
so why should I listen, I put no stock in my own Emotions,
I do not care what people Feel,
Science is not about Feelings,
it is about Facts and the Truth about those Facts,
and Dimensions of Space are one of those facts that only Sheeple will argue about,
and it would not bother me if they used Facts instead of Emotions.
</p>
<p class="text_indent">
The 0 Dimension has a Force Field around it,
this is because normal space can not move through it,
so it must move around it,
and as it does, space warps around it,
although Atom's can not move into this space,
they can be warped around it in a way that does not physically interact with the Atom,
yet it makes it invisible,
this property of Neutrinos is well documented,
they find there way around Atom's.
When an Atom is in the (<sup>+</sup>1) State it has the 0 Dimension at its center of mass,
so it is stable,
when it changes to the (<sup>-</sup>1) State, that center of mass shifts,
causing the atom to pass around that area of space I call Null Space or the 0 Dimension,
when it moves all the way into this space,
all normal space is forced to flow around it,
that creates this Force Field,
so space flows around the Atom,
inside is the 0 Dimension,
it is where Energy Flows from,
so breaking this Force Field will unleash all its Energy,
but at the same time, it is a very hard Force Field to break,
and can only be done so on purpose,
so when the Neutrinos collapse in the Empty Space,
it is still there, it is just invisible to the naked eye,
and most technology available today.
</p>
<p class="text_indent">
Once you start to view Trinary Energy using Dimensions,
then all Energy will start to make more sense,
and that understanding starts at the Vertex of the Atom you are viewing,
where a vertex refers to a starting point,
and is normally denoted with a V,
like a pointer to mark start here,
so this point is a known location on a 3-dimensional map,
yet at the 0 dimensions nothing exist, not even the space it occupies,
because no matter how much you try,
you can never touch it, but it is hard to imagine from the viewpoint of the 3<sup>rd</sup> dimension,
because you view the Atom from a Microscope,
and if you had an instrument that had a tip that was the size of an Atom,
you could never touch the center of that Atom, regardless of what state it was in,
because one atom could never come into contact with another atom,
so the question is how do we view sub dimensional space knowing this?
This Information blurs the lines between what we believe,
which is that we can actually touch anything,
as I type on this keyboard,
I know that my Atoms are not actually coming into contact with other Atom's,
no matter how hard I hit the keys,
I can never change that,
not even Dynamite would start an Atomic Explosion using my fingers to force the atoms of the Keyboard to contact my fingers,
not even an Atomic Bomb could cause that to happen,
so that Force Field is very Strong,
and that is why I know for a fact that the Sun does not have any Compressed Gas in i
so Reality is based on Facts like this,
and it is why Dimensions are important to understand,
because they put limits on the Laws of Physics,
Atomic Explosions do not cause Atom's to come into contact with one another,
they only cause the Neutrinos to lose their bounds and collapse into the 0 Dimension,
briefly opening it up so that all its energy flows out of it at once,
causing a massive energy explosion,
as all the Atom's around those expanding Atom's tries to get out of the way,
you tap your finger in the Air and cause this same effect with all the air molecules around it,
most think about the Butterfly effect,
where others think they can use Atomic Weapons Safely,
and it is why I spend 95% of the book talking about Stupid People.
</p>
<p class="text_indent">
We know that every atom has its own power,
and we know that its power can only transform from one form into another,
we know we can combine an atom with other atoms known as a Molecule,
to form more complex compounds,
and we know that each of the Atoms are not physically touching each other,
and that each is in a constant state of flux,
changing from one state into another,
so we know as a whole we can see only some of its atoms at the same time,
but it is enough to give the illusion that objects at the macro level are solid,
such as Humans, are solid,
when in fact we know that we are 99.999% empty space,
so where does this power come from?
</p>
<p class="text_indent">
All energy flows from Ground to a higher potential,
and that Potential can be Positive, or Negative,
and we can alter that with electronic devices,
or material known as the Medium also known as a conductor,
but for the most part this true,
and gravity always flows towards ground,
when it is actually the energy that is flowing from Ground to a Higher Potential,
so what is Ground?
In outer space, you can release two grains of sand,
you might think they would just float there side by side,
but they always attract each other thus clump together,
so it is clear that each grain of sand has its own gravity,
so its origin must come from the 0 dimensions,
because it is the very center of the Universe of every atom in it,
and we know that every atom in it is also in constant flux, as it changes states,
so it must be these state change that gives the two grains of sand the inertia to move towards each other,
and the only explanation would be that the Dimensions exist on different plans,
so similar to a grid layout with an x, y, and z,
the 0 dimension is nowhere and everywhere in this space,
although it does not physically exist in the 3<sup>rd</sup> dimension,
it has to account for the 99.999% empty space in the Universe,
so it is clear that it must physically occupy 100% of the Universe,
but this math does not compute,
until you add up all the dimensions,
so the 1<sup>st</sup> dimension must also occupy 100% of the Universe as well as the 2<sup>nd</sup> dimension,
yet the Universe does not add up to 300% of space,
because as a whole it has to equal 100% of the 3<sup>rd</sup> dimension,
so it is clear that these dimensions are indeed 3 distinct layers of space,
so now you can see that if an Atom changes states from (<sup>+</sup>1) to (<sup>-</sup>1),
it also changes position,
and the only way this is possible is if the 0 states was floating,
because keep in mind that it has no dimension,
so it can not move, yet when we analyze the way atoms move,
we know that many state changes take place in the time period it took to move the atoms,
and the only way to account for this movement is,
is to account for the shift that happens between 0 and the (<sup>+</sup>1) or (<sup>-</sup>1) state changes,
no reason to show the 0 State since you will not see the Atom,
so I will show it in its (<sup>+</sup>1) State,
or Light-Matter State, as shown in
<a class="a_link" href="#illustration_2_02"> Illustration 2.02: Atom (<sup>+</sup>1) State</a>,
as a black dot where the path of the Atom crosses the Positive 1 axis.
</p>
<div class="a_illustration" id="illustration_2_02">
<span class="image_wrapper">
<img src="images/dimension-02.thumbnail.png" alt="Atom 1 State" class="the_image" /><br />
</span>
<span class="a_caption"> Illustration 2.02: Atom (<sup>+</sup>1) State <a class="a_link" href="#return_illustration_2_02"> <sub>[1]</sub> </a> </span>
<span id="dimension_02_chapter_2_01" class="no_show_pdf"><a class="a_link" href="bix/dimension_02_chapter_2_01.xhtml">Full Size</a></span>
</div>
<p class="text_indent">
Note that the Vertex of the 0 State would be on the x-axis,
so its (<sup>+</sup>1) state change moved it above the x-axis, this is called the offset,
this is a 3 Dimensional concept only,
because in reality, it is the center of mass of the atom,
because the 0 Dimension is a Floating Ground,
it can float between (<sup>+</sup>1) and the (<sup>-</sup>1) State.
We can not see Dimensions separately, but we can see the effects of it,
I show the offset from the 0 state to the (<sup>+</sup>1) state above the vertex to simplify the explanation,
the vertex represents the 0 Dimension, which is its point of origin,
even though you can not see it because space does not exist there,
therefor it is empty space,
but in reality, we have no idea where the Empty or Null Space is,
since we can not detect it,
but we can observe that when it changes states,
as shown in <a class="a_link" href="#illustration_2_03"> Illustration 2.03: Atom (<sup>-</sup>1) State</a>,
as a gray dot where its path crosses the Negative 1 axis.
</p>
<div id="illustration_2_03" class="a_illustration">
<span class="image_wrapper">
<img src="images/dimension-03.thumbnail.png" alt="Atom -1 State" class="the_image" /><br />
</span>
<span class="a_caption"> Illustration 2.03: Atom (<sup>-</sup>1) State <a class="a_link" href="#return_illustration_2_03"> <sub>[1]</sub> </a> </span>
<span id="dimension_03_chapter_2_01" class="no_show_pdf"><a class="a_link" href="bix/dimension_03_chapter_2_01.xhtml">Full Size</a></span>
</div>
<p class="text_indent">
We can see that the (<sup>-</sup>1) State is on the opposite side of the (<sup>+</sup>1) State and x-axis,
not necessarily in a 3D grid as shown here for simplicity,
because in reality, it can move in any direction,
and normally will travel in straight lines unless another force acts on it,
but all I want to illustrate here is that the x-axis is where the 0 dimension vertex would exist in theory,
and that the state change from (<sup>+</sup>1) to (<sup>-</sup>1) would cause the atom to appear to move,
even though it is moving, I say appear to move,
because it is not the atom that is moving in the 3<sup>rd</sup> dimension,
instead it is moving in the 1<sup>st</sup> and 2<sup>nd</sup> dimensions,
and it becomes obvious when you look at its location when it is in the 0 state,
then the point of reference is more defined, and simpler to understand,
the Energy is static in the 3<sup>rd</sup> dimension,
it only appears to move in the 3<sup>rd</sup> dimension,
when in reality its only moving in the 0, 1<sup>st</sup>
and 2<sup>nd</sup> dimension and the reason we reprieve this as movement in the 3<sup>rd</sup> dimension,
is because it is the only dimension we can see, so it is an optical illusion,
that would lead many people to believe that Light can be shot out of a flashlight,
instead of the fact that the photon is only moving through the dimensions of space, we can not see,
so it is being pulled instead of being pushed through space,
and the underlying vertex in the 0 dimension never moves,
only its reference point in 3-dimensional space moves, so when the state changes back to (<sup>+</sup>1),
the Atom or Photon is not in its same position in reference to 3-dimensional space,
it has moved on the path that the Light would travel and in a very predictable way,
and that is because, at the subatomic level, the vertex in the 0 states is in the 0 dimensions,
and that never moves, it is a floating ground, therefore its reference point changes,
thus causing the Atom or Photon to move with the state change.
</p>
<p class="text_indent">
I tend to repeat things differently to make sure everyone understands a concept,
so think about the Universe as a black sheet of paper that represents the entire universe in the 0 Dimension,
so it sits on a table and does not move, now add a blank white sheet to sit on top of it,
it represents the 1<sup>st</sup>, 2<sup>nd</sup>
and 3<sup>rd</sup> dimensions of the flashlight we will use for this example,
and it is moving at the speed of Light over the black sheet on a predetermined path,
when we turn on the flashlight a photon is created,
it is in the 0 dimension so it is on the black sheet and does not move,
mark it so you know where it might be,
now as the white sheet or flashlight moves through the universe on this path at the speed of Light,
we can see that the photon is being pulled across space as we see it because the black sheet does not move,
the white sheet does, and the photon or atom is located on the black sheet, and it did not move,
so it was the flashlight that moved,
and the Energy the Flashlight provided created a photon that remained static in the Universe,
and as the flashlight moved in relation to the Universe,
the photon appeared to move away from the flashlight,
but in reality, it was the flashlight that moved away from the photon,
that should be easy enough to understand,
but most people I told this to did not get it at all,
they try to relate it to things they think they understand,
as if it was like Driving a Car,
and the Light that comes out of their Headlights would have to be shut out like an atomic accelerator,
or the Car was going so fast it would run over the Light if it was being pulled from the headlights,
because the reality of the Speed of Light means nothing to them,
nor does logic or reasoning, it is all about Emotions for 95% of people that read this,
so keep this in mind if that is the way you view it,
but for that small percentage of people now have an open mind,
and are willing to try to understand this simple concept,
and start to understand Reality,
but this book really is about how Stupid Yew are for believing in Stupid Science,
because teachers have spent more time trying to convince me that light is being shot out of the Flashlight,
and that Einstein was right about General Relativity,
then I have to ask Right about what,
when Einstein himself, said it was a Lie because he only believed in Newton?
Then I failed that Grade but still made it through High School,
because I told them what they wanted to hear,
and not the Truth.
</p>
<p class="text_indent">
From what we now know about Trinary Energy,
it should be clear that it is capable of moving atoms,
this experiment is repeatable,
so we know it is the only way atoms can move on their own,
so I will now talk about it as if it is a fact in science,
because at this point it is,
so I can move on to other concepts,
which will require Intelligence on the part of the Light when it moves the Atom,
because if we throw millions of grains of sand into outer space,
we can note that the pattern it takes to clump together is never the same twice,
in fact, you can examine every grain of sand and determine that no two grains are identical,
as such the laws of physics,
which are governed by the Trinary Universe we will talk about in another chapter,
are defined at the subatomic level, so instead of thinking like a 3D person,
think like a 1D person,
think in terms of every atom in an object moving along a Vertice in a Matrix,
shifting from one dimension into the next as its states change,
making course corrections for every atom in its Matrix,
so that they appear to move as one,
but in reality, they are all moving independently of each other,
now the Universe looks totally different,
because someone 3D thinks in terms of seeing only one object,
most people think our Atoms are all connected together,
when in Reality states they never come into contact with each other,
and at the Atomic Level the Receptors we view atoms as having,
for example, Hydrogen has one,
but it does not allow another Atom to physically contact that Receptor,
it only makes an Attraction to it available,
this allows the Free Valance to allow Electrons to orbit around it,
they become the glue that binds the Atom's together,
these loose bounds are only held together by Electrons,
and it takes a lot of them to make up an object,
even though most people view a part of a larger object,
when in fact they are looking at maybe trillions of atoms that make up the object,
so they track it in a 3D grid,
with an x, y and z coordinates, but in the 1D vision, we see all the atoms,
and do not even care about the object as a whole,
because it is just a pattern, like a rock, mineral or animal,
that object has a reason, even if the object does not understand what that reason is,
the Universe knows because it put it there,
because we have to acknowledge that it took some Intelligence to change the states of each atom in order for it to move,
although most 3Ders will want to believe that chemistry has something to do with it,
but let us face it,
that was based on Alchemy, and that is stuff that Wizards do,
and the last Wizards were Tesla and Newton,
and Newton said that the Light controls the reaction,
and he was not talking about the Light we see with our eyes or Sun Shine,
but a Force which he called “God”,
acknowledging that God is all Light without Darkness, meant that the words the Father,
Son and Holy Ghost Spirit of Mother are 3 State Changes,
the Father is (<sup>+</sup>1) State Change,
the Son is another State Change and the Holy Ghost is invisible,
so it is the Mother, and is in the Mothers Womb,
which the Holy Ghost or Spirit referred to the Mother in terms of the relationship to the Father and Son,
my Cousin Isaac Newton pointed this out, so the Darkness is the 0 Dimension,
so it is the Mother,
which is a floating ground for the entire Trinary Universe,
but most Scientist already know this,
which is why they call it “God's Particle”,
if even as a Joke, on some level this Universe only makes sense if God is controlling it all.
</p>
<p class="text_indent">
When Science can acknowledge that the Light is “God”,
which is just what the Bible said it was,
and Trinity is the State Changes, then the Bible takes on a whole new meaning,
because this means they knew it all along,
yet the Science of Sir Isaac Newton has been replaced by that of another Ashkenazic Aspie named Albert Einstein,
so is this a Holy War on Science?
Science is about facts that are provable with repeatable experiments,
and the truth is that I proved this without even having to set up an experiment,
because every experiment you look at the Subatomic Level, all look the same,
just like I described it,
the Father is the brightest state change, it is the (<sup>+</sup>1) State change,
the Son does what the Father tells it to do,
which is go see your Mother,
so the Son is the (<sup>-</sup>1) State change,
and it can change the direction the Atom moves,
and the word Atom is just like Adam,
except it refers to the Atom in Adam,
and Eve is also short for Event, or on the Eve of an Event,
so these words are just Spells,
so the Holy Ghost is when the Atom disappears into the Mother,
and when the Father comes back it can be in a different location,
so all matter must go through the Father,
so it too can move, in fact, it can move so fast that we can not see it,
which is why you see the 3D effects as described in:
<a id="return_illustration_2_02" class="a_link" href="#illustration_2_02"> Illustration 2.02: Atom (<sup>+</sup>1) State <sub>[1]</sub> </a>
and
<a id="return_illustration_2_03" class="a_link" href="#illustration_2_03"> Illustration 2.03: Atom (<sup>-</sup>1) State <sub>[1]</sub> </a>,
so it is clear that these state changes correlate to the Atom's movement,
in fact, it can not move without them since the atom would burn up due to friction,
so now I must answer the question of how the Trinary Energy knows what direction my body moves when I think it,
and the answer is in The
<a id="return_term_galattice_2" class="a_link" href="terms.xhtml#term_galattice">Galattice</a> in another chapter,
but the short answer is that the Galattice is the Memory location for all thoughts, and it is not in the brain,
nor in the body, it is in Space itself, so every thought you have is actually stored in the Galattice,
which is just the Galaxies Lattice, which is a
<a id="return_term_vertice_matrix" class="a_link" href="terms.xhtml#term_vertice_matrix">Vertice Matrix</a>,
which is just empty space, which stores every thought that every living thing ever had,
and although that concept is too vast to prove in writing,
it can be logically reasoned that the atom had to know which way to move, way before you thought it,
at least in real-time,
so it can not guess, and all atoms have to move together,
so its Vertice Matrix is very dense,
and every cell in your body is composed of many atoms,
yet the cell behaves like it is all one object,
instead of a collection of atoms, so it is clear that this relationship can not be dismissed,
because it is what is really happening no matter how you explain it,
so it is all a matter of putting this basic concept of Dimensions into the Trinary Energy,
so at the bases of it,
you understand that what I am referring to is reality,
and not some concept that can not be proven in science,
because the more you research this and do experiments,
the more you will believe it is the truth,
and the fact is that a lot of people have studied this for many years,
so just ask them, and they will tell you this is the truth,
because that is what it will take to convince most people.