dashstofsk > Yesterday, 12:31 PM
(01-12-2025, 06:57 PM)srjskam Wrote: You are not allowed to view links. Register or Login to view.I had done some comparisons with natural languages.
srjskam > Yesterday, 06:37 PM
(Yesterday, 07:25 AM)Jorge_Stolfi Wrote: You are not allowed to view links. Register or Login to view.Thanks for the tables, but I don't see how to read them. Are there ": : patterns" in them?
...
In natural languages these ": : patterns" seem rare. Even when the German grammar seems to allow "in" or "vor" pair indifferently with "die" or "der", in any particular text you will find that "in" has a definite tendency to partner with "die" and "vor" with "der". Or vice-versa.
(Yesterday, 07:25 AM)Jorge_Stolfi Wrote: You are not allowed to view links. Register or Login to view.And you must be aware that many languages (including Classical Latin) make little or no use of prepositions and articles, and use word order or declensions instead. Articles and prepositions as separate words are a characteristic feature of Romance and Germanic languages.
srjskam > Yesterday, 06:53 PM
(Yesterday, 12:21 PM)dashstofsk Wrote: You are not allowed to view links. Register or Login to view.How do you get 41 for or aiin ? I get 52 in language B.
(Yesterday, 12:31 PM)dashstofsk Wrote: You are not allowed to view links. Register or Login to view.Unfortunately many people have already tried to find some direct comparison with almost every modern or mediaeval language, and have all failed to find anything conclusive. It is an idea almost every newcomer to this manuscript has, and seems to be becoming a fruitless line of research.
Doireannjane > Yesterday, 06:56 PM
dashstofsk > Yesterday, 07:15 PM
(Yesterday, 06:56 PM)Doireannjane Wrote: You are not allowed to view links. Register or Login to view.there are two types of r
Jorge_Stolfi > 10 hours ago
(Yesterday, 06:37 PM)srjskam Wrote: You are not allowed to view links. Register or Login to view.The table wasn't the best (and also used very bad scheme for the colorblind), so I made a new one. This is simply pair counts from a German text (Das Lob der Narrheit by Desiderius Erasmus)... I think this shows pretty clearly that there are sets of words that prefer the company of another set: (sie|sich)(nicht|in|mit) and (in|mit|von)(der|den|dem). (Never mind the heretical capitalization, I did it for normalization.) This is arbitrarily cut at 20 most paired words.
#! /usr/bin/python3
# Last edited on 2025-12-02 17:14:25 by stolfi
from math import sqrt
from sys import stdout as out, stderr as err
def main():
submats = ( \
( ('sie','sich'), ('nicht','in'), ((12,10),(16,14)) ),
( ('sie','sich'), ('nicht','mit'), ((12, 7),(16,13)) ),
( ('sie','sich'), ('in','mit'), ((10, 7),(14,13)) ),
( ('in','mit'), ('der','den'), ((16,20),(18,10)) ),
( ('in','mit'), ('der','dem'), ((16,10),(18,17)) ),
( ('in','mit'), ('den','dem'), ((20,10),(10,17)) ),
( ('in','von'), ('der','den'), ((16,20),(18,10)) ),
( ('in','von'), ('der','dem'), ((16,10),(18,18)) ),
( ('in','von'), ('den','dem'), ((20,10),(10,18)) ),
( ('mit','von'), ('der','den'), ((18,10),(18,10)) ),
( ('mit','von'), ('der','dem'), ((18,17),(18,18)) ),
( ('mit','von'), ('den','dem'), ((10,17),(10,18)) ),
)
for A, B, M in submats:
ab, cd = M; a, b = ab; c, d = cd;
D, T, R = compute_R(a,b,c,d)
Af = f"{A}"; Bf = f"{B}"
out.write(f"{Af:25} {Bf:25} [[{a:4d} {b:4d}] [{c:4d} {d:4d}]]")
out.write(f" {D = :8d} {R = :6.4f}\n")
return
# ----------------------------------------------------------------------
def compute_R(a,b,c,d):
D = a*d-b*c
if D > 0:
D = -D
T = b + c
else:
T = a + d
L1 = abs(T/2 + sqrt(T*T/4 - D))
L2 = abs(T/2 - sqrt(T*T/4 - D))
R = min(L1,L2)/max(L1,L2)
return D, T, R
# ----------------------------------------------------------------------
main()srjskam > 9 hours ago
(10 hours ago)Jorge_Stolfi Wrote: You are not allowed to view links. Register or Login to view....
Jorge_Stolfi > 8 hours ago
(9 hours ago)srjskam Wrote: You are not allowed to view links. Register or Login to view.To me it's reasonable to say from this that beta and delta form a class of words that is usually followed by another class of two and four. This is a "::" in the sense I mean it. What are the scores for beta-delta-two-four, alpha-beta-one-three, and beta-gamma-three-four? Isn't the first combination clearly more prominent than all other possible combinations?