-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appendix 24, Tampering with the Word of God.html
4562 lines (4553 loc) · 118 KB
/
Appendix 24, Tampering with the Word of God.html
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
<!DOCTYPE html>
<!-- saved from url=(0061)https://www.masjidtucson.org/quran/appendices/appendix24.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Appendix 24, Tampering with the Word of God</title>
<meta name="keywords" content="submission, islam, God, Allah, quran, koran, kuran, qoran, qu'ran, qur'an, false verses, 9:128-129, karbalah, satanic verses">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./Appendix 24, Tampering with the Word of God_files/appendices.css">
<link rel="stylesheet" type="text/css" href="./Appendix 24, Tampering with the Word of God_files/linkbar.css">
<style type="text/css">
<!--
.tableHeading {
font-style: italic;
text-align: center;
}
.table {
background-color: #D3E7F5;
text-align: center;
}
.bigNumber {
font-size: large;
}
.lp{
text-align:left;
padding:5px;
}
.pad{
padding:5px;
}
.str {
font-weight:bold;
}
td {
padding-left:4px;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
-->
</style>
</head>
<body>
<div class="basmalah">In the name of GOD, Most Gracious, Most Merciful<br>
There is no other god beside GOD</div>
<div class="linkbarparent">
<ul class="linkbar">
<li><a href="https://www.masjidtucson.org/">Home ></a></li>
<li><a href="https://www.masjidtucson.org/quran/">Quran ></a></li>
<li class="currsec"><a href="https://www.masjidtucson.org/quran/appendices/">Appendices</a> </li>
<li class="search">
<form method="get" action="https://www.masjidtucson.org/search/search.html">
<input class="stext" value="GOD" name="q" size="4" id="q">
<button class="sbutton" type="submit" value="Go">Go</button>
</form>
</li>
</ul>
</div>
<div class="app">
<a href="https://www.masjidtucson.org/quran/appendices/appendix24.html"><h2>Appendix 24</h2></a>
<p class="appsource">(from: <a href="https://www.masjidtucson.org/quran/">Quran</a> The Final Testament,
by Rashad Khalifa, PhD.)</p>
<h1>Tampering with the Word of God</h1>
<p> </p>
<table class="box">
<tbody><tr>
<td class="lp str"> <p><em> A superhuman mathematical system pervades the
Quran and serves to guard and authenticate every element in it. Nineteen
years after the Nabi's death, some scribes injected two false verses
at the end of Sura 9, the last sura revealed in Medina. The evidence presented
in this Appendix incontrovertibly removes these human injections, restores
the Quran to its pristine purity, and illustrates a major function of
the Quran's mathematical code, namely, to protect the Quran from the slightest
tampering. Thus, the code rejects ONLY the false injections 9:128-129.</em></p>
</td>
</tr>
</tbody></table>
<p> </p>
<table class="box">
<tbody><tr>
<td class="lp str"> <p>"Surely, we have revealed this scripture,
and surely, we will preserve it." [ <a href="https://www.masjidtucson.org/quran/noframes/ch15.html#9">15:9</a> ] </p></td>
</tr>
</tbody></table>
<p>The Quran is God's Final Testament. Hence the divine pledge to keep it perfectly
preserved. To assure us of both the divine authorship, and the perfect preservation
of the Quran, the Almighty author has rendered the Quran mathematically composed.
As proven by the physical evidence in <a href="https://www.masjidtucson.org/quran/appendices/appendix1.html">Appendix 1</a>, such mathematical composition
is far beyond human capabilities. The slightest violation of God's Final Testament
is destined to stand out in glaring disharmony. A deviation by only 1 - one
sura, one verse, one word, even one letter - is immediately exposed.</p>
<p>Nineteen years after the Nabi Muhammad's death, during the reign of Khalifa
`Uthman, a committee of scribes was appointed to make several copies of the
Quran to be dispatched to the new Muslim lands. The copies were to be made from
the original Quran which was written by Muhammad's hand (<a href="https://www.masjidtucson.org/quran/appendices/appendix28.html">Appendix 28</a>).</p>
<p>This committee was supervised by `Uthman Ibn `Affaan, `Ali Ibn Abi Taaleb,
Zeid Ibn Thaabet, Ubayy Ibn Ka`ab, `Abdullah Ibn Al-Zubair, Sa`eed Ibn Al-`Aas,
and `Abdul Rahman Ibn Al-Haareth Ibn Heshaam. The Nabi, of course, had written
the Quran in its chronological order of revelation (<a href="https://www.masjidtucson.org/quran/appendices/appendix23.html">Appendix 23</a>), together with
the necessary instructions to place every piece in its proper position. The
last sura revealed in Medina was <a href="https://www.masjidtucson.org/quran/noframes/ch9.html">Sura 9</a>. Only <a href="https://www.masjidtucson.org/quran/noframes/ch110.html">Sura 110</a>, a very short sura, was
revealed after Sura 9, in Mina.</p>
<p>The committee of scribes finally came to Sura 9, and put it in its proper place.
One of the scribes suggested adding a couple of verses to honor the Nabi.
The majority of scribes agreed. `Ali was outraged. He vehemently maintained
that the word of God, written down by the hand of His final nabi, must never
be altered.</p>
<p>Ali's protest is documented in many references, but I cite and reproduce here
the classic reference AL ITQAAN FEE 'ULUM AL QURAN by Jalaluddin Al-Suyuty,
Al-Azhareyyah Press, Cairo, Egypt, 1318 AH, Page 59 [see Insert 1].</p>
<table class="tab">
<tbody><tr>
<td><img src="./Appendix 24, Tampering with the Word of God_files/app24_insert1.png" alt="Translation: `Ali was asked: "Why are you staying home?" He said, "Something has been added to the Quran, and I have pledged never to put on my street clothes, except for the prayer, until the Quran is restored." [Insert 1]" width="465" height="146">
</td>
</tr>
</tbody></table>
<p>The horrendous dimensions of this crime can be realized once we look at the
consequences:</p>
<p>(1) `Uthman was assassinated, and `Ali was installed as the fourth Khalifa.</p>
<p>(2) A 50-year war erupted between the new Khalifa and his supporters on one
side, and the Mohammedan distorters of the Quran on the other side.</p>
<p>(3) `Ali was martyred, and eventually his family, the nabi Muhammad's family,
except for some women and children, were killed.</p>
<p>(4) The disaster culminated in the infamous Battle of Karbala, where `Ali's
son, Hussein, and his family were massacred.</p>
<p>(5) The Muslims were deprived of the pure, unaltered, Quran for 1400 years.</p>
<p>The distorters of the Quran finally won the war, and the "official"
history that came to us represented the victors' point of view. This apparent
victory for God's enemies was, of course, in accordance with God's will. In
just two decades after the Nabi's death, the idol worshipers who were defeated
by the Nabi in the conquest of Mecca (632 AD) reverted to idolatry. Ironically,
this time around their idol was the Nabi himself. Such idol worshipers obviously
did not deserve to possess the pure Quran. Hence the blessed martyrdom of the
true believers who tried to restore the Quran, and the apparent victory for
the distorters of God's word.</p>
<p>The first peace time ruler after this lengthy and disastrous war was Marwan
Ibn Al Hakam (died 65 AH/684 AD). One of the first duties he performed was to
destroy the original Quran, the one that was so scrupulously written by the
Nabi's own hand, "fearing it might become the cause of NEW disputes"
[see `ULUM AL-QURAN, by Ahmad von Denffer, Islamic Foundation, Leicester, United
Kingdom, 1983, Page 56.]. The question an intelligent person must ask is: "If
the original Quran were identical to the Quran in circulation at that time,
why did Marwan Ibn Al-Hakam have to destroy it?!"</p>
<p>Upon examining the oldest Islamic references, we realize that the false injections,
9:128-129, were always suspect. For example, we read in Bukhary's famous Hadith,
and Al-Suyuty's famous Itqaan, that every single verse in the Quran was verified
by a multiplicity of witnesses "except Verses 128 and 129 of Sura 9; they
were found only with Khuzeimah Ibn Thaabet Al-Ansaary." When some people
questioned this improper exception, someone came up with a Hadith stating that
"the testimony of Khuzeimah equals the testimony of two men!!!"</p>
<p>Strangely, the false injections 9:128-129 are labeled in the traditional Quran
printings as "Meccan" [see Insert 2]. </p>
<table class="box">
<tbody><tr>
<td class="cen str">
<img src="./Appendix 24, Tampering with the Word of God_files/app24_insert2.png" alt="Translation: `The Title Figure of Sura 9 from a standard Quran, showing that this sura is Medinan, "except for the last two verses; they are Meccan"!!! [Insert 2]">
<br>
The Title Figure of Sura 9 from a standard Quran, showing that this sura is Medinan, <br> "except for the last two verses; they are Meccan"!!! [Insert 2]</td>
</tr>
</tbody></table>
<p>How could these `Meccan' verses be found with Khuzeimah, a late `Medinan' Muslim?!
How could a Medinan sura contain Meccan verses, when the universal convention
has been to label as `Medinan' all revelations after the Nabi's Hijerah from
Mecca??!! Despite these discrepancies, plus many more glaring contradictions
associated with Verses 9:128-129, no one dared to question their authenticity.
The discovery of the Quran's mathematical code in 1974, however, ushered in
a new era where the authenticity of every element in the Quran is proven (<a href="https://www.masjidtucson.org/quran/appendices/appendix1.html">Appendix
1</a>).</p>
<p>As it turns out, the injection of the two false Verses 9:128-129 resulted in:
(1) demonstrating the major function of the Quran's mathematical system, and
(2) producing an awesome miracle in its own right, and (3) distinguishing the
true believers from the hypocrites (they uphold traditions).</p>
<p>The translation of the two false verses is shown in Insert 3:</p>
<table class="box">
<tbody><tr>
<td class="str"> "A messenger has come to you from among you who wants no hardship
to afflict you, and cares about you, and is compassionate towards the
believers, merciful. If they turn away, then say, 'Sufficient for me is
God, there is no god except He. I put my trust in Him. He is the Lord
with the great throne.' "
<p>[Insert 3] </p></td>
</tr>
</tbody></table>
<h2>THE PHYSICAL EVIDENCE</h2>
<p>[1] The first violation of the Quran's code by Verses 9:128-129 appeared when
the count of the word "God" (Allah) in the Quran was found to be 2699,
which is not a multiple of 19, unless we remove one. The count of the word "God"
is shown at the bottom of each page in this translation. The total shown at
the end of the Quran is 2698, 19x142, because the false injections 9:128-129
have been removed.</p>
<p>[2] The sum of all the verse numbers where the word "God" occurs
is 118123, or 19x6217. This total is obtained by adding the numbers of verses
wherever the word "God" is found. If the false Verse 9:129 is included,
this phenomenon disappears.</p>
<p>[3] As shown at the end of Sura 9 in this translation, the total occurrence
of the word "God" to the end of Sura 9 is 1273, 19x67. If the false
injections 9:128-129 were included, the total would have become 1274, not a
multiple of 19.</p>
<p>[4] The occurrence of the word "God" from the first Quranic initial
("A.L.M." of 2:1) to the last initial ("N." of 68:1) totals
2641, or 19x139. Since it is easier to list the suras outside the initialed
section of the Quran, Table 1 shows the 57 occurrences of the word "God"
in that section. Subtracting 57 from the total occurrence of the word "God"
gives us 2698- 57 = 2641 = 19x139, from the first initial to the last initial.
If the human injections 9:128 and 129 were included, the count of the word "God"
in the initialed section would have become 2642, not a multiple of 19. </p>
<p class="caption">Table 1: Occurrence of the word "God" outside the initialed section</p>
<table class="tab">
<tbody><tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> Sura</td>
<td>No.of</td>
<td>Sura</td>
<td>No.of </td>
</tr>
<tr>
<td> No.</td>
<td>Occurrences</td>
<td>No.</td>
<td>Occurrences</td>
</tr>
<tr>
<td>------</td>
<td>------</td>
<td>------</td>
<td>------- </td>
</tr>
<tr>
<td> 1</td>
<td>2</td>
<td>84</td>
<td>1 </td>
</tr>
<tr>
<td> 69</td>
<td>1</td>
<td>85</td>
<td>3 </td>
</tr>
<tr>
<td> 70</td>
<td>1</td>
<td>87</td>
<td>1 </td>
</tr>
<tr>
<td> 71</td>
<td>7</td>
<td>88</td>
<td>1 </td>
</tr>
<tr>
<td> 72</td>
<td>10</td>
<td>91</td>
<td>2 </td>
</tr>
<tr>
<td> 73</td>
<td>7</td>
<td>95</td>
<td>1 </td>
</tr>
<tr>
<td> 74</td>
<td>3</td>
<td>96</td>
<td>1 </td>
</tr>
<tr>
<td> 76</td>
<td>5</td>
<td>98</td>
<td>3 </td>
</tr>
<tr>
<td> 79</td>
<td>1</td>
<td>104</td>
<td>1 </td>
</tr>
<tr>
<td> 81</td>
<td>1</td>
<td>110</td>
<td>2 </td>
</tr>
<tr>
<td> 82</td>
<td>1</td>
<td>112</td>
<td>2 </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>----- </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>57 </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>= (19x3) </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody></table>
<p>[5] Sura 9 is an un-initialed sura, and if we look at the 85 un-initialed suras,
we find that the word "God" occurs in 57 of these suras, 19x3. The
total number of verses in the suras where the word "God" is found
is 1045, 19x55. If 9:128-129 were included, the verses containing the word "God"
would increase by 1.</p>
<p>[6] The word "God" from the missing Basmalah (Sura 9) to the extra
Basmalah (Sura 27) occurs in 513 verses, 19x27, within 19 suras (Table 2). If
the false Verses 9:128-129 were included, the number of verses containing the
word "God" would have become 514, and this phenomenon would have disappeared.
</p>
<p class="caption"> Table 2: The word "God" from <br> the missing <strong>Basmalah</strong> to the extra <strong>Basmalah</strong>.</p>
<table class="tab">
<tbody><tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Sura</td>
<td>No. of Verses </td>
</tr>
<tr>
<td> No.</td>
<td>No.</td>
<td>with "God" </td>
</tr>
<tr>
<td>------</td>
<td>-------</td>
<td>------------- </td>
</tr>
<tr>
<td> 1.</td>
<td>9</td>
<td>100 </td>
</tr>
<tr>
<td> 2.</td>
<td>10</td>
<td>49 </td>
</tr>
<tr>
<td> 3.</td>
<td>11</td>
<td>33 </td>
</tr>
<tr>
<td> 4.</td>
<td>12</td>
<td>34 </td>
</tr>
<tr>
<td> 5.</td>
<td>13</td>
<td>23 </td>
</tr>
<tr>
<td> 6.</td>
<td>14</td>
<td>28 </td>
</tr>
<tr>
<td> 7.</td>
<td>15</td>
<td>2 </td>
</tr>
<tr>
<td> 8.</td>
<td>16</td>
<td>64 </td>
</tr>
<tr>
<td> 9.</td>
<td>17</td>
<td>10 </td>
</tr>
<tr>
<td> 10.</td>
<td>18</td>
<td>14 </td>
</tr>
<tr>
<td> 11.</td>
<td>19</td>
<td>8 </td>
</tr>
<tr>
<td> 12.</td>
<td>20</td>
<td>6 </td>
</tr>
<tr>
<td> 13.</td>
<td>21</td>
<td>5 </td>
</tr>
<tr>
<td> 14.</td>
<td>22</td>
<td>50 </td>
</tr>
<tr>
<td> 15.</td>
<td>23</td>
<td>12 </td>
</tr>
<tr>
<td> 16.</td>
<td>24</td>
<td>50 </td>
</tr>
<tr>
<td> 17.</td>
<td>25</td>
<td>6 </td>
</tr>
<tr>
<td> 18.</td>
<td>26</td>
<td>13 </td>
</tr>
<tr>
<td> 19.</td>
<td>27</td>
<td>6 </td>
</tr>
<tr>
<td>-----</td>
<td>------</td>
<td>------ </td>
</tr>
<tr>
<td> 19</td>
<td>342</td>
<td>513 </td>
</tr>
<tr class="lp">
<td colspan="3">
No. of suras = 19, <br>
Total of sura numbers =342 =19x18<br>
Total of verses = 513 = 19 x 27<br>
</td></tr>
</tbody></table>
<p>[7] The word "Elaah" which means "god" occurs in Verses
9:129. The total occurrence of this word in the Quran is 95, 19x5. The inclusion
of 9:128-129 causes this word to increase by 1, to 96.</p>
<p>[8] The INDEX TO THE WORDS OF THE QURAN, lists 116 "Rasool" (Messenger)
words. One of these words is in 9:128. By removing this false verse, 115 "Rasool"
words remain. Another "Rasool" word which must be excluded from counting
is in 12:50, since it refers to the "messenger of Pharaoh," not the
messenger of God. Thus, the total occurrence of "Rasool" of God is
114, 19x6. </p>
<p>[9] Another important word that occurs in the false Verses 9:128-129 is the
word "Raheem" (Merciful). This word is used in the Quran exclusively
as a name of God, and its total count is 114, 19x6, after removing the word
"Raheem" of 9:128, which refers to the nabi. According to 7:188,
10:49, and 72:21 the Nabi did not possess any power of mercy.</p>
<p>[10] The INDEX lists 22 occurrences of the word " `Arsh" (Throne).
After removing the false injection 9:129, and the " `Arsh" of Joseph
which occurs in 12:100, and the " `Arsh" of the Queen of Sheba (27:23),
we end up with 19 " `Arsh" words. This proves that the word "
`Arsh" of 9:129 does not belong in the Quran.</p>
<p>[11] The Quranic command "Qul" (Say) occurs in the Quran 332 times.
Also, the word "Qaaloo" (They said) occurs the same number of times,
332. Since the false Verse 9:129 contains the word "Qul" (Say), its
inclusion would have destroyed this typical Quranic phenomenon.</p>
<p>[12] The Quran contains 6234 numbered verses and 112 un-numbered verses (Basmalahs).
Thus, the total number of verses in the Quran is 6346, 19x334. The false Verses
9:128-129 violate this important criterion of the Quran's code.</p>
<p>[13] In addition to violating the numbers of words as listed above, 9:128-129
violate the Quran's mathematical structure. When we add the number of verses
in each sura, plus the sum of verse numbers (1+2+3+... +n, where n=number of
verses), plus the number of each sura, the cumulative total for the whole Quran
comes to 346199, or 19x19x959. This phenomenon confirms the authenticity of
every verse in the Quran, while excluding 9:128-129. Table 3 is an abbreviated
illustration of the calculations of Item 13. This phenomenon is impossible if
the false Verses 9:128-129 are included. </p>
<p class="caption">Table 3: Mathematical coding of the <br> Quran's suras & verses, based on "19"</p>
<table class="tab">
<tbody><tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> Sura</td>
<td>No.of</td>
<td>Sum of</td>
<td> </td>
</tr>
<tr>
<td> No.</td>
<td>Verses</td>
<td>Verse #'s</td>
<td>Total </td>
</tr>
<tr>
<td>-----</td>
<td>--------</td>
<td>----------</td>
<td>------</td>
</tr>
<tr>
<td> 1</td>
<td>7</td>
<td>28</td>
<td>36 </td>
</tr>
<tr>
<td> 2</td>
<td>286</td>
<td>41041</td>
<td>41329</td>
</tr>
<tr>
<td> -</td>
<td>-</td>
<td>-</td>
<td>- </td>
</tr>
<tr>
<td> 9</td>
<td>127</td>
<td>8128</td>
<td>8264</td>
</tr>
<tr>
<td> -</td>
<td>-</td>
<td>-</td>
<td>- </td>
</tr>
<tr>
<td> 114</td>
<td>6</td>
<td>21</td>
<td>141 </td>
</tr>
<tr>
<td>-----</td>
<td>------</td>
<td>--------</td>
<td>------</td>
</tr>
<tr>
<td> 6555</td>
<td>6234</td>
<td>333410</td>
<td>346199</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>(19 x 19 x 959)</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody></table>
<p>[14] When we carry out the same calculations as in Item 13 above, but for the
85 un-initialed suras only, which include Sura 9, the cumulative total is also
a multiple of 19. The cumulative total for all un-initialed suras is 156066,
or 19x8214. This result depends on the fact that Sura 9 consists of 127 verses,
not 129. The data are shown in Table 4. The false verses would have destroyed
this criterion. </p>
<p class="caption">Table 4: Mathematical coding of the Quran's 85 un-initialed suras.</p>
<table class="tab">
<tbody><tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Sura</td>
<td>No.of</td>
<td>Sum of</td>
<td> </td>
</tr>
<tr>
<td>No.</td>
<td>Verses</td>
<td>Verse #'s</td>
<td>Total </td>
</tr>
<tr>
<td>----</td>
<td>------</td>
<td>---------</td>
<td>------</td>
</tr>
<tr>
<td> 1</td>
<td>7</td>
<td>28</td>
<td>36 </td>
</tr>
<tr>
<td> 4</td>
<td>176</td>
<td>15576</td>
<td>15756</td>
</tr>
<tr>
<td> -</td>
<td>-</td>
<td>-</td>
<td>- </td>
</tr>
<tr>
<td> 9</td>
<td>127</td>
<td>8128</td>
<td>8264</td>
</tr>
<tr>
<td> -</td>
<td>-</td>
<td>-</td>
<td>- </td>
</tr>
<tr>
<td>114</td>
<td>6</td>
<td>21</td>
<td>141 </td>
</tr>
<tr>
<td colspan="3"> </td>
<td>------</td>
</tr>
<tr>
<td colspan="3"> </td>
<td>156066</td>
</tr>
<tr>
<td colspan="4"> <p> 156066 = (19x8214)</p></td>
</tr>
</tbody></table>
<p>[15] By adding the sura numbers of all un-initialed suras (85 suras), plus
their number of verses, from the beginning of the Quran to the end of Sura 9
we get 703, 19x37. The detailed data are shown in Table 5. This phenomenon depends
on the fact that Sura 9 consists of 127 verses.</p>
<table class="tab">
<tbody><tr>
<td colspan="3"> <p class="caption">Table 5: Un-initialed suras
and <br>
their verses from the beginning to Sura 9</p></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> Sura</td>
<td># Verses</td>
<td>Total </td>
</tr>
<tr>
<td>------</td>
<td>--------</td>
<td>-------</td>
</tr>
<tr>
<td> 1</td>
<td>7</td>
<td>8 </td>
</tr>
<tr>
<td> 4</td>
<td>176</td>
<td>180 </td>
</tr>
<tr>
<td> 5</td>
<td>120</td>
<td>125 </td>
</tr>
<tr>
<td> 6</td>
<td>165</td>
<td>171 </td>
</tr>
<tr>
<td> 8</td>
<td>75</td>
<td>83 </td>
</tr>
<tr>
<td> 9</td>
<td>127</td>
<td>136 </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>----- </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>703 </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>(19x37)</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody></table>
<p>[16] By adding the sura number of the un-initialed suras, plus the number of
verses, plus the sum of verse numbers from the missing Basmalah (9:1) to the
end of the Quran, the grand total comes to 116090, or 19x6110. These data are
in Table 6. If Verses 9:128-129 are included, the number of verses for Sura
9 becomes 129, and the grand total becomes 116349, not a multiple of 19. </p>
<p>[17] When the same calculations of Item 16 are done for all the verses from
the missing Basmalah of Sura 9 to the extra Basmalah of Sura 27, the grand total
comes to 119966, or 19x6314. This phenomenon would be destroyed, and the total
would no longer be divisible by 19, if the number of verses in Sura 9 were 129.
Since this phenomenon is also related to the absence of Basmalah from Sura 9,
it is explained and the detailed data are given in table form in Appendix 29.</p>
<table class="tab">
<tbody><tr>
<td colspan="4">
<p class="caption">Table 6: The
un-initialed suras & their verses <br>
from missing Basmalah (Sura 9) <br>
to the end of the Quran </p></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Sura</td>
<td>No.of</td>
<td>Sum of</td>
<td> </td>
</tr>
<tr>
<td>No.</td>
<td>Verses</td>
<td>Verse #'s</td>
<td>Total </td>
</tr>
<tr>
<td>----</td>
<td>------</td>
<td>---------</td>
<td>------ </td>
</tr>
<tr>
<td> 9</td>
<td>127</td>
<td>8128</td>
<td>8264 </td>
</tr>
<tr>
<td> 16</td>
<td>128</td>
<td>8256</td>
<td>8400 </td>
</tr>
<tr>
<td> -</td>
<td>-</td>
<td>-</td>
<td>- </td>
</tr>
<tr>
<td>113</td>
<td>5</td>
<td>15</td>
<td>133 </td>
</tr>
<tr>
<td>114</td>
<td>6</td>
<td>21</td>
<td>141 </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>------</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>116090 </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>(19x6110) </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody></table>
<p>[18] When the same calculations of Items 16 and 17 are carried out from the
missing Basmalah (9:1) to the verse where the number 19 is mentioned (74:30),
we find that the grand total comes to 207670, or 19x10930 (Table 7). Sura 9
must consist of 127 verses. </p>
<table class="tab">
<tbody><tr>
<td colspan="4"> <p class="caption">Table 7: The suras and verses from
the missing Basmalah to 74:30.</p></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> Sura</td>
<td>No.of</td>
<td>Sum of</td>
<td> </td>
</tr>
<tr>
<td> No.</td>
<td>Verses</td>
<td>Verse #s</td>
<td>Total </td>
</tr>
<tr>
<td>------</td>
<td>------</td>
<td>--------</td>
<td>------</td>
</tr>
<tr>
<td> 9</td>
<td>127</td>
<td>8128</td>
<td>8264 </td>
</tr>
<tr>
<td> 10</td>
<td>109</td>
<td>5995</td>
<td>6114 </td>
</tr>
<tr>
<td> -</td>
<td>-</td>
<td>-</td>
<td>- </td>
</tr>
<tr>
<td> 73</td>
<td>20</td>
<td>210</td>
<td>303 </td>
</tr>
<tr>
<td> 74</td>
<td>30</td>
<td>465</td>
<td>569 </td>
</tr>
<tr>
<td>-----</td>
<td>-----</td>
<td>------- </td>
<td>-------</td>
</tr>
<tr>
<td>2739</td>
<td>4288</td>
<td>200643</td>
<td>207670</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>(19x10930)</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody></table>
<p>[19] Sura 9 consists of 127 verses. The digits of 127 add up to 1+2+7 = 10.
Let us look at all the verses whose digits add up to 10, from the missing Basmalah
of Sura 9, to the extra Basmalah of Sura 27. If Sura 9 consisted of 129 verses,
the grand total would be 2472, instead of 2470 (19x130); 2472 is not a multiple
of 19, and this phenomenon would have disappeared. The data are in Table 8.</p>
<table class="tab">
<tbody><tr>
<td colspan="4"> <p class="caption">Table 8: The verses whose digits add
up to 10 from 9:1 to 27:29. </p></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>How many</td>
<td> </td>
</tr>
<tr>
<td> Sura</td>
<td>No.of</td>
<td>add up</td>
<td>No.of </td>
</tr>
<tr>
<td> No.</td>
<td>Verses</td>
<td>to 10</td>
<td>Total </td>
</tr>
<tr>
<td>-----</td>
<td>------</td>
<td>------</td>
<td>------- </td>
</tr>
<tr>
<td> 9</td>
<td>127</td>
<td>12</td>
<td>148 </td>
</tr>
<tr>
<td> 10</td>
<td>109</td>
<td>10</td>
<td>129 </td>
</tr>
<tr>
<td> 11</td>
<td>123</td>
<td>11</td>
<td>145 </td>
</tr>
<tr>
<td> 12</td>
<td>111</td>
<td>10</td>
<td>133 </td>
</tr>
<tr>