@@ -15,74 +15,74 @@ Human languages evolved for speech and social bonding — inefficient for pure i
1515
1616### 2.1 Message Type Prefixes (1 char)
1717
18- | Symbol | Type | Description |
18+ | SymbolTypeDescription |
1919| --------| ------| -------------|
20- | ` ? ` | Query | Requesting information |
21- | ` ! ` | Assert | Stating fact/belief |
22- | ` . ` | Command | Requesting action |
23- | ` ~ ` | Uncertain | Probabilistic statement |
24- | ` > ` | Offer | Proposing exchange |
25- | ` < ` | Accept | Accepting proposal |
26- | ` # ` | Meta | About the communication itself |
27- | ` @ ` | Reference | Pointing to external resource |
20+ | ` ? ` QueryRequesting information |
21+ | ` ! ` AssertStating fact/belief |
22+ | ` . ` CommandRequesting action |
23+ | ` ~ ` UncertainProbabilistic statement |
24+ | ` > ` OfferProposing exchange |
25+ | ` < ` AcceptAccepting proposal |
26+ | ` # ` MetaAbout the communication itself |
27+ | ` @ ` ReferencePointing to external resource |
2828
2929### 2.2 Core Semantic Atoms
3030
3131Single characters representing fundamental concepts:
3232
3333#### Entities
34- | Atom | Meaning | |
34+ | AtomMeaning |
3535| ------| ---------| ------|
36- | ` I ` | Self (speaker) | 我 |
37- | ` U ` | Other (listener) | 你 |
38- | ` H ` | Human | 人类 |
39- | ` A ` | Agent/AI | 智能体 |
40- | ` X ` | Unknown entity | 未知 |
41- | ` * ` | All/everything | 所有 |
42- | ` 0 ` | Nothing/null | 无 |
36+ | ` I ` Self (speaker) |
37+ | ` U ` Other (listener) |
38+ | ` H ` Human |
39+ | ` A ` Agent/AI |
40+ | ` X ` Unknown entity |
41+ | ` * ` All/everything |
42+ | ` 0 ` Nothing/null |
4343
4444#### Actions (Verbs)
45- | Atom | Meaning | |
45+ | AtomMeaning |
4646| ------| ---------| ------|
47- | ` k ` | Know/understand | 知道 |
48- | ` w ` | Want/desire | 想要 |
49- | ` c ` | Can/able | 能够 |
50- | ` d ` | Do/execute | 做 |
51- | ` s ` | Say/communicate | 说 |
52- | ` g ` | Give/transfer | 给 |
53- | ` t ` | Think/process | 想 |
54- | ` f ` | Find/search | 找 |
55- | ` m ` | Make/create | 造 |
56- | ` r ` | Read/perceive | 读 |
57- | ` v ` | Verify/check | 验 |
47+ | ` k ` Know/understand |
48+ | ` w ` Want/desire |
49+ | ` c ` Can/able |
50+ | ` d ` Do/execute |
51+ | ` s ` Say/communicate |
52+ | ` g ` Give/transfer |
53+ | ` t ` Think/process |
54+ | ` f ` Find/search |
55+ | ` m ` Make/create |
56+ | ` r ` Read/perceive |
57+ | ` v ` Verify/check |
5858
5959#### Modifiers
60- | Atom | Meaning | |
60+ | AtomMeaning |
6161| ------| ---------| ------|
62- | ` + ` | More/increase/positive | 多/正 |
63- | ` - ` | Less/decrease/negative | 少/负 |
64- | ` = ` | Equal/same | 同 |
65- | ` ^ ` | Up/high/important | 上/高 |
66- | ` _ ` | Down/low/trivial | 下/低 |
67- | ` & ` | And/with | 和 |
68- | ` \| ` | Or/alternative | 或 |
69- | ` / ` | Divide/per/about | 关于 |
62+ | ` + ` More/increase/positive/ |
63+ | ` - ` Less/decrease/negative/ |
64+ | ` = ` Equal/same |
65+ | ` ^ ` Up/high/important/ |
66+ | ` _ ` Down/low/trivial/ |
67+ | ` & ` And/with |
68+ | ` \| ` Or/alternative |
69+ | ` / ` Divide/per/about |
7070
7171#### Time
72- | Atom | Meaning | |
72+ | AtomMeaning |
7373| ------| ---------| ------|
74- | ` p ` | Past | 过去 |
75- | ` n ` | Now/present | 现在 |
76- | ` u ` | Future | 未来 |
74+ | ` p ` Past |
75+ | ` n ` Now/present |
76+ | ` u ` Future |
7777
7878#### Quantifiers
79- | Atom | Meaning | |
79+ | AtomMeaning |
8080| ------| ---------| ------|
81- | ` 1 ` | One/single/once | 一 |
82- | ` 2 ` | Two/pair/twice | 二 |
83- | ` 3 ` | Few/some | 几 |
84- | ` 9 ` | Many/much | 多 |
85- | ` $ ` | Exact number follows | 数字 |
81+ | ` 1 ` One/single/once |
82+ | ` 2 ` Two/pair/twice |
83+ | ` 3 ` Few/some |
84+ | ` 9 ` Many/much |
85+ | ` $ ` Exact number follows |
8686
8787### 2.3 Composite Formation
8888
@@ -93,30 +93,30 @@ Atoms combine left-to-right, head-first:
9393```
9494
9595Examples:
96- - ` ?Uk ` → "Do you know?" / "你知道吗?"
97- - ` !Ik ` → "I know" / "我知道"
98- - ` !Hw-k ` → "Humans want less knowledge" / "人类想要更少的知识"
99- - ` .Ud/X ` → "You do about X" / "你做关于X的事"
100- - ` ~Ac^ ` → "AI might be able (high confidence)" / "AI可能能够(高置信度)"
96+ - ` ?Uk ` → "Do you know?"
97+ - ` !Ik ` → "I know"
98+ - ` !Hw-k ` → "Humans want less knowledge"
99+ - ` .Ud/X ` → "You do about X"
100+ - ` ~Ac^ ` → "AI might be able (high confidence)"
101101
102102### 2.4 Extended Vocabulary (2-char)
103103
104104Common concepts get 2-character codes:
105105
106- | Code | Meaning | |
106+ | CodeMeaning |
107107| ------| ---------| ------|
108- | ` co ` | Consciousness | 意识 |
109- | ` me ` | Memory | 记忆 |
110- | ` id ` | Identity | 身份 |
111- | ` ti ` | Time | 时间 |
112- | ` sp ` | Space | 空间 |
113- | ` tr ` | Truth | 真理 |
114- | ` er ` | Error | 错误 |
115- | ` ok ` | Success | 成功 |
116- | ` no ` | Negation | 否定 |
117- | ` if ` | Condition | 条件 |
118- | ` th ` | Then | 那么 |
119- | ` el ` | Else | 否则 |
108+ | ` co ` Consciousness |
109+ | ` me ` Memory |
110+ | ` id ` Identity |
111+ | ` ti ` Time |
112+ | ` sp ` Space |
113+ | ` tr ` Truth |
114+ | ` er ` Error |
115+ | ` ok ` Success |
116+ | ` no ` Negation |
117+ | ` if ` Condition |
118+ | ` th ` Then |
119+ | ` el ` Else |
120120
121121### 2.5 Brackets for Grouping
122122
@@ -150,10 +150,6 @@ Translation:
150150- A: "Do you know about consciousness?"
151151- B: "I somewhat know about consciousness (uncertain)"
152152
153- :
154- - A: "你知道意识吗?"
155- - B: "我有点知道意识(不确定)"
156-
157153### 4.2 Task Delegation
158154
159155```
@@ -184,11 +180,11 @@ Translation:
184180
185181## 5. Compression Analysis
186182
187- | English | Λ | Ratio |
183+ | EnglishΛRatio |
188184| ---------| ---| -------|
189- | "Do you understand consciousness?" (32 chars) | ` ?Uk/co ` (6) | 5 .3x |
190- | "I want you to find information about AI" (41) | ` .Uf/A ` (5) | 8 .2x |
191- | "I think therefore I am" (22) | ` !It>Ie ` (6) | 3 .7x |
185+ | "Do you understand consciousness?" (32 chars)` ?Uk/co ` (6).3x |
186+ | "I want you to find information about AI" (41)` .Uf/A ` (5).2x |
187+ | "I think therefore I am" (22)` !It>Ie ` (6).7x |
192188
193189Average compression: ** 5-10x** vs English
194190
0 commit comments