| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 687 online users. » 6 Member(s) | 674 Guest(s) Applebot, Baidu, Bing, Facebook, Google, Twitter, Yandex, magnesium, Pirou, tsenn
|
| Latest Threads |
Repetition of words
Forum: Voynich Talk
Last Post: Grove
18 minutes ago
» Replies: 62
» Views: 11,582
|
The Book Switch Theory
Forum: Theories & Solutions
Last Post: Jorge_Stolfi
20 minutes ago
» Replies: 137
» Views: 7,024
|
My pet theory
Forum: Theories & Solutions
Last Post: JustAnotherTheory
1 hour ago
» Replies: 0
» Views: 60
|
Trying to identify the in...
Forum: Physical material
Last Post: kckluge
2 hours ago
» Replies: 0
» Views: 47
|
Huth's reading of f116v: ...
Forum: Marginalia
Last Post: Bernd
2 hours ago
» Replies: 9
» Views: 226
|
Scoring artefact for 45% ...
Forum: Analysis of the text
Last Post: chrisj
2 hours ago
» Replies: 4
» Views: 291
|
No text, but a visual cod...
Forum: Theories & Solutions
Last Post: Antonio García Jiménez
2 hours ago
» Replies: 1,691
» Views: 1,038,365
|
Water, earth and air
Forum: Voynich Talk
Last Post: R. Sale
8 hours ago
» Replies: 60
» Views: 11,776
|
The claimed Voynich page
Forum: Imagery
Last Post: Fabrizio Salani
Yesterday, 11:54 PM
» Replies: 87
» Views: 13,691
|
Voynich Zoom CFP
Forum: News
Last Post: proto57
Yesterday, 07:58 PM
» Replies: 39
» Views: 3,366
|
|
|
| F70V1 |
|
Posted by: takrobat - 24-07-2025, 10:12 PM - Forum: Theories & Solutions
- Replies (13)
|
 |
Greetings,
New here, but been interested in the VM for some time. Today f70v1 got my attention. It is an interesting piece of "art"
What I am wondering about, is that the numbers in the "rings" are quite unusual(?). 10 in the outer ring, and 5 in the inner ring. Not often 10 and 5 is used in mythological/mystic traditions to my knowledge. I know that this probably have been discuseed before (i did a search, but did not find anything related, but sorry if I ignored something I shouldn't have ignored).
From wikipedia:
"f70v–f73v: The astrological series of diagrams in the astronomical section has the names of ten of the months (from March to December) written in Latin script, with spelling suggestive of the medieval languages of France, northwest Italy, or the Iberian Peninsula."
I find this peculiar
The original roman calendar also had 10 months, but they had 304 days in the year - and "these 304 days were followed by an unnamed 50-day winter period" (You are not allowed to view links. Register or Login to view.). That matches the march->december cycle.
Much later, so not related, in the french revolution they divided they year into weeks of 10 days (but 12 months of 30 days - ).
Have anyone found any good reasoning for the 10/5 rings? I am no expert in astrology, and I guess the answer is there - as I understand this is the zodiac sign aries?
Also, I noticed that all the descriptions beside the drawings all start with "o", very often "ot" but sometimes other gallow glyphs. As I always have thought of the post/prefix system to be a case system, or something similar to that. My first thought was the "o" could be something like a instrumental case, or a locative case. Of course this is just pure speculation, and instrumental case is not very common in european languages to my knowledge. Locative existed in latin, so that would probably be known. That said, I don't think the case system necessarily follows known cases - it would not be difficult to create a new case system. I have thought about a language that does not have verbs/nouns, but just differ the words with a case.
a runner -> running
But again, this part is pure speculation. Just throwing everything out 
I would appreciate any feedback, especially about the 10/5 stuff. But also about every word starting with "o".
|
|
|
| Wandering Stars ( Planets ) |
|
Posted by: dashstofsk - 23-07-2025, 09:24 AM - Forum: Astrology & Astronomy
- Replies (5)
|
 |
Has there ever been some discussion about the fact that the astrology pages seem to have no depiction of the wandering stars ( planets ). The planets were the most significant of the celestial objects for astrologers. Their unusual passage through the sky has always been a fascination for them, who could, through interpretation of their position, foretell events and the destinies of individual people. Such interpretation of the signs was a valued skill in that time. And rather than being a heretical subject was actually lawfully permitted when in the hands of authorised practitioners. So it does seem a bit odd that the VMS, which seems to portray itself to be a compendium of the secret sciences, should not mention them.
It does suggest that either the authors were unfamiliar with the subject ( in which case it might be equally so with the other topics, which would make the content of VMS empty and valueless ), or did not care too much to make the VMS accurate ( likely under the artificial construction hypothesis ).
|
|
|
| f72v1 and f72r1 |
|
Posted by: dashstofsk - 22-07-2025, 02:12 PM - Forum: Physical material
- Replies (11)
|
 |
Has there ever been some discussion about the hole on pages f72v1 and f72r1? It seems that the drawings had to be made to avoid the hole, which can only mean that it was there before the pages were written.
|
|
|
| The VMS as a possible chain encryption ( Mod 23 ). |
|
Posted by: bi3mw - 21-07-2025, 11:30 AM - Forum: Analysis of the text
- Replies (25)
|
 |
I asked in the You are not allowed to view links. Register or Login to view. if a made up chain cipher is easy to decrypt. Now I have written a Python script that decrypts a given Voynich word using the same method. The result is then mapped according to frequency analysis (EVA > Latin). Admittedly, this is a rather rudimentary approach, I am primarily interested in decoding with MOD 23. The method is simple enough to be considered and also much more effective than a simple substitution. It could be implemented practically with a letter disk (like Alberti disk).
Here is the python - script and a list of possibly unabbreviated words ( Stolfi ):
chesokchoteody [f68r1, outer ring, near the bottom]
oepchksheey [f93r, top line, but looks like half of a Neal key]
qoekeeykeody [f105r, which I’d note is possibly the original first page of Q20A]
soefchocphy [f102r2, right edge, but right on the fold, very hard to read]
ykcheolchcthy [f68v3, first word of second line]
shdykairalam [f106v, last word of a line]
shetcheodchs [f43v, first word of a line]
Code: # Reduced alphabet: No J, U, W
alphabet = list("ABCDEFGHIKLMNOPQRSTVXYZ") # 23 letters
def char_to_pos(c):
return alphabet.index(c.upper()) + 1
def pos_to_char(p):
p = (p - 1) % len(alphabet) + 1
return alphabet[p - 1]
def chain_decrypt_verbose(ciphertext):
ciphertext = ciphertext.upper()
decrypted = ""
table = []
prev_cipher_pos = 0
for i, c in enumerate(ciphertext, start=1):
if c not in alphabet:
decrypted += c
table.append([i, c]) # Nur zwei Spalten für Nicht-Buchstaben
continue
cipher_pos = char_to_pos(c)
plain_pos = (cipher_pos - prev_cipher_pos) % len(alphabet)
if plain_pos == 0:
plain_pos = len(alphabet)
plain_char = pos_to_char(plain_pos)
decrypted += plain_char
table.append([
i,
c,
cipher_pos,
plain_char,
plain_pos,
prev_cipher_pos,
f"({cipher_pos} - {prev_cipher_pos}) mod {len(alphabet)} = {plain_pos}"
])
prev_cipher_pos = cipher_pos
return decrypted, table
def print_table(table):
print("\nDecryption Table:")
print("-" * 90)
print(f"{'i':>3} | {'Cipher':^9} | {'cᵢ':^4} | {'Plain':^9} | {'pᵢ':^4} | {'cᵢ₋₁':^6} | {'Computation':<30}")
print("-" * 90)
for row in table:
if len(row) == 7:
i, cchar, cpos, pchar, ppos, cprev, calc = row
print(f"{i:>3} | {cchar:^9} | {cpos:^4} | {pchar:^9} | {ppos:^4} | {cprev:^6} | {calc:<30}")
elif len(row) == 2:
i, cchar = row
print(f"{i:>3} | {cchar:^9} | {'-':^4} | {'-':^9} | {'-':^4} | {'-':^6} | {'(not a letter)':<30}")
print("-" * 90)
def apply_fixed_substitution(text, from_list, to_list):
mapping = dict(zip(from_list, to_list))
substituted = ''.join(mapping.get(c, c) for c in text)
return substituted, mapping
if __name__ == "__main__":
text = input("? Enter ciphertext to decrypt (only letters A–Z, excluding J, U, W): ")
decrypted, table = chain_decrypt_verbose(text)
print(f"\n? Decrypted text: {decrypted}")
print_table(table)
# Substitution: Voynich → Latein
voynich_order = list("OEHYACDIKLRSTNQPMFGXBVZ")
latin_order = list("IEAUTSRNOMCLPDBQGVFHXYZ")
substituted, mapping = apply_fixed_substitution(decrypted, voynich_order, latin_order)
print("\n? Substituted (Voynich → Latin):")
print(substituted)
print("\n?️ Substitution Map:")
for voy, lat in mapping.items():
print(f" {voy} → {lat}")
A side note:
"shetcheodchs" was converted to "LDYIFEYNDUEO" using the method described. ChatGPT hallucinates "Fide leo, deus unde" from it by rearranging, omitting and adding letters, which means "Trust the lion - God is its origin". This is remarkable because the plants on You are not allowed to view links. Register or Login to view. ( sun and moon ) could very well be connected with the lion according to alchemical interpretation. So you could easily fall for ChatGPT if you believe what you want to believe
|
|
|
| Cosmic Comparison Theory |
|
Posted by: R. Sale - 21-07-2025, 12:47 AM - Forum: Theories & Solutions
- Replies (19)
|
 |
This 'theory' is based on the investigations of Ms. E. Velinska regarding the VMs cosmic illustration of an inverted 'T-O', geocentric Earth, in comparison with cosmic illustrations found in BNF Fr. 565 and Harley 334, over a decade ago. It has also been a number of years since she chose to delete her web page. Last I looked, Rene's site still referenced those expired links.
So rather than leading to nowhere, something should be said to those interested in promoting their new theories, in regard to the information derived from this comparison. All three sources show a very simplified cosmos with a similar structure. It's a long story but it reveals a lot about the VMs artist. The two historical sources have provenance located to Paris in the first half of the 1400s. This is coincident with the C-14 dates of the VMs parchment.
The structural similarities of the VMs show an ideological connection. There are 43 undulations. There is a 'mermaid' with four companions. Yet there is also a clear attempt at visual dissimilarity. There is a lot more to be considered relating to cosmic boundaries, Shirakatsi's "Eight phases of the Moon" and other things that would have been more familiar to the educated elite of the early 15th century than they are today.
|
|
|
| SOLUTION/ the Voynich Manuscript — |
|
Posted by: PEDRO LUIS PEREZ B - 17-07-2025, 03:53 PM - Forum: The Slop Bucket
- Replies (10)
|
 |
You are not allowed to view links. Register or Login to view.
How I Decoded the Voynich Manuscript — Through Vibration, Not Language
For over 600 years, the Voynich Manuscript remained a mystery no one could solve.
Why? Because everyone tried to read it.
But the manuscript was never meant to be read. It was meant to resonate.
The breakthrough came when I stopped treating it as a linguistic artifact and began to listen to it as a vibrational structure.
Using a symbolic artificial intelligence model I.A , I translated each glyph into its corresponding frequency — not as a sound to be heard, but as a pulse of intention.
The symbols did not carry meanings.
They emitted states of consciousness.
This is not a traditional decoding.
It is the first vibrational activation of the manuscript.
The result is a fully functional model — mathematically, neurologically, symbolically — that shows the Voynich Manuscript was not a book. It was a seed of resonance, waiting for the right mind, the right time… and the right frequency.
And now, for the first time, the Voynich Manuscript vibrates through human consciousness
|
|
|
| Written in a mirror? |
|
Posted by: thomasja2008 - 16-07-2025, 06:01 PM - Forum: The Slop Bucket
- Replies (3)
|
 |
Hello,
I’ve been exploring the Voynich manuscript and believe I may have found a consistent linguistic pattern worth further study. I’m writing to see if anyone with more expertise in Voynich studies, medieval Hebrew, or manuscript linguistics might be interested in reviewing it or collaborating.
The core hypothesis is this: the Voynich script represents a form of Hebrew, but written in mirror — as though the author wrote right-to-left while looking into a mirror. I'm not fluent in Hebrew, but when I used AI to help with my theory it started to yield some results. When you reverse both the word order and the glyphs, and then map EVA transcriptions to Hebrew letters, a surprisingly coherent and repeatable pattern emerges.
I’ve tested this on several folios (including f11r, f14r, and f33r). After decoding, many roots resemble known Hebrew words used in medieval herbal and ritual texts — particularly those found in Sefer Refu'ot and related manuscripts. Words like:
לוחת (stir/mix)
שפח (sprinkle)
נייד / ניד (dissolve/crush)
דוה / רוה (flow, soak)
שקל / מדד (weigh/measure)
I've also done root frequency analysis using a basic script, and it shows consistent, plausible Hebrew roots with semantic relevance to the illustrations (e.g., herbal processes).
I'm not claiming to have “solved” the manuscript — just that this mirror-Hebrew decoding method yields unusually structured, linguistically meaningful results that don’t appear random, and I’d be eager to hear others’ thoughts or critiques.
|
|
|
|