-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter.4.11.xhtml
executable file
·5284 lines (5135 loc) · 267 KB
/
chapter.4.11.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 4.11: Trinary Math History</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 4.11: Trinary Math History" />
<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 4.11:<br />Trinary Math History</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_4_11 ************************************* -->
<div class="page_content">
<h3 id="chapter_04_11" class="a_header">Chapter 4.11:<br />Trinary Math History</h3>
<p class="text_top">
The History of Trinary Math is as old as IAM,
the name has changed to make it Science instead of Religion,
since the Origins go back to Sir Isaac Newton and his Trinity Math,
and actually that came from the Bible,
so the origins of Trinity Math date back even farther than that.
Changing the name from Trinity to Trinary changed the way you should view this Type of Math,
Trinary means 3 State Changes,
Trinity implied it,
but due to the Teaching of Religion,
Sir Isaac Newton could not stand the teaching of Trinity as a Deity,
so to keep peace in the future I renamed it to avoid any confusion,
and for that same reason, I call God: Trinary Energy or the Light Wizzard,
I can not change Religion,
so I have to change the Words and Spells they use to distance my Teaching from theirs.
When talking about the Trinary Math History,
I must include all of those who contributed to it,
and that includes the Bible,
Johannes Kepler, Sir Isaac Newton, Benjamin Franklin, Nikola Tesla, for starts,
and most people know that these men were all in the Spectrum of Autism known as Aspies,
these are High Functioning Autistic Minds,
so keep in mind that being Autistic means you are not normal,
and normal people will never understand what that means,
so I will try to explain some of the details of not being Normal,
and what it means to me,
and you can decide what it means to you,
but to these men,
it was the way they lead their life,
in the pursuit of this one Math Equation,
the one that fully explains the Universe,
and that is what Trinary Math is all about,
it solves this equation these Wizards spent their lifetime working on,
so understanding a little about these men is not asking much for a History Lesson,
you should understand why Newton taught math to empty classrooms,
it was not only because he did not care who came,
he knew that those that came,
were not intelligent enough to understand what he was teaching,
and this is why I wrote this book to Sheep like yew,
because just like Newton,
I think in terms of Sheeple and not People,
because only Sheep would follow a Shepard know as the Lord,
so the Bible only wrote to Sheep,
so I must do the same,
since this Book is about the Bible,
and this is the History of how this came to be.
</p>
<p class="text_indent">
Math has never been a subject I had much interest in,
not in school anyway,
the Math they taught me was a Joke,
having to show my work was even a bigger Joke,
but that Joke is on me since I only see the Answer,
and not the work it took to get that answer,
and nothing has changed over the years;
I have OCD and think about Math Problems all the time,
and it is all I can think about besides sex,
because I am also a Man,
and I learned the Math of Sir Isaac Newton and Nikola Tesla on my own,
and I should have listened to them and never allowed Sexual thoughts to run my Life,
Newton wrote that he died a virgin,
Tesla said pretty much the same thing only to more of an extreme measure,
and not from the lack of some woman trying,
and oddly enough,
this applied to both of them,
they only wanted a mate that could understand their Concepts about Science,
so that they could share that with them,
but all they found were Men with a drive for their type of Science and Math,
and never wanted to have Sex with Men,
so they never had sex with themselves,
and why they lived alone much of their Life,
as for me, I never found anyone that even understood my Science,
and no one understands my Math,
but still, I had plenty of problems finding a mate that could understand me enough to stand me,
and I think about sex as much as I think about Math,
and from what Newton and Tesla wrote,
they did the same,
only I did not like to live alone,
and I do not care if anyone understands my Science or my Math,
and why I have been married most of my adult life.
</p>
<p class="text_indent">
What others tried to teach me just confused me,
I learned very little in School as a result,
and I know it was a complete waste of time,
solving equations that have no problems did not make any sense to me,
so getting through all the Math that was required for my Ph.D. was all I needed to know,
but I had to show my work,
and that was not even possible for me most of the time,
so I know enough about Math, and how to write Mathematical formulas,
but I was only interested in one, the one my Cousin Isaac Newton was stuck on:
<span class="text_code">(<sup>+</sup>1) + (<sup>–</sup>1) = 0</span> ;
I mean why else would he say it is a constant,
when he wrote it like a basic beginner's math formula,
as if this is the first thing that anyone taught him about math,
which is that if you take any number and add it to an opposite signed number of the same size,
it will always equal 0, and that was the answer,
the Universe really is just that simple,
for every action, there is an equal and Opposite Reaction,
so this was the Math behind that concept.
For every Atom, we have a physical property we call Matter,
and it always has a Negative or Antimatter Atom that will counteract it,
thus if you add Matter to Antimatter the two cancel each other out and equal 0,
so the ratio of Matter to Antimatter is always 1 to 1, it is a constant,
the same is true for Light,
a Photon is considered Positive by default so adding the word Positive does not change that,
but a Negative Photon is something that most people do not talk about,
but they exist, and since they do not exist in the same time frame,
meaning that if we turned on a device that would emit one Photon,
you would know that following it through a cycle will start off in the 0 Dimension,
this is when the Electron's frequency is raised to the desired frequency to become Light,
and then the Electron disappears from view, then it illuminates in the same spot,
and then turns a darker color and moves forward, so it has 3 State changes in just one Photon,
so it has the 1 State when it is at its Brightest,
and (<sup>–</sup>1) State when it is at its Darkest,
proving why the Negative one is Darker,
it has less Dimension of Space in it,
so it is White and Black or Light and Dark,
and it is Matter and Antimatter since it has a little mass,
and it is also the Father, Son, and Mother also known as the Holy Ghost,
and the 0 State represents it when it is invisible, and the same is true for the Atom,
so when we Add (<sup>+</sup>1) to (<sup>–</sup>1) it equals 0,
it is just the order that confuses some people,
it is the which witch came first problem, the Chicken or the Egg?
In this case, you have Matter,
then Antimatter,
with Null Space in between them,
because the two can never Physically Touch,
because the two canceled each other out, it is not Math,
it is a Constant,
because this never changes,
and I can find many ways to write it:
(<sup>+</sup>1) | (<sup>–</sup>1) | 0 (“|” means or),
which means the same thing when applied to the same problem, only with Logic,
and in this case the problem is Reality, because everything we interact with has Atom's or is Light,
Light means Energy, at lower frequencies its called Electricity,
or Electromagnetic Force,
and has a property where its Frequency times its Wavelength is equal to the Speed of Light,
so the only Math I need to understand is this simple concept:
<span class="text_code">(<sup>+</sup>1) + (<sup>–</sup>1) = 0</span> .
</p>
<p class="text_indent">
String Theory started off as an idea that you could model the Universe around the way a String would behave in Reality,
so if we take a short segment of String and imagine that it is in the shape of a Sine Wave,
we can visualize the start of a Concept that might lead us to an answer in Math,
because we can do all kinds of Calculus to Strings,
we can bend it to form complex shapes like:
Circles, Squares, Triangles,
and just about any shape, you can Dream up in fact:
as long as you can do it with one segment of String,
if you have to add other segments,
and they do not touch, then you have a paradox,
and that can not exist in Reality,
the concept is that all equations must explain a single concept that is somehow related,
but we can not compare apples to oranges,
so String theory has a basic foundation for explaining the Universe,
so to test this concept,
we can write many math equations that explain how this String Segment can form Electrical Sine Waves:
whose frequency times its wavelength equals the Speed of Light,
and we know that this string is moving through 3 dimensions that have width,
height and depth and 1 dimension that has no dimensions,
or the 0 Dimension,
and we know it has to exist,
because every Atom in the Universe disappears during one of its 3 State changes,
so in terms of describing the Universe, we live in goes,
String Theory is a good start if you keep the concepts simple and real,
meaning no Theories,
only what you can prove exists with empirical evidence to prove it;
and it must obey one rule:
<span class="text_code">(<sup>+</sup>1) + (<sup>–</sup>1) = 0</span>;
keep in mind that in complex waveforms,
these are Helix shaped in Nature,
as is the Movement of the World we live in,
and it is built into our DNA,
and this explains why,
just like the number 666 is encoded into our DNA,
all because this Planet is traveling at 66,666.666 miles an hour,
thus it has a Frequency of 6.666 Hz at its core, closer to 8 at its surface,
so this Frequency Resonate within us,
it is the Energy that gives us Life,
it is the Light that Created our SOUL,
that Spark of Light that Created our Bodies,
so if you use Trinary String Math, not to be confused with String Theory,
you could learn all the Shapes that Kepler had in his Mind,
and that was the Frequency of God,
so like the Dog,
it is just a Spell,
and now I put the Spell of Trinary String Math on yew,
and now your Mind.
</p>
<p class="text_indent">
So if you want 1 Mathematical formula to Rule them all,
its <span class="text_code">(<sup>+</sup>1) + (<sup>–</sup>1) = 0</span>;
and if you add this to any Physics Simulation Software and track its State Change for every Vertice,
then you have one formula that can simulate all the things in the Universe,
and that formula does Rule them all,
because it is the basic Rules
or Laws of Physics that most be applied to these Physics Simulators to ensure they do not allow Paradox's,
so the concepts of the Dynamic Universe is to have one paradox after another,
so none of its Concepts or Math can be used in the Trinary Universe because we have no Paradoxes here,
and you can not mix the Formulas from the Newtonian or Trinary Universe in the Dynamic Universe,
because they are both based on the Light of God,
and the Dynamic Universe is Godless,
so the Math of the Trinary Universe has one Formula to Rule them all,
and it can be proven to be correct with empirical evidence,
only the facts matter in Science,
because regardless of what you believe God is,
the Light of God is a known phenomenon,
and follows predictable patterns that can be identified and documented,
so the concept of God is based on Science and not Religion,
and do not allow Science to become a Religion,
keep it real,
Science Fiction is an important field of study for the Entertainment Industry,
but it should not be allowed to let unproven Theories to become Mainstream Science,
so (<sup>+</sup>1) + (<sup>–</sup>1) always equals 0,
and the rest of the Math works in every simulation.
Most Mathematicians will say this is cheating,
since all it does is sign changes, and that is true,
so is the fact that the Sign Changes mean Everything you need to know to communicate with the Light,
Electronics proves that,
so it is all about a change in sign,
and binary or trinary can represent changes in sign,
on and off, or true or false,
because in the long run, that is what creates the changes in the sign,
so keep in mind that all Atoms have 3 types so it is a Trinary Atom,
so based on Logic and Math.
To Rule means to cause Change,
in terms of Trinary Logic its True, False or Unknown,
and there is nothing Fuzzy about Unknown,
it is as much of an absolute as True of False is,
the unknown is an Invisible State,
so Logically it is Unknown,
since we can not see it,
so it is only how we deal with the logic does this matter,
so this simple Math that describes the Relationship of all Atoms,
only describing them in Terms of Polarity, it is (<sup>+</sup>1) or (<sup>–</sup>1),
and 0 is this Unknown,
because in terms of looking at Atom's under an Electron Microscope,
you would believe the Unknown always comes from the Invisible State,
you can not predict what state it will come back in,
which is Positive or Negative,
but a 0, or Ground, we know its Neutral,
it is the State it will be when coming out of this State that is Unknown,
and that is what Unknown is all about,
so this is what the Trinary Universe is all about,
we might see a nice AC signal,
yet, get a strong enough Magnet and it will change that Unknown,
so the AC Pattern can not be Predictable when Magnets can Influence them,
so you have to add that Magnetic State Changes into the Math to translate what it is doing,
making people understand what this Trinary Math is all about,
because if I add a Negative Number to a Positive Number,
it is Subtraction,
meaning it is a unit of exchange,
Action, Reaction,
if you give me a Negative 1 to add to a Positive 1,
the answer would be 0, so it must switch to the 0 states to make this change,
and if the number is a Positive 1,
and we add it to a Negative 1,
the answer would be 0 again, so it must switch to the 0 state to make this change,
so this Math is 3 Dimensional or 3D Math.
</p>
<p class="text_indent">
Keep in mind Trinary Engines are running in a Helix shape,
and a Trinary Engine is the core of the: Galaxy, Sun, Planet, and Moon,
and everything we know about Electronics tells us that this is the truth.
The Sine Wave Pattern is driven by this Trinary Math,
and you can add it to almost any equation,
which is really cool for Mathematicians,
because they know it does not alter the math,
it just allows you to look at Atom's in 3D,
and you have a formula that can be used to drive this Model,
that can apply it to a Physics Generator or Simulator,
because it has an x, y, and z,
and we know that Math describes an endless loop or infinity,
humans visualize how atoms move through space,
so imagine this in your mind, or using your hands,
if we put our fingers together with our palms facing each other,
keeping our index finger and thumbs touching,
move your palms away from you, so your fingers form a Triangle,
now focus on the center of the Triangle,
and touch all same fingers on opposite palms of your hands together,
such that we can now form a Sphere,
with your thumbs pointing out simulating down (thumbs do not bend down) and fingers pointing Up,
we can now see the shape of a Crystal Ball,
and that is what Wizards look into when explaining Magic,
now the Fingers are pointing up to Heaven and that is Positive,
and is also South, but remember that its also called Magnetic North,
and not what most people call it,
so the Thumbs down (out) is Negative or North using the Right-Hand Rule,
and South is Positive using the Left-Hand Rule,
keeping in mind that North is normally what People call South,
because it is Magnetic South,
as Proof the Negative or North end of a Magnet Points South to the Magnetic North Pole,
normally just called the North Pole.
I have to point this out, sometimes when I say South, I mean the South end of the Magnet.
</p>
<p class="text_indent">
So imagine that its x-axis is in the center of your hand,
and runs from the middle of your nose through the center of your hand,
as if Light came out of your Nose, it would travel through the x-axis,
this is the easiest way to remember this information by the way,
so on my Right, I have Negative Energy,
so on my Left, I have Positive Energy,
so Imagine that when this Light is in a Negative 1 State,
its dimmer, so Right means you are Dimmer,
so people who think they are Right are Dimmer,
just a little rhyme I used to remember the Rules,
so the Brighter ones use their Left,
and I am Left-Handed, who had to learn to Write Right-Handed and that was not fun,
I can still remember Sister Mary slapping my left hand,
so I remember that was the Positive Energy,
so if I have a small Crystal Ball I make with my hands,
and I imagine that it looks like a Photon,
or Electron, running from my Nose through the Crystal Ball,
I can imagine as the Energy appears for the First time it is in the Right-Hand,
at the tip of all the Fingers,
so it is Negative and is moving downward till it crosses the 0 Axis,
where the thumbs touch,
so as it passes from the index finger down to the Thumb of the Right-Hand,
it is always Negative,
so it is in an Antimatter State,
always driving Down towards the North or the Magnetic South Pole,
down to Hell where our Sons take on the Sins of our Fathers,
who we are about to meet in Heaven,
as it moves like a Corkscrew, it will hit the thumb in the Left-Hand,
after passing through the x-axis or 0 dimension,
and it is Positive Energy, so the Matter Side of the Neutrino is showing,
and this is the Positive 1 State,
or the Father,
so it is climbing to Heaven because no one gets to Heaven unless they go through the Father,
so the Son must go through the Father to get to Heaven,
so the Son must go through the Mother to grow up to be the Father,
and they are just two types of Energy, Matter and Antimatter,
whereas the Mother is Neutral,
Light and Darkness.
There are 3 types of Light,
and why I call it Trinary Light,
so the reason I think that Trinary Math is so important,
is because it is the Math Equation for God,
the Positive 1 is the Light, it is the Matter,
the Negative 1 is the Darkness, it is the Antimatter,
and 0 is this Unknown place where all decisions are made,
so you know this is the Mother,
because no one messes with the Nature of Mother,
and this equation: <span class="text_code">(<sup>+</sup>1) + (<sup>–</sup>1) = 0</span>,
is actually shorthand notation for a Function of x:
<span class="text_math"><sup>+</sup><sub>–</sub> f (x)</span>,
with a plus and minus sign change of x on every rotation,
so it is a Trinary Engine that makes the World go around,
because it is the same Math that the Trinary Universe uses for everything it does,
so no matter whatever math you need to calculate the Orbit of Planets,
Newton and Tesla both just optimized it out of their Equations,
and adding it back does not change it,
because they are a default behavior for the Trinary Universe,
so all Energy will follow this simple pattern,
and explains the more complex waveforms.
So once you fully understand how simple Trinary Math is:
<span class="text_code">(<sup>+</sup>1) + (<sup>–</sup>1) = 0</span>,
you will understand how simple the Trinary Universe is to understand.
</p>
<p class="text_indent">
Vertice Matrix Mathematics is based on the vertex of Subatomic particles,
such that the vertex of an Atom: Proton, Neuron or Electron;
is always at the center or vertex of that object in question,
so whenever you use Vertice Matrix Math, its object-based Math,
based on a Matrix that describes the physical properties of the object in question,
but its data is based on each element in the Matrix,
so to collect data for the Matrix, we must define all the data and it is data points in the Matrix,
and this is all based on the Location of Atom's,
it describes the Atomic Structure of the Object,
at the Subatomic Level of Trinary Science,
so it is also used to describe Dimensions,
and the Polarity of Electricity.
</p>
<p class="text_indent">
A Math Table is an example of a Number Matrix as seen in
<a class="a_link" href="#table_4_09"> Table 4.09: Math Table: Number Matrix</a>,
the way the Matrix works is well-known,
each row and column is labeled, and to find the answer,
all you have to do is cross-reference the row and column,
for example: to find what 6 x 6 equals,
all we have to do is go down to the row labeled 6,
and then go over to the column labeled 6,
and we find the answer 36,
Vertice Matrix math is similar, only the data has three dimensions instead of two,
so it is all a matter of using simple math to find a complex question, as such,
the resolution is all based on the graduations of details,
for example to add more resolution for this 2-dimensional table,
we would have to add more rows and columns and label them something like 1.1, 1.2 and so on.
The concept is simple, we can plot out data and use simple Matrix math to find the answer,
and this may seem too simple of a concept to even talk about,
but it is simple solutions that make it worth talking about,
simple is easy to use and understand.</p>
<div class="a_table" id="table_4_09">
<table class="normal">
<tbody>
<tr>
<th class="normal_center">  0 </th>
<th class="normal_center">  1 </th>
<th class="normal_center">  2 </th>
<th class="normal_center">  3 </th>
<th class="normal_center">  4 </th>
<th class="normal_center">  5 </th>
<th class="normal_center">  6 </th>
<th class="normal_center">  7 </th>
<th class="normal_center">  8 </th>
<th class="normal_center">  9 </th>
<th class="normal_center">  10 </th>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  1 </td>
<td class="normal_center">  1 </td>
<td class="normal_center">  2 </td>
<td class="normal_center">  3 </td>
<td class="normal_center">  4 </td>
<td class="normal_center">  5 </td>
<td class="normal_center">  6 </td>
<td class="normal_center">  7 </td>
<td class="normal_center">  8 </td>
<td class="normal_center">  9 </td>
<td class="normal_center">  10 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  2 </td>
<td class="normal_center">  2 </td>
<td class="normal_center">  4 </td>
<td class="normal_center">  6 </td>
<td class="normal_center">  8 </td>
<td class="normal_center"> 10 </td>
<td class="normal_center"> 12 </td>
<td class="normal_center"> 14 </td>
<td class="normal_center"> 16 </td>
<td class="normal_center"> 18 </td>
<td class="normal_center">  20 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  3 </td>
<td class="normal_center">  3 </td>
<td class="normal_center">  6 </td>
<td class="normal_center">  9 </td>
<td class="normal_center"> 12 </td>
<td class="normal_center"> 15 </td>
<td class="normal_center"> 18 </td>
<td class="normal_center"> 21 </td>
<td class="normal_center"> 24 </td>
<td class="normal_center"> 27 </td>
<td class="normal_center">  30 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  4 </td>
<td class="normal_center">  4 </td>
<td class="normal_center">  8 </td>
<td class="normal_center"> 12 </td>
<td class="normal_center"> 16 </td>
<td class="normal_center"> 20 </td>
<td class="normal_center"> 24 </td>
<td class="normal_center"> 28 </td>
<td class="normal_center"> 32 </td>
<td class="normal_center"> 36 </td>
<td class="normal_center">  40 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  5 </td>
<td class="normal_center">  5 </td>
<td class="normal_center"> 10 </td>
<td class="normal_center"> 15 </td>
<td class="normal_center"> 20 </td>
<td class="normal_center"> 25 </td>
<td class="normal_center"> 30 </td>
<td class="normal_center"> 35 </td>
<td class="normal_center"> 40 </td>
<td class="normal_center"> 45 </td>
<td class="normal_center">  50 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  6 </td>
<td class="normal_center">  6 </td>
<td class="normal_center"> 12 </td>
<td class="normal_center"> 18 </td>
<td class="normal_center"> 24 </td>
<td class="normal_center"> 30 </td>
<td class="normal_center"> 36 </td>
<td class="normal_center"> 42 </td>
<td class="normal_center"> 48 </td>
<td class="normal_center"> 54 </td>
<td class="normal_center">  60 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  7 </td>
<td class="normal_center">  7 </td>
<td class="normal_center"> 14 </td>
<td class="normal_center"> 21 </td>
<td class="normal_center"> 28 </td>
<td class="normal_center"> 35 </td>
<td class="normal_center"> 42 </td>
<td class="normal_center"> 49 </td>
<td class="normal_center"> 56 </td>
<td class="normal_center"> 63 </td>
<td class="normal_center">  70 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  8 </td>
<td class="normal_center">  8 </td>
<td class="normal_center"> 16 </td>
<td class="normal_center"> 24 </td>
<td class="normal_center"> 32 </td>
<td class="normal_center"> 40 </td>
<td class="normal_center"> 48 </td>
<td class="normal_center"> 56 </td>
<td class="normal_center"> 64 </td>
<td class="normal_center"> 72 </td>
<td class="normal_center">  80 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  9 </td>
<td class="normal_center">  9 </td>
<td class="normal_center"> 18 </td>
<td class="normal_center"> 27 </td>
<td class="normal_center"> 36 </td>
<td class="normal_center"> 45 </td>
<td class="normal_center"> 54 </td>
<td class="normal_center"> 63 </td>
<td class="normal_center"> 72 </td>
<td class="normal_center"> 81 </td>
<td class="normal_center">  90 </td>
</tr>
<tr>
<td class="normal_center" style="background: #dcdcdc">  10 </td>
<td class="normal_center"> 10 </td>
<td class="normal_center"> 20 </td>
<td class="normal_center"> 30 </td>
<td class="normal_center"> 40 </td>
<td class="normal_center"> 50 </td>
<td class="normal_center"> 60 </td>
<td class="normal_center"> 70 </td>
<td class="normal_center"> 80 </td>
<td class="normal_center"> 90 </td>
<td class="normal_center"> 100 </td>
</tr>
</tbody>
</table>
<span class="a_caption"> Table 4.09: Math Table: Number Matrix </span>
</div>
<p class="text_indent">
A more complex Vertice Matrix would have 3 dimensions,
so it would take the shape of a cube, and each cell would contain the location of an object,
such as an Atom, or one of its 3 components like Proton, Neutron or Electron,
depending on the resolution of the Matrix,
this gives us a static model of the physical location of such objects at a specific time,
in order for this model to be useful, it would have to be interactive,
so a computer program would interact with it, like a computer simulation,
so my point in talking about such mathematical models is that this is the way I view all Mathematical problems,
in my mind, I create the Matrix and then I can fill it with the data,
and simply do a cross lookup for the answer,
this simplifies the math that I am required to learn,
and it is math that is easy to teach others, and my point is that,
its math that is used in real life more than any other type of Math when it comes to charts,
making spreadsheets very popular,
and an HTML Table works for me,
and also it is what Sir Isaac Newton and Nikola Tesla used,
and why I use them.
</p>
<p class="text_indent">
When it comes to math for the Universe,
a Matrix represents the Space of the Universe,
so it makes sense to me to use Matrix math to explain the movement of all objects in the Universe,
some people tell me that it over complicates the math,
while others tell me it oversimplifies it,
and it is why I chose not to deal with Math,
other than to talk about how I calculate concepts in my mind.
</p>
<p class="text_indent">
The number 3 is Trinary Math and is best viewed as a Pyramid from one side,
but it has 4:<br />
such that 4 x 3 = 12, <br />
and 1 + 2 = 3, <br />
it is the way Math works when you add numbers down;
this is called Numerology.
You can also subtract them by adding Negatives together, like:<br />
(<sup>–</sup>1) + (<sup>–</sup> 2) = <sup>–</sup>3,<br />
so a Pyramid equals <sup>+</sup><sub>–</sub> 3;
plus the bottom which is a Square...
This was Kepler's Math from the Harmony of the World (Solar System):
so it is using 3 Shapes:
a Sphere, Square, and Pyramid:
and the Square fits inside the Sphere,
and the Pyramid fits inside the Square,
as such the Base of the Pyramid is Square,
and the space inside it is Spherical,
and these 3 shapes are bound as 1 object that represents Harmony:
as such: using Kepler's Model: <br />
the Number: 3 is 1 Unit, <br />
the Number: 6 is 2 Units, <br />
the Number: 9 is 3 Unites:
as such we have the Numbers 3, 6, 9. <br />
So it is easy to see the Relationship,
and how this Math works.
If one thought is 1, <br />
and two thoughts is 2, <br />
and three thoughts is 3, <br />
then how many thoughts is 666? <br />
6 + 6 + 6 = 18,<br />
1 + 8 = 9,<br />
so 6 and 9 are just upside down:<br />
and 3 + 3 + 3 = 9;<br />
so it is a set of 3 Numbers in sequence: 3, 6, 9;<br />
as such: 3 + 6 + 9 = 18, and 1 + 8 = 9, so it is an infinite loop,<br />
so if 666 is 999 upside down, and that adds down to 27,
witch is 9, and 3 x 9 = 27,
witch I did a video on that Number 27 in His-Story:
<a id="c_4_1_https_blank_target_link" href="https://youtu.be/FL0G4z9Yhbw" class="https_blank_target_link"> https://youtu.be/FL0G4z9Yhbw </a>
so you know what that Number is all about: 3 x 9 = 27, so this is a special case for confusion,<br />
yet 2 + 7 = 9, such that it equals 9 just like 666,
such that its sequence is 333: so this math always adds up or down,
and the Number 42 reduces to 6,
which in Hex the number 42 = 66 in decimal,
witch is the Hitchhiker's Guide to the Galaxy answer to everything,
and Everything is Light:
</p>
<p class="text_indent">
So check the sequence to the left and to the right:
to find the answer to the Trinary Universe: and you get 369,
and that is as far as 3 goes, infinite regression proves the numbers always reduce back down to these 3 numbers,
and then repeat, so it is a closed Loop,
so that is as far as Trinary Math goes and that is a long way to understanding the Trinary Universe:
it only answers how the Universe works in Harmony,
and it is Kepler's Math:
and it proves there are Patterns in the White Noise,
because that is what Kepler called God.
I should also point out that normal humans can see over 66 miles,
which is as far as you can see over the horizon of the Earth at 2,999 feet
(Math Proof: square root of 2999 * 1.22 [curvature of Earth]),
and 166 miles at 18,666 feet,
such that: 166 adds down to 13,
Historically this number is known for the 13 Lost Tribes after the downfall of Egypt,
and it is because of their Teaching of the God who is All Light without Darkness,
and the number 4 means that it is the Base of the Pyramid,
and 1 + 8 = 9, 666 = 18 ~ = 9, and 9 + 9 = 18 ~ = 9: so this is not a coincidence,
some Humans try to tell me that Numerology is BS,
but Numbers do not lie, and this is only Math,
and Numerology is only about the Rules and not the Religion,
there are a lot of books written about it and those might be BS,
because I know where this History came from,
so the only part of Numerology I use is adding numbers together in Patterns,
then seeing if those patterns have patterns,
and if they do: it is not a coincidence,
it is a scientific fact,
and why some animals like Elephants can only see 66 feet,
because the Number 66 is built into the Math of our DNA,
because 6 + 6 = 12, 1 + 2 = 3,
so it is a Trinary Number,
and all numbers have their own story,
and the number 369 has a story all of its own,
because these are 3 Trinary Numbers: 333, or 3, 3, 3,
or even 3 + 3 + 3, or 6 + 3 or as simple as 9,
so do not read into Numbers,
sometimes they are just numbers that add up that way,
while other times they are the Phase of Energy being used,
but to dismiss it as insignificant or say it is just a coincidence is not Scientific,
and this is all about the Science of Trinary Math.
</p>
<p class="text_indent">
To fully understand Trinary Math,
you must understand what it Represents,
and that is the Nature of the Atom,
and throughout History Mainstream Science is always changing,
not so much the Universe it never changes,
the Laws of Physics are Absolute and never change,
so its Science that changes that is wrong,
so let us only look at Science that never changes,
the Bible, for example, it states God is all Light without Darkness,
and my Cousin Isaac Newton said that Light is White Noise,
so it is Massless Light, meaning it has no Neutrinos to give it Mass,
so Mass and Neutrinos mean the same thing,
so when I talk about Mass,
I am talking about the Amount of Neutrinos in an Atom,
and Darkness is the Rainbow of Colors we can see with our eyes,
and that is made up of Photons,
and those are made up of Electrons,
so we are talking about Light and Atom's,
because you can not see Light unless it is inside of an Atom's,
and then it is because of the Electromagnetic Force it takes to keep the Neutrinos bound to a Particle.
The Trinary Math of Energy is based on Atom's,
and there are 3 types of Atom's: Proton, Neutron, and Electron,
and the Atom is made up of Neutrinos and Light,
and there is a type of Neutrino for every Element in the Periodic Table for a total of 136 Elements,
and 136 adds down to 1,
so you must add in the one Non-Element and you get 2, and then add in the Electron to get 3,
and there are 3 types of Light:
Light without Darkness, Darkness without Light,
and the Massless White Noise Light,
and it should be obvious that all of these combinations have different characteristics:
yet they all come in sets of 3, and why every this in multiples of 3: 3, 6, 9.
The Center of the Atom is called the 0 Dimension,
and known as its Vertex or Vertice,
and all Energy flows from here,
and never to here...
</p>
<p class="text_indent">
Splitting an Atom will prove that point,
and if Black Holes were possible, that is where you would find them,
and why only Fools talk about Black Holes,
so inside an Atom is a huge Energy source known as Light,
it binds the Neutrinos with this Electromagnetic Force Field,
using a specific Frequency, Wavelength, and Waveform Pattern,
this creates 3 Force Fields on the inside and 3 on outside of the Atom,
you have a Positive, Negative and Neutral Force Field,
due to Electromagnetic Flux Merging it is hard to distinguish them,
so in the middle its Neutral, Negative and then Positive,
or Positive than Negative,
so it is Alternating Current,
and on the outside, it is the same way.
When the Atom is in its Solid State,
this shifts to Negative then Neutral then Positive,
when in the Semisolid State,
this shifts to Positive then Neutral then Negative,
and it is Unknown in the 0 dimensions when its invisible,
and why this is known as Trinary Logic,
and the Space inside the Atom is filled with Light without Darkness,
keep in mind this Light is White Noise,
and it has 3 State Changes,
so the Light we see with our eyes from an Electron emitting Light we can see,
is due to the Electromagnetic Force Fields it creates.
Now let me put this into Math you can understand:
the 3 State Changes on the inside of the Atom are denoted by the Number 3,
so we take the number 3 then add the 3 State Changes of the Atom on the outside,
and that makes 6,
now we look around the outside of the Atom,
and we see 3 Force Field Levels,
these are caused by the 3 State Changes of the Atom internally and externally,
so now we have a total of 9,
and this is what I call the 369 Constant,
and is also very useful to know that every Force Field has 137 Receptors,
but if you number them starting at 0, you have 136,
I get confused as to the Numbering Scheme at times,
because no one really knows how many Elements exist,
but if 0 is the Trinary Element,
and it is a Non-Element,
since it has not Receptors,
there are only 136 Elements,
but you have to add in the Non-Element to get 137,
and that is the number you must use as a Ratio,
because every Electron that orbits an Atom with a Proton or Neutron in it,
must do so mechanically by temporarily attaching to it,
so it regulates the speed it can orbit around an Element,
so you use the Atomic Number to find out that number,
because this is an Order List of Elements,
so if I say that wrong in other places,
remember this rule of Math,
because this constant represents the Trinary Matrix of Numbers,
and can be Charted out in a 3 Phase Electrical Waveform,
as seen in <a class="a_link" href="#illustration_4_30"> Illustration 4.30: Trinary Math 369</a>.
</p>
<div class="a_illustration" id="illustration_4_30">
<span class="image_wrapper">
<img src="images/trinary.math.369.thumbnail.png" alt="Trinary Math 369" class="the_image" /><br />
</span>
<span class="a_caption"> Illustration 4.30: Trinary Math 369 </span>
<span id="trinary_math_369_chapter_4_11" class="no_show_pdf"><a class="a_link" href="bix/trinary_math_369_chapter_4_11.xhtml">Full Size</a></span>
</div>
<p class="text_indent">
The image show a 3 Phase Configuration,
so the inputs are all different Phases of Electricity,
basically what it shows you is, how to properly align the phases,
note how two are staggered,
and the one in the middle is inverted,
if you connect the inputs of 1 to 2,
and 7 to 8,
you will have 3 and 6 as an input,
and the outputs you get a Vortex,
do to induction,
and Phases of Electricity,
causing the Electromagnetic Force Fields,
to Strengthen,
then collapse,
as it switches from Positive to Negative.
</p>
<p class="text_indent">
The numbering system is based on Points of Energy,
everything above the 0 Reference line,
which is the center black horizontal grid line,
is Positive,
and everything below it is Negative,
so we must focus on where the Highest and Lowest Potentials are,
and then see where they cross,
so what we want to do is focus on where the highest Peak cross two of the lowest Peaks,
this is Trinary Waveform so remember there are 3 Waveforms,
in this case, it is at 9,
it crosses 4 and 5,
that add up to 9,
thus {embarrassing} it,
so the Highest Positive potential outputs are 1, 2 and 3 in that order,
each is one Phase of 3 Phases of Electric Power or Energy,
and each is labeled according to how they cross on the Right side or output of the waveform,
using the Right-Hand Rule,
so we label the numbers clockwise starting at the highest Potential,
and label each point as it changes Potential,
so as we trace 1 back to 5, which is also the lowest Potential,
and then back to 7 which has the highest input potential,
and we note that tracing 2 back to 4, and then back to 8,
is the same Potential but different Phase then the first waveform,
but now we trace out 3,
and find it traces back to 9,
which traces back to 6,
giving us 369 if we take its output, input, and peak as a reference,
so note that 6 is a Negative Input,
whereas 7 and 8 were Positive Inputs,
as such: its waveform is inverse of the other two,
and you will note that this is the only way you will get 3 phase power naturally,
you can create all types of Complex waveforms,
but Naturally occurring waveforms are known as a phenomenon,
and this is how Nikola Tesla decided to label them,
due to 3 Problems: signal cross talk, signal cancellation, and signal merging,
where signal cross talk is when Electrons will switch phases,
and signal cancellation is what happens when that happens,
and as a result, can lead to signal merging if a phase cancels out,
the other two phases can merge into one phase,
and is the only reason you will ever find one phase of electricity naturally,
and I know for a fact he was not the first to document these phenomena,
but he is the one that pointed this out to me in his writing,
so I will give him credit for it,
but the main point here is to point out this Natural Phenomenon,
and put it into a Math Formula we can use.
So the 369 Configuration is just a way of Identifying waveform Energy Points,
and defining 3 things: a Waveform type, in this case, its Triangle,
its Frequency and it is Wavelength,
and this is a very important concept,
1, 2, and 3 are outputs,
4, 5, and 9 are Peak Potentials,
and 6, 7, and 8 are inputs,
so in the case of 369,
6 is an input,
9 is a peak,
and 3 is an output,
and that represents the strongest of the 3 phases,
so anytime the input is Negative,
the peak will be Positive,
and it is output will be Negative,
this is an Alternating Current or AC Signal
(Math Proof: <span class="text_math"><sup>+</sup><sub>–</sub> f (x)</span> ),
so it depends on where you monitor the signal does this mater,
which is why this illustration is important for this reason,
because it is this view that makes this point;
and that point is that 3 Phase Electricity is a Natural Phenomenon,
and occurs in Nature in Lightning,
and is easy to generate artificially with Electric Generators,
and when Generating Single Phase Electricity,
you do not need to worry about all the inputs,
because without them the other fields will cancel out and merge.
</p>
<p class="text_indent">
Try not to confuse Electron Valences with an Atom's Receptors,
an Electron Valance is where Electrons temporarily attach,
as they orbit around the Atom's 3 Force Field Rings called Valances,
where a Free Valance is a place where an Electron call temporarily attach,
whereas an Atom Receptors are where other Atom's attach to make a Molecule,
this is due to the Force Field Rings interlocking at Free Valance Slots,
and that is called a Node,
in reality, they are the same Node,
it is all in the way Electrons Bound to Atoms do you understand this,
it is not a Chemical Process,
it is Electrical if Chemicals are required to make a bond,
it is due to Electrical Properties, and not Chemical,
Newton Proved this,
so I never had to.
Keep in mind that an Electron can only bound to the outside Force Field Ring,
and this is switching polarity all the time,
and I must point out that when an Atom's Electromagnetic Field switches Polarities,
it does not lose its bounds while in the 0 Dimension,
in fact, it is much stronger there,
and these 3 Rings do not disappear,
nor do they collapse with the Neutrino,
instead, they do what the Bible said they do:
and turn into the Holy as in Hole: Ghost as in invisible with the Human Eye,
meaning its Light without Darkness,
or Light in the Spectra humans can not see without the use of Technology.
When an Electrons orbit around the Atom they do not connect to the Atom Receptors,
instead, they cause the Atom's to align in such a way that their Rings interlock,
and those are Mirrored in the 3 Force Fields that surround the Atom,
so the difference between the concepts,
is that the Valance is temporary binding,
and Receptors are more Permanent or can be,
keep in mind a Receptor is Physically inside the Atom's Shell,
and nothing outside can physically interact with it,
these form where Protons and Neutrons align,
because every Proton and Neutron have a Receptor and form Receptors,
so it is this Alignment that determines what type of Receptor it is,
and it is encoded as an Isotope,
if it is Radioactive, it is unstable, and it will not allow any bounds to be made,
until it becomes stable,
and it does this by stealing what elements it needs to become stable,
so it can strip other molecules trying to bound to them.
When the Valances align and allow the Electron to orbit around the locked Force Field Rings,
these become Receptors,
and these bounds are very strong,
but they can be broken: Chemically, Electronically, or Mechanically,
and the Non-Element I call the Trinary Element will also temporally bind with the Electron Valence,
and can also temporarily bind with the Atom's Receptor,
so talking about this subject I tend to merge these concepts into one,
since they cross boundaries under certain circumstances,
and it is because of the relationship the Atom's have to each other,
and how Electrons interact with Protons and Neutrons,
and when you take 136 different Elements and that have Receptors,
and one Non-Element that has no receptors,
you can see the combinations are Limited and not Unlimited,
136<sup>3</sup> which equals 2,515,456 combinations per Element,
and by Combinations, I mean State Change Combinations or Configurations,
and there are 136 of Elements,
so that makes it 342,102,016 combinations for the whole Periodic Table,
and this accounts for all the State Changes,
in all the Elements,
and all the Combinations these Elements can Combine into Molecules,
the combinations are so vast that they allow for many types of Molecules,
but also limited to these Combinations: it is not an infinite or unlimited combination,
but it can also create Complex Molecules to create even more diverse Structures,
so it is really not much of a Limitation,
but there is a limit, it is not infinite,
nor is the Universe.
</p>
<p class="text_indent">