nablator > 18-10-2023, 04:30 PM
(18-10-2023, 03:27 PM)oshfdk Wrote: You are not allowed to view links. Register or Login to view.If the labels in the manuscript are indeed labels (each corresponding to some plaintext words or numbers), and sometimes they are located without any obvious sequence on the page (e.g., star labels), does this mean this method will have to restart at each label? What would be the correspondence between the encoded label length and the plaintext length?
Quote:If I understand the method correctly, the encoded label is between N and 2 * N characters long?
oshfdk > 18-10-2023, 04:57 PM
# file version
> cat zl.txt | head -n 1
#=IVTFF Eva- 1.7
# number of paragraphs
> cat zl.txt | egrep -o "<%>.." | wc -l
711
# top ten combinations of the first two characters for paragraphs
> cat zl.txt | egrep -o "<%>.." | sort | uniq -c | sort -r -n | head -n 10
122 <%>po
122 <%>pc
56 <%>tc
43 <%>to
42 <%>ts
33 <%>ps
26 <%>ko
24 <%>qo
22 <%>kc
20 <%>pa
> cat opmaj.txt | egrep -o "^[A-Z]" | sort | uniq -c | sort -r -n | head -n 10
148 C
86 D
70 I
34 P
22 S
21 V
18 H
16 E
15 Q
6 M
nablator > 18-10-2023, 05:07 PM
(18-10-2023, 04:57 PM)oshfdk Wrote: You are not allowed to view links. Register or Login to view.34% of all paragraphs start with either po or pc (i.e., pch) in exactly 50/50 proportion. If these two combinations pick a starting letter in the table, which two letters would start new paragraphs in exactly equal proportions, and account for 34% of them in total?
oshfdk > 18-10-2023, 05:23 PM
(18-10-2023, 05:07 PM)nablator Wrote: You are not allowed to view links. Register or Login to view.EVA-p and f are far too frequent on the first line of paragraphs (especially at the beginning of the line) to have a direct interpretation in terms of plaintext. No natural language has different statistics on letters of the first line of paragraph. They could be decorative littera elongata standing for something else, or nulls, or optional not-too-useful gimmicks.
> cat zl.txt | egrep -o "<%>..." | egrep -o "..$" | sort | uniq -c | sort -r -n | head -n 10
217 ch
103 ol
95 sh
27 or
23 od
19 ai
17 ok
16 oa
14 ar
13 os
oshfdk > 18-10-2023, 05:33 PM
(18-10-2023, 05:07 PM)nablator Wrote: You are not allowed to view links. Register or Login to view.In a cipher like mine there are many possible paths, the scribe could have used the p and f coordinates preferentially on the first line without difficulty. Why is a different question, and there is maybe no answer other than "it looks nice".
nablator > 18-10-2023, 05:49 PM
(18-10-2023, 05:33 PM)oshfdk Wrote: You are not allowed to view links. Register or Login to view.Unless the table has some fields that encode empty strings. That is, when decoding and you get to this field, you just proceed without adding anything to the plaintext.
oshfdk > 18-10-2023, 06:00 PM
(18-10-2023, 09:14 AM)nablator Wrote: You are not allowed to view links. Register or Login to view.It's hard to imagine how oka could work both for the 3rd and 6th classical planet, in Latin or Greek, unless there is a "one to many" mapping.
oshfdk > 18-10-2023, 06:21 PM
(18-10-2023, 09:14 AM)nablator Wrote: You are not allowed to view links. Register or Login to view.I doubt there were any Jupiter worshipers in the 15th century. Classical antiquity was a huge source of inspiration for the Renaissance, but always in a Christian framework.
R. Sale > 18-10-2023, 09:24 PM
oshfdk > 19-10-2023, 05:50 AM
(18-10-2023, 05:49 PM)nablator Wrote: You are not allowed to view links. Register or Login to view.The table is mostly empty. A 18x18 table or a bit smaller (not sure if the gallows k, t, f, p should be used as coordinates or not, they seem to be added, so they could have a different meaning, or have no meaning at all) can easily contain several Latin alphabets and multiple vowels added, and a few double letters like "qu", "us", "um". A zig-zag path that does not cross a filled cell or only crosses it when it changes direction does not encode anything. The empty cells and multiple alphabets leave a lot of freedom in the choice of paths for the same plaintext.