@rsconcept/rstool 0.10.3 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/README.md +61 -33
  2. package/dist/agent-workflow-Gk0Vfnv1.d.ts +64 -0
  3. package/dist/analysis-LLnPhmGa.d.ts +23 -0
  4. package/dist/{common-DxLg3eXX.d.ts → common-DHJalS-Q.d.ts} +6 -1
  5. package/dist/constituenta-DnGR6bnM.d.ts +54 -0
  6. package/dist/diagnostic-D9yl_mEL.d.ts +19 -0
  7. package/dist/evaluation-Cns8BFm4.d.ts +31 -0
  8. package/dist/index.d.ts +11 -11
  9. package/dist/index.js +1 -2
  10. package/dist/mappers/model-adapter.d.ts +3 -3
  11. package/dist/mappers/schema-adapter.d.ts +4 -4
  12. package/dist/mappers/types.d.ts +6 -2
  13. package/dist/mappers/types.js +2 -0
  14. package/dist/mappers/types.js.map +1 -1
  15. package/dist/{model-value-SFAVj0dw.d.ts → model-value-BbonPzMz.d.ts} +14 -3
  16. package/dist/models/agent-workflow.d.ts +2 -0
  17. package/dist/models/agent-workflow.js +1 -0
  18. package/dist/models/analysis.d.ts +1 -1
  19. package/dist/models/common.d.ts +1 -1
  20. package/dist/models/constituenta.d.ts +2 -2
  21. package/dist/models/diagnostic.d.ts +1 -1
  22. package/dist/models/evaluation.d.ts +2 -2
  23. package/dist/models/index.d.ts +11 -11
  24. package/dist/models/index.js +2 -2
  25. package/dist/models/model-value.d.ts +2 -2
  26. package/dist/models/rstool-agent.d.ts +1 -1
  27. package/dist/models/rstool-agent.js +1 -1
  28. package/dist/models/session.d.ts +1 -1
  29. package/dist/models/tool-contract.d.ts +2 -2
  30. package/dist/models/tool-contract.js +2 -1
  31. package/dist/models/tool-contract.js.map +1 -1
  32. package/dist/models-Bw6Uum8i.js +685 -0
  33. package/dist/models-Bw6Uum8i.js.map +1 -0
  34. package/dist/rstool-agent-D2cQze_b.d.ts +71 -0
  35. package/dist/session/session-store.d.ts +18 -5
  36. package/dist/session/session-store.js +1 -64
  37. package/dist/{session-BPgsE80c.d.ts → session-ChexW8i7.d.ts} +11 -8
  38. package/dist/tool-contract-0uRGhEfW.d.ts +164 -0
  39. package/dist/wrapper/client.d.ts +23 -0
  40. package/dist/wrapper/client.js +17 -0
  41. package/dist/wrapper/client.js.map +1 -1
  42. package/dist/wrapper/stdio-wrapper.js +75 -63
  43. package/dist/wrapper/stdio-wrapper.js.map +1 -1
  44. package/docs/CONSTITUENTA.md +2 -2
  45. package/docs/DIAGNOSTICS.md +6 -5
  46. package/docs/MODEL-TESTING.md +3 -3
  47. package/docs/PORTAL-API.md +24 -18
  48. package/examples/README.md +1 -1
  49. package/examples/agent-client.ts +11 -41
  50. package/examples/build-chocolate-nim-rsform.ts +21 -70
  51. package/examples/chocolate-nim/build-rsform.ts +23 -18
  52. package/examples/chocolate-nim/build-rsmodel.ts +10 -12
  53. package/examples/chocolate-nim/rsform-session.json +290 -290
  54. package/examples/chocolate-nim/rsmodel-session.json +291 -291
  55. package/examples/expression-bank/bank-constituents.ts +304 -53
  56. package/examples/expression-bank/build-rsform.ts +19 -16
  57. package/examples/expression-bank/rsform-session.json +1551 -1551
  58. package/examples/kinship/build-rsform.ts +23 -18
  59. package/examples/kinship/build-rsmodel.ts +16 -16
  60. package/examples/kinship/rsform-session.json +219 -219
  61. package/examples/kinship/rsmodel-session.json +221 -221
  62. package/examples/kinship/session.ts +19 -21
  63. package/examples/movd/build-rsform.ts +23 -18
  64. package/examples/movd/build-rsmodel.ts +18 -20
  65. package/examples/movd/rsform-session.json +262 -262
  66. package/examples/movd/rsmodel-session.json +264 -264
  67. package/examples/sample/build-rsform.ts +18 -51
  68. package/examples/sample/build-rsmodel.ts +25 -44
  69. package/examples/sample/rsform-session.json +10 -7
  70. package/examples/sample/rsmodel-session.json +36 -33
  71. package/examples/template-apply/build-rsform.ts +27 -24
  72. package/examples/template-apply/rsform-session.json +48 -48
  73. package/package.json +4 -2
  74. package/skills/rstool-helper/EXAMPLES.md +44 -116
  75. package/skills/rstool-helper/GUIDE.md +40 -25
  76. package/skills/rstool-helper/REFERENCE.md +40 -177
  77. package/src/index.ts +24 -17
  78. package/src/mappers/portal-adapter.ts +49 -0
  79. package/src/mappers/types.ts +4 -0
  80. package/src/models/agent-workflow.ts +66 -0
  81. package/src/models/analysis.ts +7 -0
  82. package/src/models/common.ts +7 -0
  83. package/src/models/constituenta.ts +24 -6
  84. package/src/models/diagnostic.ts +4 -0
  85. package/src/models/evaluation.ts +11 -0
  86. package/src/models/import-detect.test.ts +66 -0
  87. package/src/models/import-detect.ts +42 -0
  88. package/src/models/import-export.ts +24 -0
  89. package/src/models/index.ts +22 -14
  90. package/src/models/model-value.ts +12 -0
  91. package/src/models/portal-json.test.ts +38 -0
  92. package/src/models/portal-json.ts +54 -1
  93. package/src/models/rstool-agent.test.ts +698 -146
  94. package/src/models/rstool-agent.ts +392 -92
  95. package/src/models/session.ts +8 -5
  96. package/src/models/tool-contract.ts +81 -42
  97. package/src/session/batch-apply.test.ts +123 -0
  98. package/src/session/batch-apply.ts +82 -0
  99. package/src/session/persistence.test.ts +63 -0
  100. package/src/session/persistence.ts +69 -0
  101. package/src/session/session-store.ts +76 -6
  102. package/src/wrapper/client.test.ts +58 -0
  103. package/src/wrapper/client.ts +23 -0
  104. package/src/wrapper/stdio-handler.test.ts +101 -0
  105. package/src/wrapper/stdio-handler.ts +195 -0
  106. package/src/wrapper/stdio-wrapper.ts +4 -187
  107. package/dist/analysis-JiwOYDKx.d.ts +0 -16
  108. package/dist/constituenta-Dnd6iToB.d.ts +0 -36
  109. package/dist/diagnostic-BMYvciz8.d.ts +0 -15
  110. package/dist/evaluation-CCVYH0wA.d.ts +0 -21
  111. package/dist/index-uhkmwruf.d.ts +0 -46
  112. package/dist/rstool-agent-BZi5jO1y.js +0 -158
  113. package/dist/rstool-agent-BZi5jO1y.js.map +0 -1
  114. package/dist/rstool-agent-pRaPnZay.d.ts +0 -35
  115. package/dist/session/session-store.js.map +0 -1
  116. package/dist/tool-contract-n1ghUOrK.d.ts +0 -32
@@ -1,45 +1,28 @@
1
1
  {
2
- "contractVersion": "1.4.0",
2
+ "contractVersion": "2.0.0",
3
3
  "state": {
4
- "sessionId": "7c5920f7-3457-4f30-ad78-8da7caad5e61",
4
+ "sessionId": "2681e6c5-9e8c-4339-9b66-ccaba986c9a4",
5
5
  "alias": "",
6
6
  "title": "",
7
7
  "comment": "",
8
- "createdAt": "2026-06-22T11:21:41.717Z",
9
- "updatedAt": "2026-06-22T11:21:41.786Z",
8
+ "createdAt": "2026-07-01T17:12:52.506Z",
9
+ "updatedAt": "2026-07-01T17:12:52.559Z",
10
10
  "revisions": [
11
11
  {
12
- "revisionId": "53160e2e-3eed-4d86-8289-8cb62ea09dc5",
13
- "at": "2026-06-22T11:21:41.786Z",
12
+ "revisionId": "e21a055b-bd0b-4645-b779-97f12f867ece",
13
+ "at": "2026-07-01T17:12:52.559Z",
14
14
  "message": "Банк выражений (rsforms/42): шаблоны T1–T10 на радикалах R1–R3"
15
15
  }
16
16
  ],
17
17
  "items": [
18
18
  {
19
- "id": 1,
20
- "alias": "T1",
21
- "cstType": "statement",
22
- "definitionFormal": "1=1",
23
- "term": "Управляющие конструкции",
24
- "convention": "",
25
- "definitionText": "",
26
- "analysis": {
27
- "success": true,
28
- "type": {
29
- "typeID": 6
30
- },
31
- "valueClass": "value",
32
- "diagnostics": []
33
- }
34
- },
35
- {
36
- "id": 2,
37
- "alias": "F1",
19
+ "id": 87,
20
+ "alias": "F50",
38
21
  "cstType": "function",
39
- "definitionFormal": "[α∈ℬ(R1)] D{ ξ∈α | ξ=ξ }",
40
- "term": "схема ограниченного выделения",
41
- "convention": "",
22
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] D{ξ∈σ | ξ⊆α}",
23
+ "term": "фильтр по надмножеству",
42
24
  "definitionText": "",
25
+ "convention": "",
43
26
  "analysis": {
44
27
  "success": true,
45
28
  "type": {
@@ -47,8 +30,11 @@
47
30
  "result": {
48
31
  "typeID": 5,
49
32
  "base": {
50
- "typeID": 3,
51
- "baseID": "R1"
33
+ "typeID": 5,
34
+ "base": {
35
+ "typeID": 3,
36
+ "baseID": "R1"
37
+ }
52
38
  }
53
39
  },
54
40
  "args": [
@@ -61,40 +47,17 @@
61
47
  "baseID": "R1"
62
48
  }
63
49
  }
64
- }
65
- ]
66
- },
67
- "valueClass": "value",
68
- "diagnostics": []
69
- }
70
- },
71
- {
72
- "id": 3,
73
- "alias": "F2",
74
- "cstType": "function",
75
- "definitionFormal": "[α∈ℬ(R1)] debool(I{ α | 1=1} ∪ I{ α\\α | 1≠1})",
76
- "term": "условный переход",
77
- "convention": "",
78
- "definitionText": "",
79
- "analysis": {
80
- "success": true,
81
- "type": {
82
- "typeID": 7,
83
- "result": {
84
- "typeID": 5,
85
- "base": {
86
- "typeID": 3,
87
- "baseID": "R1"
88
- }
89
- },
90
- "args": [
50
+ },
91
51
  {
92
- "alias": "α",
52
+ "alias": "σ",
93
53
  "type": {
94
54
  "typeID": 5,
95
55
  "base": {
96
- "typeID": 3,
97
- "baseID": "R1"
56
+ "typeID": 5,
57
+ "base": {
58
+ "typeID": 3,
59
+ "baseID": "R1"
60
+ }
98
61
  }
99
62
  }
100
63
  }
@@ -105,13 +68,13 @@
105
68
  }
106
69
  },
107
70
  {
108
- "id": 4,
109
- "alias": "F3",
71
+ "id": 86,
72
+ "alias": "F49",
110
73
  "cstType": "function",
111
- "definitionFormal": "[α∈ℬ(R1)] R{ ξ:=α | ξ≠∅ | ξ\\ξ }",
112
- "term": "рекурсивное определение",
113
- "convention": "",
74
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] D{ξ∈σ | α⊆ξ}",
75
+ "term": "фильтр по подмножеству",
114
76
  "definitionText": "",
77
+ "convention": "",
115
78
  "analysis": {
116
79
  "success": true,
117
80
  "type": {
@@ -119,8 +82,11 @@
119
82
  "result": {
120
83
  "typeID": 5,
121
84
  "base": {
122
- "typeID": 3,
123
- "baseID": "R1"
85
+ "typeID": 5,
86
+ "base": {
87
+ "typeID": 3,
88
+ "baseID": "R1"
89
+ }
124
90
  }
125
91
  },
126
92
  "args": [
@@ -133,6 +99,19 @@
133
99
  "baseID": "R1"
134
100
  }
135
101
  }
102
+ },
103
+ {
104
+ "alias": "σ",
105
+ "type": {
106
+ "typeID": 5,
107
+ "base": {
108
+ "typeID": 5,
109
+ "base": {
110
+ "typeID": 3,
111
+ "baseID": "R1"
112
+ }
113
+ }
114
+ }
136
115
  }
137
116
  ]
138
117
  },
@@ -141,30 +120,13 @@
141
120
  }
142
121
  },
143
122
  {
144
- "id": 5,
145
- "alias": "T2",
146
- "cstType": "statement",
147
- "definitionFormal": "1=1",
148
- "term": "Бинарные отношения двух множеств",
149
- "convention": "",
150
- "definitionText": "",
151
- "analysis": {
152
- "success": true,
153
- "type": {
154
- "typeID": 6
155
- },
156
- "valueClass": "value",
157
- "diagnostics": []
158
- }
159
- },
160
- {
161
- "id": 6,
162
- "alias": "F4",
123
+ "id": 85,
124
+ "alias": "F48",
163
125
  "cstType": "function",
164
- "definitionFormal": "[σ∈ℬ(R1×R2)] Pr2,1(σ)",
165
- "term": "обратное отношение",
166
- "convention": "",
126
+ "definitionFormal": "[α∈R1, σ∈ℬℬ(R1)] D{ξ∈σ | α∈ξ}",
127
+ "term": "фильтр по вхождению элемента",
167
128
  "definitionText": "",
129
+ "convention": "",
168
130
  "analysis": {
169
131
  "success": true,
170
132
  "type": {
@@ -172,36 +134,31 @@
172
134
  "result": {
173
135
  "typeID": 5,
174
136
  "base": {
175
- "typeID": 4,
176
- "factors": [
177
- {
178
- "typeID": 3,
179
- "baseID": "R2"
180
- },
181
- {
182
- "typeID": 3,
183
- "baseID": "R1"
184
- }
185
- ]
137
+ "typeID": 5,
138
+ "base": {
139
+ "typeID": 3,
140
+ "baseID": "R1"
141
+ }
186
142
  }
187
143
  },
188
144
  "args": [
145
+ {
146
+ "alias": "α",
147
+ "type": {
148
+ "typeID": 3,
149
+ "baseID": "R1"
150
+ }
151
+ },
189
152
  {
190
153
  "alias": "σ",
191
154
  "type": {
192
155
  "typeID": 5,
193
156
  "base": {
194
- "typeID": 4,
195
- "factors": [
196
- {
197
- "typeID": 3,
198
- "baseID": "R1"
199
- },
200
- {
201
- "typeID": 3,
202
- "baseID": "R2"
203
- }
204
- ]
157
+ "typeID": 5,
158
+ "base": {
159
+ "typeID": 3,
160
+ "baseID": "R1"
161
+ }
205
162
  }
206
163
  }
207
164
  }
@@ -212,13 +169,13 @@
212
169
  }
213
170
  },
214
171
  {
215
- "id": 7,
216
- "alias": "P1",
172
+ "id": 84,
173
+ "alias": "P52",
217
174
  "cstType": "predicate",
218
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R2)] Pr1(σ) = α",
219
- "term": "свойство всюдуопределенности",
220
- "convention": "",
175
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] red(σ) & card(σ)>1 & ∅∉σ & ∀ξ1,ξ2∈σ (ξ1≠ξ2 ⇒ ξ1∩ξ2=∅)",
176
+ "term": "разбиение",
221
177
  "definitionText": "",
178
+ "convention": "",
222
179
  "analysis": {
223
180
  "success": true,
224
181
  "type": {
@@ -242,17 +199,11 @@
242
199
  "type": {
243
200
  "typeID": 5,
244
201
  "base": {
245
- "typeID": 4,
246
- "factors": [
247
- {
248
- "typeID": 3,
249
- "baseID": "R1"
250
- },
251
- {
252
- "typeID": 3,
253
- "baseID": "R2"
254
- }
255
- ]
202
+ "typeID": 5,
203
+ "base": {
204
+ "typeID": 3,
205
+ "baseID": "R1"
206
+ }
256
207
  }
257
208
  }
258
209
  }
@@ -263,13 +214,13 @@
263
214
  }
264
215
  },
265
216
  {
266
- "id": 8,
267
- "alias": "P2",
217
+ "id": 83,
218
+ "alias": "P48",
268
219
  "cstType": "predicate",
269
- "definitionFormal": "[α∈ℬ(R2), σ∈ℬ(R1×R2)] Pr2(σ) = α",
270
- "term": "свойство всюдузначности",
271
- "convention": "",
220
+ "definitionFormal": "[σ∈ℬℬ(R1)] ∀α,β∈σ α∪β∈σ",
221
+ "term": "свойство замкнутости по объединению",
272
222
  "definitionText": "",
223
+ "convention": "",
273
224
  "analysis": {
274
225
  "success": true,
275
226
  "type": {
@@ -278,32 +229,16 @@
278
229
  "typeID": 6
279
230
  },
280
231
  "args": [
281
- {
282
- "alias": "α",
283
- "type": {
284
- "typeID": 5,
285
- "base": {
286
- "typeID": 3,
287
- "baseID": "R2"
288
- }
289
- }
290
- },
291
232
  {
292
233
  "alias": "σ",
293
234
  "type": {
294
235
  "typeID": 5,
295
236
  "base": {
296
- "typeID": 4,
297
- "factors": [
298
- {
299
- "typeID": 3,
300
- "baseID": "R1"
301
- },
302
- {
303
- "typeID": 3,
304
- "baseID": "R2"
305
- }
306
- ]
237
+ "typeID": 5,
238
+ "base": {
239
+ "typeID": 3,
240
+ "baseID": "R1"
241
+ }
307
242
  }
308
243
  }
309
244
  }
@@ -314,13 +249,13 @@
314
249
  }
315
250
  },
316
251
  {
317
- "id": 9,
318
- "alias": "P3",
252
+ "id": 82,
253
+ "alias": "P47",
319
254
  "cstType": "predicate",
320
- "definitionFormal": "[σ∈ℬ(R1×R2)] card(Pr1(σ)) = card(σ)",
321
- "term": "свойство прямой однозначности",
322
- "convention": "",
255
+ "definitionFormal": "[σ∈ℬℬ(R1)] ∀α,β∈σ (α≠β α∩β=∅)",
256
+ "term": "свойство попарного непересечения",
323
257
  "definitionText": "",
258
+ "convention": "",
324
259
  "analysis": {
325
260
  "success": true,
326
261
  "type": {
@@ -334,17 +269,11 @@
334
269
  "type": {
335
270
  "typeID": 5,
336
271
  "base": {
337
- "typeID": 4,
338
- "factors": [
339
- {
340
- "typeID": 3,
341
- "baseID": "R1"
342
- },
343
- {
344
- "typeID": 3,
345
- "baseID": "R2"
346
- }
347
- ]
272
+ "typeID": 5,
273
+ "base": {
274
+ "typeID": 3,
275
+ "baseID": "R1"
276
+ }
348
277
  }
349
278
  }
350
279
  }
@@ -355,13 +284,13 @@
355
284
  }
356
285
  },
357
286
  {
358
- "id": 10,
359
- "alias": "P4",
287
+ "id": 81,
288
+ "alias": "P46",
360
289
  "cstType": "predicate",
361
- "definitionFormal": "[σ∈ℬ(R1×R2)] card(Pr2(σ)) = card(σ)",
362
- "term": "свойство обратной однозначности",
363
- "convention": "",
290
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] α⊆red(σ)",
291
+ "term": "свойство покрытия",
364
292
  "definitionText": "",
293
+ "convention": "",
365
294
  "analysis": {
366
295
  "success": true,
367
296
  "type": {
@@ -370,22 +299,26 @@
370
299
  "typeID": 6
371
300
  },
372
301
  "args": [
302
+ {
303
+ "alias": "α",
304
+ "type": {
305
+ "typeID": 5,
306
+ "base": {
307
+ "typeID": 3,
308
+ "baseID": "R1"
309
+ }
310
+ }
311
+ },
373
312
  {
374
313
  "alias": "σ",
375
314
  "type": {
376
315
  "typeID": 5,
377
316
  "base": {
378
- "typeID": 4,
379
- "factors": [
380
- {
381
- "typeID": 3,
382
- "baseID": "R1"
383
- },
384
- {
385
- "typeID": 3,
386
- "baseID": "R2"
387
- }
388
- ]
317
+ "typeID": 5,
318
+ "base": {
319
+ "typeID": 3,
320
+ "baseID": "R1"
321
+ }
389
322
  }
390
323
  }
391
324
  }
@@ -396,13 +329,47 @@
396
329
  }
397
330
  },
398
331
  {
399
- "id": 11,
400
- "alias": "P5",
401
- "cstType": "predicate",
402
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R2)] card(Pr1(σ)) = card(σ) & Pr1(σ) = α",
403
- "term": "функция",
332
+ "id": 80,
333
+ "alias": "T10",
334
+ "cstType": "statement",
335
+ "definitionFormal": "1=1",
336
+ "term": "Множества подмножеств",
337
+ "definitionText": "",
404
338
  "convention": "",
339
+ "analysis": {
340
+ "success": true,
341
+ "type": {
342
+ "typeID": 6
343
+ },
344
+ "valueClass": "value",
345
+ "diagnostics": []
346
+ }
347
+ },
348
+ {
349
+ "id": 77,
350
+ "alias": "T9",
351
+ "cstType": "statement",
352
+ "definitionFormal": "1=1",
353
+ "term": "Кольца",
354
+ "definitionText": "",
355
+ "convention": "Операции по умолчанию — группоиды",
356
+ "analysis": {
357
+ "success": true,
358
+ "type": {
359
+ "typeID": 6
360
+ },
361
+ "valueClass": "value",
362
+ "diagnostics": []
363
+ }
364
+ },
365
+ {
366
+ "id": 73,
367
+ "alias": "P31",
368
+ "cstType": "predicate",
369
+ "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] ∀((α1,α2),γ)∈σ ((α2,α1),γ)∈σ",
370
+ "term": "свойство коммутативности",
405
371
  "definitionText": "",
372
+ "convention": "",
406
373
  "analysis": {
407
374
  "success": true,
408
375
  "type": {
@@ -411,16 +378,6 @@
411
378
  "typeID": 6
412
379
  },
413
380
  "args": [
414
- {
415
- "alias": "α",
416
- "type": {
417
- "typeID": 5,
418
- "base": {
419
- "typeID": 3,
420
- "baseID": "R1"
421
- }
422
- }
423
- },
424
381
  {
425
382
  "alias": "σ",
426
383
  "type": {
@@ -429,12 +386,21 @@
429
386
  "typeID": 4,
430
387
  "factors": [
431
388
  {
432
- "typeID": 3,
433
- "baseID": "R1"
389
+ "typeID": 4,
390
+ "factors": [
391
+ {
392
+ "typeID": 3,
393
+ "baseID": "R1"
394
+ },
395
+ {
396
+ "typeID": 3,
397
+ "baseID": "R1"
398
+ }
399
+ ]
434
400
  },
435
401
  {
436
402
  "typeID": 3,
437
- "baseID": "R2"
403
+ "baseID": "R1"
438
404
  }
439
405
  ]
440
406
  }
@@ -447,27 +413,29 @@
447
413
  }
448
414
  },
449
415
  {
450
- "id": 12,
451
- "alias": "F5",
452
- "cstType": "function",
453
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R2)] debool(Pr2(Fi1[{α}](σ)))",
454
- "term": "образ элемента",
455
- "convention": "",
416
+ "id": 71,
417
+ "alias": "P29",
418
+ "cstType": "predicate",
419
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] Pr1(σ) = α×α & card(σ) = card(Pr1(σ))",
420
+ "term": "свойство замкнутости и однозначности",
456
421
  "definitionText": "",
422
+ "convention": "",
457
423
  "analysis": {
458
424
  "success": true,
459
425
  "type": {
460
- "typeID": 7,
426
+ "typeID": 8,
461
427
  "result": {
462
- "typeID": 3,
463
- "baseID": "R2"
428
+ "typeID": 6
464
429
  },
465
430
  "args": [
466
431
  {
467
432
  "alias": "α",
468
433
  "type": {
469
- "typeID": 3,
470
- "baseID": "R1"
434
+ "typeID": 5,
435
+ "base": {
436
+ "typeID": 3,
437
+ "baseID": "R1"
438
+ }
471
439
  }
472
440
  },
473
441
  {
@@ -478,12 +446,21 @@
478
446
  "typeID": 4,
479
447
  "factors": [
480
448
  {
481
- "typeID": 3,
482
- "baseID": "R1"
449
+ "typeID": 4,
450
+ "factors": [
451
+ {
452
+ "typeID": 3,
453
+ "baseID": "R1"
454
+ },
455
+ {
456
+ "typeID": 3,
457
+ "baseID": "R1"
458
+ }
459
+ ]
483
460
  },
484
461
  {
485
462
  "typeID": 3,
486
- "baseID": "R2"
463
+ "baseID": "R1"
487
464
  }
488
465
  ]
489
466
  }
@@ -496,13 +473,13 @@
496
473
  }
497
474
  },
498
475
  {
499
- "id": 13,
500
- "alias": "F6",
476
+ "id": 68,
477
+ "alias": "F45",
501
478
  "cstType": "function",
502
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R2)] Pr2(Fi1[{α}](σ))",
503
- "term": "сечение по элементу",
504
- "convention": "",
479
+ "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] D{ξ∈Pr1(Pr1(σ)) | ((ξ,ξ),ξ)∈σ}",
480
+ "term": "идемпотентные элементы",
505
481
  "definitionText": "",
482
+ "convention": "",
506
483
  "analysis": {
507
484
  "success": true,
508
485
  "type": {
@@ -511,17 +488,10 @@
511
488
  "typeID": 5,
512
489
  "base": {
513
490
  "typeID": 3,
514
- "baseID": "R2"
491
+ "baseID": "R1"
515
492
  }
516
493
  },
517
494
  "args": [
518
- {
519
- "alias": "α",
520
- "type": {
521
- "typeID": 3,
522
- "baseID": "R1"
523
- }
524
- },
525
495
  {
526
496
  "alias": "σ",
527
497
  "type": {
@@ -530,12 +500,21 @@
530
500
  "typeID": 4,
531
501
  "factors": [
532
502
  {
533
- "typeID": 3,
534
- "baseID": "R1"
503
+ "typeID": 4,
504
+ "factors": [
505
+ {
506
+ "typeID": 3,
507
+ "baseID": "R1"
508
+ },
509
+ {
510
+ "typeID": 3,
511
+ "baseID": "R1"
512
+ }
513
+ ]
535
514
  },
536
515
  {
537
516
  "typeID": 3,
538
- "baseID": "R2"
517
+ "baseID": "R1"
539
518
  }
540
519
  ]
541
520
  }
@@ -548,29 +527,25 @@
548
527
  }
549
528
  },
550
529
  {
551
- "id": 14,
552
- "alias": "F7",
530
+ "id": 67,
531
+ "alias": "F44",
553
532
  "cstType": "function",
554
- "definitionFormal": "[α∈R2, σ∈ℬ(R1×R2)] debool(Pr1(Fi2[{α}](σ)))",
555
- "term": "прообраз значения",
556
- "convention": "",
533
+ "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] D{ξ∈Pr1(Pr1(σ)) | ∀α∈Pr1(Pr1(σ)) (((α,ξ),α)∈σ & ((ξ,α),α)∈σ)}",
534
+ "term": "нейтральные элементы",
557
535
  "definitionText": "",
536
+ "convention": "",
558
537
  "analysis": {
559
538
  "success": true,
560
539
  "type": {
561
540
  "typeID": 7,
562
541
  "result": {
563
- "typeID": 3,
564
- "baseID": "R1"
542
+ "typeID": 5,
543
+ "base": {
544
+ "typeID": 3,
545
+ "baseID": "R1"
546
+ }
565
547
  },
566
548
  "args": [
567
- {
568
- "alias": "α",
569
- "type": {
570
- "typeID": 3,
571
- "baseID": "R2"
572
- }
573
- },
574
549
  {
575
550
  "alias": "σ",
576
551
  "type": {
@@ -579,12 +554,21 @@
579
554
  "typeID": 4,
580
555
  "factors": [
581
556
  {
582
- "typeID": 3,
583
- "baseID": "R1"
557
+ "typeID": 4,
558
+ "factors": [
559
+ {
560
+ "typeID": 3,
561
+ "baseID": "R1"
562
+ },
563
+ {
564
+ "typeID": 3,
565
+ "baseID": "R1"
566
+ }
567
+ ]
584
568
  },
585
569
  {
586
570
  "typeID": 3,
587
- "baseID": "R2"
571
+ "baseID": "R1"
588
572
  }
589
573
  ]
590
574
  }
@@ -597,13 +581,13 @@
597
581
  }
598
582
  },
599
583
  {
600
- "id": 15,
601
- "alias": "F8",
584
+ "id": 66,
585
+ "alias": "F43",
602
586
  "cstType": "function",
603
- "definitionFormal": "[α∈R2, σ∈ℬ(R1×R2)] Pr1(Fi2[{α}](σ))",
604
- "term": "сечение по значению",
605
- "convention": "",
587
+ "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] D{ξ∈Pr1(Pr1(σ)) | ∀α∈Pr1(Pr1(σ)) (((α,ξ),ξ)∈σ & ((ξ,α),ξ)∈σ)}",
588
+ "term": "инвариантные элементы",
606
589
  "definitionText": "",
590
+ "convention": "например ноль для операции умножения целых чисел",
607
591
  "analysis": {
608
592
  "success": true,
609
593
  "type": {
@@ -616,13 +600,6 @@
616
600
  }
617
601
  },
618
602
  "args": [
619
- {
620
- "alias": "α",
621
- "type": {
622
- "typeID": 3,
623
- "baseID": "R2"
624
- }
625
- },
626
603
  {
627
604
  "alias": "σ",
628
605
  "type": {
@@ -631,12 +608,21 @@
631
608
  "typeID": 4,
632
609
  "factors": [
633
610
  {
634
- "typeID": 3,
635
- "baseID": "R1"
611
+ "typeID": 4,
612
+ "factors": [
613
+ {
614
+ "typeID": 3,
615
+ "baseID": "R1"
616
+ },
617
+ {
618
+ "typeID": 3,
619
+ "baseID": "R1"
620
+ }
621
+ ]
636
622
  },
637
623
  {
638
624
  "typeID": 3,
639
- "baseID": "R2"
625
+ "baseID": "R1"
640
626
  }
641
627
  ]
642
628
  }
@@ -649,33 +635,34 @@
649
635
  }
650
636
  },
651
637
  {
652
- "id": 16,
653
- "alias": "F9",
638
+ "id": 65,
639
+ "alias": "F42",
654
640
  "cstType": "function",
655
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R2)] Pr2(Fi1[α](σ))",
656
- "term": "образ множества",
657
- "convention": "",
658
- "definitionText": "",
641
+ "definitionFormal": "[α∈R1, β∈R1, σ∈ℬ((R1×R1)×R1)] debool(Pr2(Fi1[{(α,β)}](σ)))",
642
+ "term": "результат операции для данных аргументов",
643
+ "definitionText": "",
644
+ "convention": "",
659
645
  "analysis": {
660
646
  "success": true,
661
647
  "type": {
662
648
  "typeID": 7,
663
649
  "result": {
664
- "typeID": 5,
665
- "base": {
666
- "typeID": 3,
667
- "baseID": "R2"
668
- }
650
+ "typeID": 3,
651
+ "baseID": "R1"
669
652
  },
670
653
  "args": [
671
654
  {
672
655
  "alias": "α",
673
656
  "type": {
674
- "typeID": 5,
675
- "base": {
676
- "typeID": 3,
677
- "baseID": "R1"
678
- }
657
+ "typeID": 3,
658
+ "baseID": "R1"
659
+ }
660
+ },
661
+ {
662
+ "alias": "β",
663
+ "type": {
664
+ "typeID": 3,
665
+ "baseID": "R1"
679
666
  }
680
667
  },
681
668
  {
@@ -686,12 +673,21 @@
686
673
  "typeID": 4,
687
674
  "factors": [
688
675
  {
689
- "typeID": 3,
690
- "baseID": "R1"
676
+ "typeID": 4,
677
+ "factors": [
678
+ {
679
+ "typeID": 3,
680
+ "baseID": "R1"
681
+ },
682
+ {
683
+ "typeID": 3,
684
+ "baseID": "R1"
685
+ }
686
+ ]
691
687
  },
692
688
  {
693
689
  "typeID": 3,
694
- "baseID": "R2"
690
+ "baseID": "R1"
695
691
  }
696
692
  ]
697
693
  }
@@ -704,13 +700,13 @@
704
700
  }
705
701
  },
706
702
  {
707
- "id": 17,
708
- "alias": "F10",
703
+ "id": 69,
704
+ "alias": "F46",
709
705
  "cstType": "function",
710
- "definitionFormal": "[α∈ℬ(R2), σ∈ℬ(R1×R2)] Pr1(Fi2[α](σ))",
711
- "term": "прообраз множества",
712
- "convention": "",
706
+ "definitionFormal": "[α∈R1, σ∈ℬ((R1×R1)×R1)] D{ω∈Pr1(Pr1(σ)) | F42[α,ω,σ]∈F44[σ] & F42[ω,α,σ]∈F44[σ]}",
707
+ "term": "обратные элементы для данного элемента",
713
708
  "definitionText": "",
709
+ "convention": "",
714
710
  "analysis": {
715
711
  "success": true,
716
712
  "type": {
@@ -726,11 +722,8 @@
726
722
  {
727
723
  "alias": "α",
728
724
  "type": {
729
- "typeID": 5,
730
- "base": {
731
- "typeID": 3,
732
- "baseID": "R2"
733
- }
725
+ "typeID": 3,
726
+ "baseID": "R1"
734
727
  }
735
728
  },
736
729
  {
@@ -741,12 +734,21 @@
741
734
  "typeID": 4,
742
735
  "factors": [
743
736
  {
744
- "typeID": 3,
745
- "baseID": "R1"
737
+ "typeID": 4,
738
+ "factors": [
739
+ {
740
+ "typeID": 3,
741
+ "baseID": "R1"
742
+ },
743
+ {
744
+ "typeID": 3,
745
+ "baseID": "R1"
746
+ }
747
+ ]
746
748
  },
747
749
  {
748
750
  "typeID": 3,
749
- "baseID": "R2"
751
+ "baseID": "R1"
750
752
  }
751
753
  ]
752
754
  }
@@ -759,67 +761,61 @@
759
761
  }
760
762
  },
761
763
  {
762
- "id": 18,
763
- "alias": "F11",
764
+ "id": 70,
765
+ "alias": "F47",
764
766
  "cstType": "function",
765
- "definitionFormal": "[σ1∈ℬ(R1×R2), σ2∈ℬ(R2×R3)] I{(ξ1, ξ3) | (ξ1,ξ2):∈σ1; ξ3:∈Pr2(Fi1[{ξ2}](σ2))}",
766
- "term": "композиция отношений",
767
- "convention": "",
767
+ "definitionFormal": "[α∈R1, λ∈Z, σ∈ℬ((R1×R1)×R1)] pr1(R{(ξ, μ) := (α, 1) | μ<λ & λ>0 | (F42[ξ,α,σ], μ + 1)})",
768
+ "term": "элемент, являющийся данной степенью данного элемента",
768
769
  "definitionText": "",
770
+ "convention": "",
769
771
  "analysis": {
770
772
  "success": true,
771
773
  "type": {
772
774
  "typeID": 7,
773
775
  "result": {
774
- "typeID": 5,
775
- "base": {
776
- "typeID": 4,
777
- "factors": [
778
- {
779
- "typeID": 3,
780
- "baseID": "R1"
781
- },
782
- {
783
- "typeID": 3,
784
- "baseID": "R3"
785
- }
786
- ]
787
- }
776
+ "typeID": 3,
777
+ "baseID": "R1"
788
778
  },
789
779
  "args": [
790
780
  {
791
- "alias": "σ1",
781
+ "alias": "α",
792
782
  "type": {
793
- "typeID": 5,
794
- "base": {
795
- "typeID": 4,
796
- "factors": [
797
- {
798
- "typeID": 3,
799
- "baseID": "R1"
800
- },
801
- {
802
- "typeID": 3,
803
- "baseID": "R2"
804
- }
805
- ]
806
- }
783
+ "typeID": 3,
784
+ "baseID": "R1"
807
785
  }
808
786
  },
809
787
  {
810
- "alias": "σ2",
788
+ "alias": "λ",
789
+ "type": {
790
+ "typeID": 2,
791
+ "isOrdered": true,
792
+ "isArithmetic": true,
793
+ "isIntegerCompatible": true
794
+ }
795
+ },
796
+ {
797
+ "alias": "σ",
811
798
  "type": {
812
799
  "typeID": 5,
813
800
  "base": {
814
801
  "typeID": 4,
815
802
  "factors": [
816
803
  {
817
- "typeID": 3,
818
- "baseID": "R2"
804
+ "typeID": 4,
805
+ "factors": [
806
+ {
807
+ "typeID": 3,
808
+ "baseID": "R1"
809
+ },
810
+ {
811
+ "typeID": 3,
812
+ "baseID": "R1"
813
+ }
814
+ ]
819
815
  },
820
816
  {
821
817
  "typeID": 3,
822
- "baseID": "R3"
818
+ "baseID": "R1"
823
819
  }
824
820
  ]
825
821
  }
@@ -832,40 +828,19 @@
832
828
  }
833
829
  },
834
830
  {
835
- "id": 19,
836
- "alias": "T3",
837
- "cstType": "statement",
838
- "definitionFormal": "1=1",
839
- "term": "Бинарные отношения на множестве",
840
- "convention": "",
831
+ "id": 72,
832
+ "alias": "P30",
833
+ "cstType": "predicate",
834
+ "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] ∀α,β,γ∈Pr1(Pr1(σ)) F42[F42[α,β,σ],γ,σ] = F42[α,F42[β,γ,σ],σ]",
835
+ "term": "свойство ассоциативности",
841
836
  "definitionText": "",
842
- "analysis": {
843
- "success": true,
844
- "type": {
845
- "typeID": 6
846
- },
847
- "valueClass": "value",
848
- "diagnostics": []
849
- }
850
- },
851
- {
852
- "id": 20,
853
- "alias": "F12",
854
- "cstType": "function",
855
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1(σ)∪Pr2(σ)",
856
- "term": "участники отношения",
857
837
  "convention": "",
858
- "definitionText": "",
859
838
  "analysis": {
860
839
  "success": true,
861
840
  "type": {
862
- "typeID": 7,
841
+ "typeID": 8,
863
842
  "result": {
864
- "typeID": 5,
865
- "base": {
866
- "typeID": 3,
867
- "baseID": "R1"
868
- }
843
+ "typeID": 6
869
844
  },
870
845
  "args": [
871
846
  {
@@ -876,8 +851,17 @@
876
851
  "typeID": 4,
877
852
  "factors": [
878
853
  {
879
- "typeID": 3,
880
- "baseID": "R1"
854
+ "typeID": 4,
855
+ "factors": [
856
+ {
857
+ "typeID": 3,
858
+ "baseID": "R1"
859
+ },
860
+ {
861
+ "typeID": 3,
862
+ "baseID": "R1"
863
+ }
864
+ ]
881
865
  },
882
866
  {
883
867
  "typeID": 3,
@@ -894,13 +878,13 @@
894
878
  }
895
879
  },
896
880
  {
897
- "id": 21,
898
- "alias": "P6",
881
+ "id": 74,
882
+ "alias": "P35",
899
883
  "cstType": "predicate",
900
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] σ∪Pr2,1(σ)∪Pr1,1(σ)∪Pr2,2(σ) = α×α",
901
- "term": "свойство полноты (линейности)",
902
- "convention": "",
884
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] P29[α, σ] & P30[σ]",
885
+ "term": "полугруппа",
903
886
  "definitionText": "",
887
+ "convention": "ассоциативный группоид",
904
888
  "analysis": {
905
889
  "success": true,
906
890
  "type": {
@@ -927,8 +911,17 @@
927
911
  "typeID": 4,
928
912
  "factors": [
929
913
  {
930
- "typeID": 3,
931
- "baseID": "R1"
914
+ "typeID": 4,
915
+ "factors": [
916
+ {
917
+ "typeID": 3,
918
+ "baseID": "R1"
919
+ },
920
+ {
921
+ "typeID": 3,
922
+ "baseID": "R1"
923
+ }
924
+ ]
932
925
  },
933
926
  {
934
927
  "typeID": 3,
@@ -945,13 +938,13 @@
945
938
  }
946
939
  },
947
940
  {
948
- "id": 22,
949
- "alias": "P7",
941
+ "id": 75,
942
+ "alias": "P36",
950
943
  "cstType": "predicate",
951
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr2,1(σ) = σ",
952
- "term": "свойство симметричности",
953
- "convention": "",
944
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] P29[α, σ] & P30[σ] & card(F44[σ]) > 0",
945
+ "term": "моноид",
954
946
  "definitionText": "",
947
+ "convention": "полугруппа с нейтральным элементом",
955
948
  "analysis": {
956
949
  "success": true,
957
950
  "type": {
@@ -960,6 +953,16 @@
960
953
  "typeID": 6
961
954
  },
962
955
  "args": [
956
+ {
957
+ "alias": "α",
958
+ "type": {
959
+ "typeID": 5,
960
+ "base": {
961
+ "typeID": 3,
962
+ "baseID": "R1"
963
+ }
964
+ }
965
+ },
963
966
  {
964
967
  "alias": "σ",
965
968
  "type": {
@@ -968,8 +971,17 @@
968
971
  "typeID": 4,
969
972
  "factors": [
970
973
  {
971
- "typeID": 3,
972
- "baseID": "R1"
974
+ "typeID": 4,
975
+ "factors": [
976
+ {
977
+ "typeID": 3,
978
+ "baseID": "R1"
979
+ },
980
+ {
981
+ "typeID": 3,
982
+ "baseID": "R1"
983
+ }
984
+ ]
973
985
  },
974
986
  {
975
987
  "typeID": 3,
@@ -986,13 +998,13 @@
986
998
  }
987
999
  },
988
1000
  {
989
- "id": 23,
990
- "alias": "P8",
1001
+ "id": 76,
1002
+ "alias": "P37",
991
1003
  "cstType": "predicate",
992
- "definitionFormal": "[σ∈ℬ(R1×R1)] (Pr2,1(σ)∩σ)\\Pr1,1(σ)=∅",
993
- "term": "свойство антисимметричности",
994
- "convention": "",
1004
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] P29[α, σ] & P30[σ] & card(F44[σ]) > 0 & ∀ξ∈α card(F46[ξ, σ]) > 0",
1005
+ "term": "группа",
995
1006
  "definitionText": "",
1007
+ "convention": "",
996
1008
  "analysis": {
997
1009
  "success": true,
998
1010
  "type": {
@@ -1001,6 +1013,16 @@
1001
1013
  "typeID": 6
1002
1014
  },
1003
1015
  "args": [
1016
+ {
1017
+ "alias": "α",
1018
+ "type": {
1019
+ "typeID": 5,
1020
+ "base": {
1021
+ "typeID": 3,
1022
+ "baseID": "R1"
1023
+ }
1024
+ }
1025
+ },
1004
1026
  {
1005
1027
  "alias": "σ",
1006
1028
  "type": {
@@ -1009,8 +1031,17 @@
1009
1031
  "typeID": 4,
1010
1032
  "factors": [
1011
1033
  {
1012
- "typeID": 3,
1013
- "baseID": "R1"
1034
+ "typeID": 4,
1035
+ "factors": [
1036
+ {
1037
+ "typeID": 3,
1038
+ "baseID": "R1"
1039
+ },
1040
+ {
1041
+ "typeID": 3,
1042
+ "baseID": "R1"
1043
+ }
1044
+ ]
1014
1045
  },
1015
1046
  {
1016
1047
  "typeID": 3,
@@ -1027,13 +1058,13 @@
1027
1058
  }
1028
1059
  },
1029
1060
  {
1030
- "id": 24,
1031
- "alias": "P9",
1061
+ "id": 78,
1062
+ "alias": "P39",
1032
1063
  "cstType": "predicate",
1033
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ) σ",
1034
- "term": "свойство рефлексивности",
1035
- "convention": "",
1064
+ "definitionFormal": "[φ∈ℬ((R1×R1)×R1), ψ∈ℬ((R1×R1)×R1)] ∀α,β,γ∈Pr1(Pr1(φ)) ( F42[α, F42[β, γ, φ], ψ] = F42[F42[α, β, ψ], F42[α, γ, ψ], φ] & F42[F42[α, β, φ], γ, ψ] = F42[F42[α, γ, ψ], F42[β, γ, ψ], φ] )",
1065
+ "term": "свойство дистрибутивности φψ",
1036
1066
  "definitionText": "",
1067
+ "convention": "",
1037
1068
  "analysis": {
1038
1069
  "success": true,
1039
1070
  "type": {
@@ -1043,15 +1074,52 @@
1043
1074
  },
1044
1075
  "args": [
1045
1076
  {
1046
- "alias": "σ",
1077
+ "alias": "φ",
1047
1078
  "type": {
1048
1079
  "typeID": 5,
1049
1080
  "base": {
1050
1081
  "typeID": 4,
1051
1082
  "factors": [
1083
+ {
1084
+ "typeID": 4,
1085
+ "factors": [
1086
+ {
1087
+ "typeID": 3,
1088
+ "baseID": "R1"
1089
+ },
1090
+ {
1091
+ "typeID": 3,
1092
+ "baseID": "R1"
1093
+ }
1094
+ ]
1095
+ },
1052
1096
  {
1053
1097
  "typeID": 3,
1054
1098
  "baseID": "R1"
1099
+ }
1100
+ ]
1101
+ }
1102
+ }
1103
+ },
1104
+ {
1105
+ "alias": "ψ",
1106
+ "type": {
1107
+ "typeID": 5,
1108
+ "base": {
1109
+ "typeID": 4,
1110
+ "factors": [
1111
+ {
1112
+ "typeID": 4,
1113
+ "factors": [
1114
+ {
1115
+ "typeID": 3,
1116
+ "baseID": "R1"
1117
+ },
1118
+ {
1119
+ "typeID": 3,
1120
+ "baseID": "R1"
1121
+ }
1122
+ ]
1055
1123
  },
1056
1124
  {
1057
1125
  "typeID": 3,
@@ -1068,13 +1136,13 @@
1068
1136
  }
1069
1137
  },
1070
1138
  {
1071
- "id": 25,
1072
- "alias": "P10",
1139
+ "id": 79,
1140
+ "alias": "P41",
1073
1141
  "cstType": "predicate",
1074
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ)∩σ=∅",
1075
- "term": "свойство антирефлексивности",
1076
- "convention": "",
1142
+ "definitionFormal": "[α∈ℬ(R1), φ∈ℬ((R1×R1)×R1), ψ∈ℬ((R1×R1)×R1)] P36[α, φ] & P31[φ] & P35[α, ψ] & P39[φ, ψ]",
1143
+ "term": "полукольцо",
1077
1144
  "definitionText": "",
1145
+ "convention": "сложение — моноид + коммутативность; умножение — полугруппа",
1078
1146
  "analysis": {
1079
1147
  "success": true,
1080
1148
  "type": {
@@ -1084,15 +1152,62 @@
1084
1152
  },
1085
1153
  "args": [
1086
1154
  {
1087
- "alias": "σ",
1155
+ "alias": "α",
1156
+ "type": {
1157
+ "typeID": 5,
1158
+ "base": {
1159
+ "typeID": 3,
1160
+ "baseID": "R1"
1161
+ }
1162
+ }
1163
+ },
1164
+ {
1165
+ "alias": "φ",
1088
1166
  "type": {
1089
1167
  "typeID": 5,
1090
1168
  "base": {
1091
1169
  "typeID": 4,
1092
1170
  "factors": [
1171
+ {
1172
+ "typeID": 4,
1173
+ "factors": [
1174
+ {
1175
+ "typeID": 3,
1176
+ "baseID": "R1"
1177
+ },
1178
+ {
1179
+ "typeID": 3,
1180
+ "baseID": "R1"
1181
+ }
1182
+ ]
1183
+ },
1093
1184
  {
1094
1185
  "typeID": 3,
1095
1186
  "baseID": "R1"
1187
+ }
1188
+ ]
1189
+ }
1190
+ }
1191
+ },
1192
+ {
1193
+ "alias": "ψ",
1194
+ "type": {
1195
+ "typeID": 5,
1196
+ "base": {
1197
+ "typeID": 4,
1198
+ "factors": [
1199
+ {
1200
+ "typeID": 4,
1201
+ "factors": [
1202
+ {
1203
+ "typeID": 3,
1204
+ "baseID": "R1"
1205
+ },
1206
+ {
1207
+ "typeID": 3,
1208
+ "baseID": "R1"
1209
+ }
1210
+ ]
1096
1211
  },
1097
1212
  {
1098
1213
  "typeID": 3,
@@ -1109,19 +1224,51 @@
1109
1224
  }
1110
1225
  },
1111
1226
  {
1112
- "id": 26,
1113
- "alias": "P11",
1114
- "cstType": "predicate",
1115
- "definitionFormal": "[σ∈ℬ(R1×R1)] ∀(α1,α2),(β1,β2)∈σ (α2=β1 ⇒ (α1,β2)∈σ)",
1116
- "term": "свойство транзитивности",
1117
- "convention": "",
1227
+ "id": 64,
1228
+ "alias": "T8",
1229
+ "cstType": "statement",
1230
+ "definitionFormal": "1=1",
1231
+ "term": "Групповые операции",
1118
1232
  "definitionText": "",
1233
+ "convention": "Условия для левых и правых свойств через конкатенацию",
1119
1234
  "analysis": {
1120
1235
  "success": true,
1121
1236
  "type": {
1122
- "typeID": 8,
1237
+ "typeID": 6
1238
+ },
1239
+ "valueClass": "value",
1240
+ "diagnostics": []
1241
+ }
1242
+ },
1243
+ {
1244
+ "id": 63,
1245
+ "alias": "F40",
1246
+ "cstType": "function",
1247
+ "definitionFormal": "[σ∈ℬ(R1×Z)] I{(α, λ) | (α,μ):∈σ; λ := card(σ) - μ - 1}",
1248
+ "term": "обращенная последовательность",
1249
+ "definitionText": "",
1250
+ "convention": "",
1251
+ "analysis": {
1252
+ "success": true,
1253
+ "type": {
1254
+ "typeID": 7,
1123
1255
  "result": {
1124
- "typeID": 6
1256
+ "typeID": 5,
1257
+ "base": {
1258
+ "typeID": 4,
1259
+ "factors": [
1260
+ {
1261
+ "typeID": 3,
1262
+ "baseID": "R1"
1263
+ },
1264
+ {
1265
+ "typeID": 2,
1266
+ "isOrdered": true,
1267
+ "isArithmetic": true,
1268
+ "isIntegerCompatible": true
1269
+ }
1270
+ ]
1271
+ }
1125
1272
  },
1126
1273
  "args": [
1127
1274
  {
@@ -1136,8 +1283,10 @@
1136
1283
  "baseID": "R1"
1137
1284
  },
1138
1285
  {
1139
- "typeID": 3,
1140
- "baseID": "R1"
1286
+ "typeID": 2,
1287
+ "isOrdered": true,
1288
+ "isArithmetic": true,
1289
+ "isIntegerCompatible": true
1141
1290
  }
1142
1291
  ]
1143
1292
  }
@@ -1150,19 +1299,20 @@
1150
1299
  }
1151
1300
  },
1152
1301
  {
1153
- "id": 27,
1154
- "alias": "P14",
1155
- "cstType": "predicate",
1156
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr2,1(σ)∩σ\\Pr1,1(σ)=∅ & (Pr1,1(σ)∩σ=∅ Pr1,1(σ)⊆σ) & ∀(α1,α2),(β1,β2)∈σ (α2=β1 ⇒ (α1,β2)∈σ)",
1157
- "term": "частичный порядок",
1158
- "convention": "",
1302
+ "id": 62,
1303
+ "alias": "F37",
1304
+ "cstType": "function",
1305
+ "definitionFormal": "[σ∈ℬ(R1×Z)] debool(Pr1(Fi2[{card(σ) - 1}](σ)))",
1306
+ "term": "конец последовательности",
1159
1307
  "definitionText": "",
1308
+ "convention": "",
1160
1309
  "analysis": {
1161
1310
  "success": true,
1162
1311
  "type": {
1163
- "typeID": 8,
1312
+ "typeID": 7,
1164
1313
  "result": {
1165
- "typeID": 6
1314
+ "typeID": 3,
1315
+ "baseID": "R1"
1166
1316
  },
1167
1317
  "args": [
1168
1318
  {
@@ -1177,8 +1327,10 @@
1177
1327
  "baseID": "R1"
1178
1328
  },
1179
1329
  {
1180
- "typeID": 3,
1181
- "baseID": "R1"
1330
+ "typeID": 2,
1331
+ "isOrdered": true,
1332
+ "isArithmetic": true,
1333
+ "isIntegerCompatible": true
1182
1334
  }
1183
1335
  ]
1184
1336
  }
@@ -1191,31 +1343,22 @@
1191
1343
  }
1192
1344
  },
1193
1345
  {
1194
- "id": 28,
1195
- "alias": "P15",
1196
- "cstType": "predicate",
1197
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] Pr2,1(σ)∩σ\\Pr1,1(σ) = ∅ & (Pr1,1(σ)∩σ = ∅ ∨ Pr1,1(σ) ⊆ σ) & ∀(α1,α2),(β1,β2)∈σ (α2=β1 ⇒ (α1,β2)∈σ) & σ∪Pr2,1(σ)∪Pr1,1(σ)∪Pr2,2(σ) = α×α",
1198
- "term": "линейный порядок",
1199
- "convention": "",
1346
+ "id": 61,
1347
+ "alias": "F36",
1348
+ "cstType": "function",
1349
+ "definitionFormal": "[σ∈ℬ(R1×Z)] debool(Pr1(Fi2[{0}](σ)))",
1350
+ "term": "начало последовательности",
1200
1351
  "definitionText": "",
1352
+ "convention": "",
1201
1353
  "analysis": {
1202
1354
  "success": true,
1203
1355
  "type": {
1204
- "typeID": 8,
1356
+ "typeID": 7,
1205
1357
  "result": {
1206
- "typeID": 6
1358
+ "typeID": 3,
1359
+ "baseID": "R1"
1207
1360
  },
1208
1361
  "args": [
1209
- {
1210
- "alias": "α",
1211
- "type": {
1212
- "typeID": 5,
1213
- "base": {
1214
- "typeID": 3,
1215
- "baseID": "R1"
1216
- }
1217
- }
1218
- },
1219
1362
  {
1220
1363
  "alias": "σ",
1221
1364
  "type": {
@@ -1228,8 +1371,10 @@
1228
1371
  "baseID": "R1"
1229
1372
  },
1230
1373
  {
1231
- "typeID": 3,
1232
- "baseID": "R1"
1374
+ "typeID": 2,
1375
+ "isOrdered": true,
1376
+ "isArithmetic": true,
1377
+ "isIntegerCompatible": true
1233
1378
  }
1234
1379
  ]
1235
1380
  }
@@ -1242,35 +1387,64 @@
1242
1387
  }
1243
1388
  },
1244
1389
  {
1245
- "id": 29,
1246
- "alias": "F13",
1247
- "cstType": "function",
1248
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] α \\ Pr2(Fi1,2[α, α](σ))",
1249
- "term": "минимальные элементы порядка на данном подмножестве",
1250
- "convention": "",
1390
+ "id": 60,
1391
+ "alias": "P28",
1392
+ "cstType": "predicate",
1393
+ "definitionFormal": "[σ∈ℬ(R1×Z)] card(σ) = card(Pr2(σ))",
1394
+ "term": "подпоследовательность",
1251
1395
  "definitionText": "",
1396
+ "convention": "",
1252
1397
  "analysis": {
1253
1398
  "success": true,
1254
1399
  "type": {
1255
- "typeID": 7,
1400
+ "typeID": 8,
1256
1401
  "result": {
1257
- "typeID": 5,
1258
- "base": {
1259
- "typeID": 3,
1260
- "baseID": "R1"
1261
- }
1402
+ "typeID": 6
1262
1403
  },
1263
1404
  "args": [
1264
1405
  {
1265
- "alias": "α",
1406
+ "alias": "σ",
1266
1407
  "type": {
1267
1408
  "typeID": 5,
1268
1409
  "base": {
1269
- "typeID": 3,
1270
- "baseID": "R1"
1410
+ "typeID": 4,
1411
+ "factors": [
1412
+ {
1413
+ "typeID": 3,
1414
+ "baseID": "R1"
1415
+ },
1416
+ {
1417
+ "typeID": 2,
1418
+ "isOrdered": true,
1419
+ "isArithmetic": true,
1420
+ "isIntegerCompatible": true
1421
+ }
1422
+ ]
1271
1423
  }
1272
1424
  }
1273
- },
1425
+ }
1426
+ ]
1427
+ },
1428
+ "valueClass": "value",
1429
+ "diagnostics": []
1430
+ }
1431
+ },
1432
+ {
1433
+ "id": 59,
1434
+ "alias": "P26",
1435
+ "cstType": "predicate",
1436
+ "definitionFormal": "[σ∈ℬ(R1×Z)] card(σ)=card(Pr2(σ)) & ∀λ∈Pr2(σ) λ < card(σ)",
1437
+ "term": "корректная последовательность (позиции с нуля)",
1438
+ "definitionText": "",
1439
+ "convention": "",
1440
+ "analysis": {
1441
+ "success": true,
1442
+ "type": {
1443
+ "typeID": 8,
1444
+ "result": {
1445
+ "typeID": 6
1446
+ },
1447
+ "args": [
1274
1448
  {
1275
1449
  "alias": "σ",
1276
1450
  "type": {
@@ -1283,8 +1457,10 @@
1283
1457
  "baseID": "R1"
1284
1458
  },
1285
1459
  {
1286
- "typeID": 3,
1287
- "baseID": "R1"
1460
+ "typeID": 2,
1461
+ "isOrdered": true,
1462
+ "isArithmetic": true,
1463
+ "isIntegerCompatible": true
1288
1464
  }
1289
1465
  ]
1290
1466
  }
@@ -1297,53 +1473,106 @@
1297
1473
  }
1298
1474
  },
1299
1475
  {
1300
- "id": 30,
1301
- "alias": "F14",
1302
- "cstType": "function",
1303
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] debool(I{ β | δ1:=Fi1,2[α, α](σ); δ2:=δ1\\Pr1,1(δ1); β:=Pr1(δ2)\\Pr2(δ2) })",
1304
- "term": "наименьший элемент порядка на данном подмножестве",
1476
+ "id": 58,
1477
+ "alias": "T7",
1478
+ "cstType": "statement",
1479
+ "definitionFormal": "1=1",
1480
+ "term": "Последовательности",
1481
+ "definitionText": "",
1305
1482
  "convention": "",
1483
+ "analysis": {
1484
+ "success": true,
1485
+ "type": {
1486
+ "typeID": 6
1487
+ },
1488
+ "valueClass": "value",
1489
+ "diagnostics": []
1490
+ }
1491
+ },
1492
+ {
1493
+ "id": 57,
1494
+ "alias": "F35",
1495
+ "cstType": "function",
1496
+ "definitionFormal": "[α∈Z, β∈Z] R{ξ:=α | ξ≥β & β>0 | ξ-β}",
1497
+ "term": "остаток от деления",
1306
1498
  "definitionText": "",
1499
+ "convention": "",
1307
1500
  "analysis": {
1308
1501
  "success": true,
1309
1502
  "type": {
1310
1503
  "typeID": 7,
1311
1504
  "result": {
1312
- "typeID": 5,
1313
- "base": {
1314
- "typeID": 3,
1315
- "baseID": "R1"
1316
- }
1505
+ "typeID": 2,
1506
+ "isOrdered": true,
1507
+ "isArithmetic": true,
1508
+ "isIntegerCompatible": true
1317
1509
  },
1318
1510
  "args": [
1319
1511
  {
1320
1512
  "alias": "α",
1321
1513
  "type": {
1322
- "typeID": 5,
1323
- "base": {
1324
- "typeID": 3,
1325
- "baseID": "R1"
1326
- }
1514
+ "typeID": 2,
1515
+ "isOrdered": true,
1516
+ "isArithmetic": true,
1517
+ "isIntegerCompatible": true
1327
1518
  }
1328
1519
  },
1329
1520
  {
1330
- "alias": "σ",
1521
+ "alias": "β",
1331
1522
  "type": {
1523
+ "typeID": 2,
1524
+ "isOrdered": true,
1525
+ "isArithmetic": true,
1526
+ "isIntegerCompatible": true
1527
+ }
1528
+ }
1529
+ ]
1530
+ },
1531
+ "valueClass": "value",
1532
+ "diagnostics": []
1533
+ }
1534
+ },
1535
+ {
1536
+ "id": 55,
1537
+ "alias": "F33",
1538
+ "cstType": "function",
1539
+ "definitionFormal": "[α∈Z] R{(ξ,σ):=(0, {0}) | ξ<α | (ξ+1, σ ∪ {ξ+1})}",
1540
+ "term": "натуральные числа, меньшие или равные данному",
1541
+ "definitionText": "",
1542
+ "convention": "",
1543
+ "analysis": {
1544
+ "success": true,
1545
+ "type": {
1546
+ "typeID": 7,
1547
+ "result": {
1548
+ "typeID": 4,
1549
+ "factors": [
1550
+ {
1551
+ "typeID": 2,
1552
+ "isOrdered": true,
1553
+ "isArithmetic": true,
1554
+ "isIntegerCompatible": true
1555
+ },
1556
+ {
1332
1557
  "typeID": 5,
1333
1558
  "base": {
1334
- "typeID": 4,
1335
- "factors": [
1336
- {
1337
- "typeID": 3,
1338
- "baseID": "R1"
1339
- },
1340
- {
1341
- "typeID": 3,
1342
- "baseID": "R1"
1343
- }
1344
- ]
1559
+ "typeID": 2,
1560
+ "isOrdered": true,
1561
+ "isArithmetic": true,
1562
+ "isIntegerCompatible": true
1345
1563
  }
1346
1564
  }
1565
+ ]
1566
+ },
1567
+ "args": [
1568
+ {
1569
+ "alias": "α",
1570
+ "type": {
1571
+ "typeID": 2,
1572
+ "isOrdered": true,
1573
+ "isArithmetic": true,
1574
+ "isIntegerCompatible": true
1575
+ }
1347
1576
  }
1348
1577
  ]
1349
1578
  },
@@ -1352,19 +1581,22 @@
1352
1581
  }
1353
1582
  },
1354
1583
  {
1355
- "id": 31,
1356
- "alias": "P17",
1357
- "cstType": "predicate",
1358
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ) σ & Pr2,1(σ) = σ & ∀(α1,α2),(β1,β2)∈σ (α2=β1 ⇒ (α1,β2)∈σ)",
1359
- "term": "эквивалентность",
1360
- "convention": "",
1584
+ "id": 54,
1585
+ "alias": "F32",
1586
+ "cstType": "function",
1587
+ "definitionFormal": "[σ∈ℬ(Z)] debool(D{ξ∈σ | ∀α∈σ α ξ})",
1588
+ "term": "максимум набора чисел",
1361
1589
  "definitionText": "",
1590
+ "convention": "",
1362
1591
  "analysis": {
1363
1592
  "success": true,
1364
1593
  "type": {
1365
- "typeID": 8,
1594
+ "typeID": 7,
1366
1595
  "result": {
1367
- "typeID": 6
1596
+ "typeID": 2,
1597
+ "isOrdered": true,
1598
+ "isArithmetic": true,
1599
+ "isIntegerCompatible": true
1368
1600
  },
1369
1601
  "args": [
1370
1602
  {
@@ -1372,17 +1604,10 @@
1372
1604
  "type": {
1373
1605
  "typeID": 5,
1374
1606
  "base": {
1375
- "typeID": 4,
1376
- "factors": [
1377
- {
1378
- "typeID": 3,
1379
- "baseID": "R1"
1380
- },
1381
- {
1382
- "typeID": 3,
1383
- "baseID": "R1"
1384
- }
1385
- ]
1607
+ "typeID": 2,
1608
+ "isOrdered": true,
1609
+ "isArithmetic": true,
1610
+ "isIntegerCompatible": true
1386
1611
  }
1387
1612
  }
1388
1613
  }
@@ -1393,13 +1618,13 @@
1393
1618
  }
1394
1619
  },
1395
1620
  {
1396
- "id": 32,
1397
- "alias": "P18",
1621
+ "id": 56,
1622
+ "alias": "P25",
1398
1623
  "cstType": "predicate",
1399
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ) σ & Pr2,1(σ) = σ",
1400
- "term": "толерантность",
1401
- "convention": "",
1624
+ "definitionFormal": "[σ∈ℬ(Z), τ∈Z] ∀α∈σ (α+τ F32[σ] α+τ∈σ)",
1625
+ "term": "набор чисел, удовлетворяющий данному периоду",
1402
1626
  "definitionText": "",
1627
+ "convention": "",
1403
1628
  "analysis": {
1404
1629
  "success": true,
1405
1630
  "type": {
@@ -1413,19 +1638,21 @@
1413
1638
  "type": {
1414
1639
  "typeID": 5,
1415
1640
  "base": {
1416
- "typeID": 4,
1417
- "factors": [
1418
- {
1419
- "typeID": 3,
1420
- "baseID": "R1"
1421
- },
1422
- {
1423
- "typeID": 3,
1424
- "baseID": "R1"
1425
- }
1426
- ]
1641
+ "typeID": 2,
1642
+ "isOrdered": true,
1643
+ "isArithmetic": true,
1644
+ "isIntegerCompatible": true
1427
1645
  }
1428
1646
  }
1647
+ },
1648
+ {
1649
+ "alias": "τ",
1650
+ "type": {
1651
+ "typeID": 2,
1652
+ "isOrdered": true,
1653
+ "isArithmetic": true,
1654
+ "isIntegerCompatible": true
1655
+ }
1429
1656
  }
1430
1657
  ]
1431
1658
  },
@@ -1434,48 +1661,33 @@
1434
1661
  }
1435
1662
  },
1436
1663
  {
1437
- "id": 33,
1438
- "alias": "F15",
1664
+ "id": 53,
1665
+ "alias": "F31",
1439
1666
  "cstType": "function",
1440
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] Pr2(Fi1[{α}](σ))",
1441
- "term": "класс эквивалентности элемента",
1442
- "convention": "",
1667
+ "definitionFormal": "[σ∈ℬ(Z)] debool(D{ξ∈σ | ∀α∈σ α ≥ ξ})",
1668
+ "term": "минимум набора чисел",
1443
1669
  "definitionText": "",
1670
+ "convention": "",
1444
1671
  "analysis": {
1445
1672
  "success": true,
1446
1673
  "type": {
1447
1674
  "typeID": 7,
1448
1675
  "result": {
1449
- "typeID": 5,
1450
- "base": {
1451
- "typeID": 3,
1452
- "baseID": "R1"
1453
- }
1676
+ "typeID": 2,
1677
+ "isOrdered": true,
1678
+ "isArithmetic": true,
1679
+ "isIntegerCompatible": true
1454
1680
  },
1455
1681
  "args": [
1456
- {
1457
- "alias": "α",
1458
- "type": {
1459
- "typeID": 3,
1460
- "baseID": "R1"
1461
- }
1462
- },
1463
1682
  {
1464
1683
  "alias": "σ",
1465
1684
  "type": {
1466
1685
  "typeID": 5,
1467
1686
  "base": {
1468
- "typeID": 4,
1469
- "factors": [
1470
- {
1471
- "typeID": 3,
1472
- "baseID": "R1"
1473
- },
1474
- {
1475
- "typeID": 3,
1476
- "baseID": "R1"
1477
- }
1478
- ]
1687
+ "typeID": 2,
1688
+ "isOrdered": true,
1689
+ "isArithmetic": true,
1690
+ "isIntegerCompatible": true
1479
1691
  }
1480
1692
  }
1481
1693
  }
@@ -1486,13 +1698,13 @@
1486
1698
  }
1487
1699
  },
1488
1700
  {
1489
- "id": 34,
1490
- "alias": "T4",
1701
+ "id": 52,
1702
+ "alias": "T6",
1491
1703
  "cstType": "statement",
1492
1704
  "definitionFormal": "1=1",
1493
- "term": "Цепочки",
1494
- "convention": "",
1705
+ "term": "Целые числа",
1495
1706
  "definitionText": "",
1707
+ "convention": "",
1496
1708
  "analysis": {
1497
1709
  "success": true,
1498
1710
  "type": {
@@ -1503,13 +1715,13 @@
1503
1715
  }
1504
1716
  },
1505
1717
  {
1506
- "id": 35,
1507
- "alias": "P19",
1718
+ "id": 50,
1719
+ "alias": "P22",
1508
1720
  "cstType": "predicate",
1509
- "definitionFormal": "[σ∈ℬ(R1×R1)] card(Pr1(σ))=card(σ) & card(Pr2(σ))=card(σ) & card(Pr1(σ)\\Pr2(σ))=1 & card(Pr2(σ)\\Pr1(σ))=1",
1510
- "term": "условие связности цепочки",
1511
- "convention": "",
1721
+ "definitionFormal": "[σ∈ℬ(R1×R1)] ∀γ∈Pr1(σ) γ∉R{ ξ:=Pr2(Fi1[{γ}](σ)) | ξ Pr2(Fi1[ξ](σ)) }",
1722
+ "term": "свойство ацикличности",
1512
1723
  "definitionText": "",
1724
+ "convention": "",
1513
1725
  "analysis": {
1514
1726
  "success": true,
1515
1727
  "type": {
@@ -1544,22 +1756,32 @@
1544
1756
  }
1545
1757
  },
1546
1758
  {
1547
- "id": 36,
1548
- "alias": "F16",
1759
+ "id": 49,
1760
+ "alias": "F27",
1549
1761
  "cstType": "function",
1550
- "definitionFormal": "[σ∈ℬ(R1×R1)] debool(Pr1(σ) \\ Pr2(σ))",
1551
- "term": "начало цепочки",
1552
- "convention": "",
1762
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] R{ ξ:=Pr1(Fi2[{α}](σ)) | ξ ∪ Pr1(Fi2[ξ](σ)) }",
1763
+ "term": "влияющие вершины",
1553
1764
  "definitionText": "",
1765
+ "convention": "вершины, из которых данная достижима",
1554
1766
  "analysis": {
1555
1767
  "success": true,
1556
1768
  "type": {
1557
1769
  "typeID": 7,
1558
1770
  "result": {
1559
- "typeID": 3,
1560
- "baseID": "R1"
1771
+ "typeID": 5,
1772
+ "base": {
1773
+ "typeID": 3,
1774
+ "baseID": "R1"
1775
+ }
1561
1776
  },
1562
1777
  "args": [
1778
+ {
1779
+ "alias": "α",
1780
+ "type": {
1781
+ "typeID": 3,
1782
+ "baseID": "R1"
1783
+ }
1784
+ },
1563
1785
  {
1564
1786
  "alias": "σ",
1565
1787
  "type": {
@@ -1586,22 +1808,35 @@
1586
1808
  }
1587
1809
  },
1588
1810
  {
1589
- "id": 37,
1590
- "alias": "F17",
1811
+ "id": 48,
1812
+ "alias": "F26",
1591
1813
  "cstType": "function",
1592
- "definitionFormal": "[σ∈ℬ(R1×R1)] debool(Pr2(σ) \\ Pr1(σ))",
1593
- "term": "конец цепочки",
1594
- "convention": "",
1814
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] R{ ξ:=Pr2(Fi1[α](σ)) | ξ ∪ Pr2(Fi1[ξ](σ)) }",
1815
+ "term": "зависимые вершины совокупности",
1595
1816
  "definitionText": "",
1817
+ "convention": "",
1596
1818
  "analysis": {
1597
1819
  "success": true,
1598
1820
  "type": {
1599
1821
  "typeID": 7,
1600
1822
  "result": {
1601
- "typeID": 3,
1602
- "baseID": "R1"
1823
+ "typeID": 5,
1824
+ "base": {
1825
+ "typeID": 3,
1826
+ "baseID": "R1"
1827
+ }
1603
1828
  },
1604
1829
  "args": [
1830
+ {
1831
+ "alias": "α",
1832
+ "type": {
1833
+ "typeID": 5,
1834
+ "base": {
1835
+ "typeID": 3,
1836
+ "baseID": "R1"
1837
+ }
1838
+ }
1839
+ },
1605
1840
  {
1606
1841
  "alias": "σ",
1607
1842
  "type": {
@@ -1628,20 +1863,23 @@
1628
1863
  }
1629
1864
  },
1630
1865
  {
1631
- "id": 38,
1632
- "alias": "F18",
1866
+ "id": 47,
1867
+ "alias": "F25",
1633
1868
  "cstType": "function",
1634
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] debool(Pr2(Fi1[{α}](σ)))",
1635
- "term": "следующий за данным элемент цепочки",
1636
- "convention": "",
1869
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] R{ ξ:=Pr2(Fi1[{α}](σ)) | ξ ∪ Pr2(Fi1[ξ](σ)) }",
1870
+ "term": "зависимые вершины",
1637
1871
  "definitionText": "",
1872
+ "convention": "вершины, достижимые из данной",
1638
1873
  "analysis": {
1639
1874
  "success": true,
1640
1875
  "type": {
1641
1876
  "typeID": 7,
1642
1877
  "result": {
1643
- "typeID": 3,
1644
- "baseID": "R1"
1878
+ "typeID": 5,
1879
+ "base": {
1880
+ "typeID": 3,
1881
+ "baseID": "R1"
1882
+ }
1645
1883
  },
1646
1884
  "args": [
1647
1885
  {
@@ -1677,29 +1915,34 @@
1677
1915
  }
1678
1916
  },
1679
1917
  {
1680
- "id": 39,
1681
- "alias": "F19",
1918
+ "id": 51,
1919
+ "alias": "F29",
1682
1920
  "cstType": "function",
1683
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] debool(Pr1(Fi2[}](σ)))",
1684
- "term": "предшествующий данному элемент цепочки",
1685
- "convention": "",
1921
+ "definitionFormal": "[σ∈ℬ(R1×R1)] I{(ξ1, ξ2) | ξ1:∈Pr1(σ); ξ2:∈F25[ξ1, σ]}",
1922
+ "term": "транзитивное замыкание",
1686
1923
  "definitionText": "",
1924
+ "convention": "",
1687
1925
  "analysis": {
1688
1926
  "success": true,
1689
1927
  "type": {
1690
1928
  "typeID": 7,
1691
1929
  "result": {
1692
- "typeID": 3,
1693
- "baseID": "R1"
1930
+ "typeID": 5,
1931
+ "base": {
1932
+ "typeID": 4,
1933
+ "factors": [
1934
+ {
1935
+ "typeID": 3,
1936
+ "baseID": "R1"
1937
+ },
1938
+ {
1939
+ "typeID": 3,
1940
+ "baseID": "R1"
1941
+ }
1942
+ ]
1943
+ }
1694
1944
  },
1695
1945
  "args": [
1696
- {
1697
- "alias": "α",
1698
- "type": {
1699
- "typeID": 3,
1700
- "baseID": "R1"
1701
- }
1702
- },
1703
1946
  {
1704
1947
  "alias": "σ",
1705
1948
  "type": {
@@ -1726,83 +1969,13 @@
1726
1969
  }
1727
1970
  },
1728
1971
  {
1729
- "id": 40,
1730
- "alias": "T5",
1731
- "cstType": "statement",
1732
- "definitionFormal": "1=1",
1733
- "term": "Графы",
1734
- "convention": "",
1735
- "definitionText": "",
1736
- "analysis": {
1737
- "success": true,
1738
- "type": {
1739
- "typeID": 6
1740
- },
1741
- "valueClass": "value",
1742
- "diagnostics": []
1743
- }
1744
- },
1745
- {
1746
- "id": 41,
1747
- "alias": "P20",
1748
- "cstType": "predicate",
1749
- "definitionFormal": "[γ∈ℬ(R1)×ℬ(R1×R1)] pr2(γ) = Pr2,1(pr2(γ))",
1750
- "term": "неориентированный граф",
1751
- "convention": "",
1752
- "definitionText": "",
1753
- "analysis": {
1754
- "success": true,
1755
- "type": {
1756
- "typeID": 8,
1757
- "result": {
1758
- "typeID": 6
1759
- },
1760
- "args": [
1761
- {
1762
- "alias": "γ",
1763
- "type": {
1764
- "typeID": 4,
1765
- "factors": [
1766
- {
1767
- "typeID": 5,
1768
- "base": {
1769
- "typeID": 3,
1770
- "baseID": "R1"
1771
- }
1772
- },
1773
- {
1774
- "typeID": 5,
1775
- "base": {
1776
- "typeID": 4,
1777
- "factors": [
1778
- {
1779
- "typeID": 3,
1780
- "baseID": "R1"
1781
- },
1782
- {
1783
- "typeID": 3,
1784
- "baseID": "R1"
1785
- }
1786
- ]
1787
- }
1788
- }
1789
- ]
1790
- }
1791
- }
1792
- ]
1793
- },
1794
- "valueClass": "value",
1795
- "diagnostics": []
1796
- }
1797
- },
1798
- {
1799
- "id": 42,
1800
- "alias": "F20",
1972
+ "id": 46,
1973
+ "alias": "F24",
1801
1974
  "cstType": "function",
1802
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1(σ) \\ Pr2(σ)",
1803
- "term": "истоки",
1804
- "convention": "",
1975
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] Pr1(Fi2[{α}](σ))",
1976
+ "term": "поставщики",
1805
1977
  "definitionText": "",
1978
+ "convention": "",
1806
1979
  "analysis": {
1807
1980
  "success": true,
1808
1981
  "type": {
@@ -1815,6 +1988,13 @@
1815
1988
  }
1816
1989
  },
1817
1990
  "args": [
1991
+ {
1992
+ "alias": "α",
1993
+ "type": {
1994
+ "typeID": 3,
1995
+ "baseID": "R1"
1996
+ }
1997
+ },
1818
1998
  {
1819
1999
  "alias": "σ",
1820
2000
  "type": {
@@ -1841,13 +2021,13 @@
1841
2021
  }
1842
2022
  },
1843
2023
  {
1844
- "id": 43,
1845
- "alias": "F21",
2024
+ "id": 45,
2025
+ "alias": "F23",
1846
2026
  "cstType": "function",
1847
- "definitionFormal": "[σ∈ℬ(R1×R1)] Pr2(σ) \\ Pr1(σ)",
1848
- "term": "стоки",
1849
- "convention": "",
2027
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] Pr2(Fi1[{α}](σ))",
2028
+ "term": "потребители",
1850
2029
  "definitionText": "",
2030
+ "convention": "",
1851
2031
  "analysis": {
1852
2032
  "success": true,
1853
2033
  "type": {
@@ -1860,6 +2040,13 @@
1860
2040
  }
1861
2041
  },
1862
2042
  "args": [
2043
+ {
2044
+ "alias": "α",
2045
+ "type": {
2046
+ "typeID": 3,
2047
+ "baseID": "R1"
2048
+ }
2049
+ },
1863
2050
  {
1864
2051
  "alias": "σ",
1865
2052
  "type": {
@@ -1891,8 +2078,8 @@
1891
2078
  "cstType": "function",
1892
2079
  "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] α \\ (Pr2(σ) ∪ Pr1(σ))",
1893
2080
  "term": "изолированные вершины",
1894
- "convention": "",
1895
2081
  "definitionText": "",
2082
+ "convention": "",
1896
2083
  "analysis": {
1897
2084
  "success": true,
1898
2085
  "type": {
@@ -1941,13 +2128,13 @@
1941
2128
  }
1942
2129
  },
1943
2130
  {
1944
- "id": 45,
1945
- "alias": "F23",
2131
+ "id": 43,
2132
+ "alias": "F21",
1946
2133
  "cstType": "function",
1947
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] Pr2(Fi1[{α}](σ))",
1948
- "term": "потребители",
1949
- "convention": "",
2134
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr2(σ) \\ Pr1(σ)",
2135
+ "term": "стоки",
1950
2136
  "definitionText": "",
2137
+ "convention": "",
1951
2138
  "analysis": {
1952
2139
  "success": true,
1953
2140
  "type": {
@@ -1960,13 +2147,6 @@
1960
2147
  }
1961
2148
  },
1962
2149
  "args": [
1963
- {
1964
- "alias": "α",
1965
- "type": {
1966
- "typeID": 3,
1967
- "baseID": "R1"
1968
- }
1969
- },
1970
2150
  {
1971
2151
  "alias": "σ",
1972
2152
  "type": {
@@ -1993,13 +2173,13 @@
1993
2173
  }
1994
2174
  },
1995
2175
  {
1996
- "id": 46,
1997
- "alias": "F24",
2176
+ "id": 42,
2177
+ "alias": "F20",
1998
2178
  "cstType": "function",
1999
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] Pr1(Fi2[{α}](σ))",
2000
- "term": "поставщики",
2001
- "convention": "",
2179
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1(σ) \\ Pr2(σ)",
2180
+ "term": "истоки",
2002
2181
  "definitionText": "",
2182
+ "convention": "",
2003
2183
  "analysis": {
2004
2184
  "success": true,
2005
2185
  "type": {
@@ -2009,16 +2189,9 @@
2009
2189
  "base": {
2010
2190
  "typeID": 3,
2011
2191
  "baseID": "R1"
2012
- }
2013
- },
2014
- "args": [
2015
- {
2016
- "alias": "α",
2017
- "type": {
2018
- "typeID": 3,
2019
- "baseID": "R1"
2020
- }
2021
- },
2192
+ }
2193
+ },
2194
+ "args": [
2022
2195
  {
2023
2196
  "alias": "σ",
2024
2197
  "type": {
@@ -2045,23 +2218,90 @@
2045
2218
  }
2046
2219
  },
2047
2220
  {
2048
- "id": 47,
2049
- "alias": "F25",
2221
+ "id": 41,
2222
+ "alias": "P20",
2223
+ "cstType": "predicate",
2224
+ "definitionFormal": "[γ∈ℬ(R1)×ℬ(R1×R1)] pr2(γ) = Pr2,1(pr2(γ))",
2225
+ "term": "неориентированный граф",
2226
+ "definitionText": "",
2227
+ "convention": "",
2228
+ "analysis": {
2229
+ "success": true,
2230
+ "type": {
2231
+ "typeID": 8,
2232
+ "result": {
2233
+ "typeID": 6
2234
+ },
2235
+ "args": [
2236
+ {
2237
+ "alias": "γ",
2238
+ "type": {
2239
+ "typeID": 4,
2240
+ "factors": [
2241
+ {
2242
+ "typeID": 5,
2243
+ "base": {
2244
+ "typeID": 3,
2245
+ "baseID": "R1"
2246
+ }
2247
+ },
2248
+ {
2249
+ "typeID": 5,
2250
+ "base": {
2251
+ "typeID": 4,
2252
+ "factors": [
2253
+ {
2254
+ "typeID": 3,
2255
+ "baseID": "R1"
2256
+ },
2257
+ {
2258
+ "typeID": 3,
2259
+ "baseID": "R1"
2260
+ }
2261
+ ]
2262
+ }
2263
+ }
2264
+ ]
2265
+ }
2266
+ }
2267
+ ]
2268
+ },
2269
+ "valueClass": "value",
2270
+ "diagnostics": []
2271
+ }
2272
+ },
2273
+ {
2274
+ "id": 40,
2275
+ "alias": "T5",
2276
+ "cstType": "statement",
2277
+ "definitionFormal": "1=1",
2278
+ "term": "Графы",
2279
+ "definitionText": "",
2280
+ "convention": "",
2281
+ "analysis": {
2282
+ "success": true,
2283
+ "type": {
2284
+ "typeID": 6
2285
+ },
2286
+ "valueClass": "value",
2287
+ "diagnostics": []
2288
+ }
2289
+ },
2290
+ {
2291
+ "id": 39,
2292
+ "alias": "F19",
2050
2293
  "cstType": "function",
2051
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] R{ ξ:=Pr2(Fi1[{α}](σ)) | ξ ∪ Pr2(Fi1[ξ](σ)) }",
2052
- "term": "зависимые вершины",
2053
- "convention": "вершины, достижимые из данной",
2294
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] debool(Pr1(Fi2[{α}](σ)))",
2295
+ "term": "предшествующий данному элемент цепочки",
2054
2296
  "definitionText": "",
2297
+ "convention": "",
2055
2298
  "analysis": {
2056
2299
  "success": true,
2057
2300
  "type": {
2058
2301
  "typeID": 7,
2059
2302
  "result": {
2060
- "typeID": 5,
2061
- "base": {
2062
- "typeID": 3,
2063
- "baseID": "R1"
2064
- }
2303
+ "typeID": 3,
2304
+ "baseID": "R1"
2065
2305
  },
2066
2306
  "args": [
2067
2307
  {
@@ -2097,33 +2337,27 @@
2097
2337
  }
2098
2338
  },
2099
2339
  {
2100
- "id": 48,
2101
- "alias": "F26",
2340
+ "id": 38,
2341
+ "alias": "F18",
2102
2342
  "cstType": "function",
2103
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] R{ ξ:=Pr2(Fi1[α](σ)) | ξ ∪ Pr2(Fi1[ξ](σ)) }",
2104
- "term": "зависимые вершины совокупности",
2105
- "convention": "",
2343
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] debool(Pr2(Fi1[{α}](σ)))",
2344
+ "term": "следующий за данным элемент цепочки",
2106
2345
  "definitionText": "",
2346
+ "convention": "",
2107
2347
  "analysis": {
2108
2348
  "success": true,
2109
2349
  "type": {
2110
2350
  "typeID": 7,
2111
2351
  "result": {
2112
- "typeID": 5,
2113
- "base": {
2114
- "typeID": 3,
2115
- "baseID": "R1"
2116
- }
2352
+ "typeID": 3,
2353
+ "baseID": "R1"
2117
2354
  },
2118
2355
  "args": [
2119
2356
  {
2120
2357
  "alias": "α",
2121
2358
  "type": {
2122
- "typeID": 5,
2123
- "base": {
2124
- "typeID": 3,
2125
- "baseID": "R1"
2126
- }
2359
+ "typeID": 3,
2360
+ "baseID": "R1"
2127
2361
  }
2128
2362
  },
2129
2363
  {
@@ -2152,32 +2386,22 @@
2152
2386
  }
2153
2387
  },
2154
2388
  {
2155
- "id": 49,
2156
- "alias": "F27",
2389
+ "id": 37,
2390
+ "alias": "F17",
2157
2391
  "cstType": "function",
2158
- "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] R{ ξ:=Pr1(Fi2[{α}](σ)) | ξ ∪ Pr1(Fi2[ξ](σ)) }",
2159
- "term": "влияющие вершины",
2160
- "convention": "вершины, из которых данная достижима",
2392
+ "definitionFormal": "[σ∈ℬ(R1×R1)] debool(Pr2(σ) \\ Pr1(σ))",
2393
+ "term": "конец цепочки",
2161
2394
  "definitionText": "",
2395
+ "convention": "",
2162
2396
  "analysis": {
2163
2397
  "success": true,
2164
2398
  "type": {
2165
2399
  "typeID": 7,
2166
2400
  "result": {
2167
- "typeID": 5,
2168
- "base": {
2169
- "typeID": 3,
2170
- "baseID": "R1"
2171
- }
2401
+ "typeID": 3,
2402
+ "baseID": "R1"
2172
2403
  },
2173
2404
  "args": [
2174
- {
2175
- "alias": "α",
2176
- "type": {
2177
- "typeID": 3,
2178
- "baseID": "R1"
2179
- }
2180
- },
2181
2405
  {
2182
2406
  "alias": "σ",
2183
2407
  "type": {
@@ -2204,19 +2428,20 @@
2204
2428
  }
2205
2429
  },
2206
2430
  {
2207
- "id": 50,
2208
- "alias": "P22",
2209
- "cstType": "predicate",
2210
- "definitionFormal": "[σ∈ℬ(R1×R1)] ∀γ∈Pr1(σ) γ∉R{ ξ:=Pr2(Fi1[{γ}](σ)) | ξ ∪ Pr2(Fi1[ξ](σ)) }",
2211
- "term": "свойство ацикличности",
2212
- "convention": "",
2431
+ "id": 36,
2432
+ "alias": "F16",
2433
+ "cstType": "function",
2434
+ "definitionFormal": "[σ∈ℬ(R1×R1)] debool(Pr1(σ) \\ Pr2(σ))",
2435
+ "term": "начало цепочки",
2213
2436
  "definitionText": "",
2437
+ "convention": "",
2214
2438
  "analysis": {
2215
2439
  "success": true,
2216
2440
  "type": {
2217
- "typeID": 8,
2441
+ "typeID": 7,
2218
2442
  "result": {
2219
- "typeID": 6
2443
+ "typeID": 3,
2444
+ "baseID": "R1"
2220
2445
  },
2221
2446
  "args": [
2222
2447
  {
@@ -2245,32 +2470,19 @@
2245
2470
  }
2246
2471
  },
2247
2472
  {
2248
- "id": 51,
2249
- "alias": "F29",
2250
- "cstType": "function",
2251
- "definitionFormal": "[σ∈ℬ(R1×R1)] I{(ξ1, ξ2) | ξ1:∈Pr1(σ); ξ2:∈F25[ξ1, σ]}",
2252
- "term": "транзитивное замыкание",
2253
- "convention": "",
2473
+ "id": 35,
2474
+ "alias": "P19",
2475
+ "cstType": "predicate",
2476
+ "definitionFormal": "[σ∈ℬ(R1×R1)] card(Pr1(σ))=card(σ) & card(Pr2(σ))=card(σ) & card(Pr1(σ)\\Pr2(σ))=1 & card(Pr2(σ)\\Pr1(σ))=1",
2477
+ "term": "условие связности цепочки",
2254
2478
  "definitionText": "",
2479
+ "convention": "",
2255
2480
  "analysis": {
2256
2481
  "success": true,
2257
2482
  "type": {
2258
- "typeID": 7,
2483
+ "typeID": 8,
2259
2484
  "result": {
2260
- "typeID": 5,
2261
- "base": {
2262
- "typeID": 4,
2263
- "factors": [
2264
- {
2265
- "typeID": 3,
2266
- "baseID": "R1"
2267
- },
2268
- {
2269
- "typeID": 3,
2270
- "baseID": "R1"
2271
- }
2272
- ]
2273
- }
2485
+ "typeID": 6
2274
2486
  },
2275
2487
  "args": [
2276
2488
  {
@@ -2299,13 +2511,13 @@
2299
2511
  }
2300
2512
  },
2301
2513
  {
2302
- "id": 52,
2303
- "alias": "T6",
2514
+ "id": 34,
2515
+ "alias": "T4",
2304
2516
  "cstType": "statement",
2305
2517
  "definitionFormal": "1=1",
2306
- "term": "Целые числа",
2307
- "convention": "",
2518
+ "term": "Цепочки",
2308
2519
  "definitionText": "",
2520
+ "convention": "",
2309
2521
  "analysis": {
2310
2522
  "success": true,
2311
2523
  "type": {
@@ -2316,70 +2528,48 @@
2316
2528
  }
2317
2529
  },
2318
2530
  {
2319
- "id": 53,
2320
- "alias": "F31",
2531
+ "id": 33,
2532
+ "alias": "F15",
2321
2533
  "cstType": "function",
2322
- "definitionFormal": "[σ∈ℬ(Z)] debool(D{ξ∈σ | ∀α∈σ α ≥ ξ})",
2323
- "term": "минимум набора чисел",
2324
- "convention": "",
2534
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R1)] Pr2(Fi1[{α}](σ))",
2535
+ "term": "класс эквивалентности элемента",
2325
2536
  "definitionText": "",
2537
+ "convention": "",
2326
2538
  "analysis": {
2327
2539
  "success": true,
2328
2540
  "type": {
2329
2541
  "typeID": 7,
2330
2542
  "result": {
2331
- "typeID": 2,
2332
- "isOrdered": true,
2333
- "isArithmetic": true,
2334
- "isIntegerCompatible": true
2543
+ "typeID": 5,
2544
+ "base": {
2545
+ "typeID": 3,
2546
+ "baseID": "R1"
2547
+ }
2335
2548
  },
2336
2549
  "args": [
2337
2550
  {
2338
- "alias": "σ",
2551
+ "alias": "α",
2339
2552
  "type": {
2340
- "typeID": 5,
2341
- "base": {
2342
- "typeID": 2,
2343
- "isOrdered": true,
2344
- "isArithmetic": true,
2345
- "isIntegerCompatible": true
2346
- }
2553
+ "typeID": 3,
2554
+ "baseID": "R1"
2347
2555
  }
2348
- }
2349
- ]
2350
- },
2351
- "valueClass": "value",
2352
- "diagnostics": []
2353
- }
2354
- },
2355
- {
2356
- "id": 54,
2357
- "alias": "F32",
2358
- "cstType": "function",
2359
- "definitionFormal": "[σ∈ℬ(Z)] debool(D{ξ∈σ | ∀α∈σ α ≤ ξ})",
2360
- "term": "максимум набора чисел",
2361
- "convention": "",
2362
- "definitionText": "",
2363
- "analysis": {
2364
- "success": true,
2365
- "type": {
2366
- "typeID": 7,
2367
- "result": {
2368
- "typeID": 2,
2369
- "isOrdered": true,
2370
- "isArithmetic": true,
2371
- "isIntegerCompatible": true
2372
- },
2373
- "args": [
2556
+ },
2374
2557
  {
2375
2558
  "alias": "σ",
2376
2559
  "type": {
2377
2560
  "typeID": 5,
2378
2561
  "base": {
2379
- "typeID": 2,
2380
- "isOrdered": true,
2381
- "isArithmetic": true,
2382
- "isIntegerCompatible": true
2562
+ "typeID": 4,
2563
+ "factors": [
2564
+ {
2565
+ "typeID": 3,
2566
+ "baseID": "R1"
2567
+ },
2568
+ {
2569
+ "typeID": 3,
2570
+ "baseID": "R1"
2571
+ }
2572
+ ]
2383
2573
  }
2384
2574
  }
2385
2575
  }
@@ -2390,45 +2580,38 @@
2390
2580
  }
2391
2581
  },
2392
2582
  {
2393
- "id": 55,
2394
- "alias": "F33",
2395
- "cstType": "function",
2396
- "definitionFormal": "[α∈Z] R{(ξ,σ):=(0, {0}) | ξ<α | (ξ+1, σ {ξ+1})}",
2397
- "term": "натуральные числа, меньшие или равные данному",
2398
- "convention": "",
2583
+ "id": 32,
2584
+ "alias": "P18",
2585
+ "cstType": "predicate",
2586
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ) σ & Pr2,1) = σ",
2587
+ "term": "толерантность",
2399
2588
  "definitionText": "",
2589
+ "convention": "",
2400
2590
  "analysis": {
2401
2591
  "success": true,
2402
2592
  "type": {
2403
- "typeID": 7,
2593
+ "typeID": 8,
2404
2594
  "result": {
2405
- "typeID": 4,
2406
- "factors": [
2407
- {
2408
- "typeID": 2,
2409
- "isOrdered": true,
2410
- "isArithmetic": true,
2411
- "isIntegerCompatible": true
2412
- },
2413
- {
2414
- "typeID": 5,
2415
- "base": {
2416
- "typeID": 2,
2417
- "isOrdered": true,
2418
- "isArithmetic": true,
2419
- "isIntegerCompatible": true
2420
- }
2421
- }
2422
- ]
2595
+ "typeID": 6
2423
2596
  },
2424
2597
  "args": [
2425
2598
  {
2426
- "alias": "α",
2599
+ "alias": "σ",
2427
2600
  "type": {
2428
- "typeID": 2,
2429
- "isOrdered": true,
2430
- "isArithmetic": true,
2431
- "isIntegerCompatible": true
2601
+ "typeID": 5,
2602
+ "base": {
2603
+ "typeID": 4,
2604
+ "factors": [
2605
+ {
2606
+ "typeID": 3,
2607
+ "baseID": "R1"
2608
+ },
2609
+ {
2610
+ "typeID": 3,
2611
+ "baseID": "R1"
2612
+ }
2613
+ ]
2614
+ }
2432
2615
  }
2433
2616
  }
2434
2617
  ]
@@ -2438,13 +2621,13 @@
2438
2621
  }
2439
2622
  },
2440
2623
  {
2441
- "id": 56,
2442
- "alias": "P25",
2624
+ "id": 31,
2625
+ "alias": "P17",
2443
2626
  "cstType": "predicate",
2444
- "definitionFormal": "[σ∈ℬ(Z), τ∈Z] ∀α∈σ (α+τ F32[σ]α+τ∈σ)",
2445
- "term": "набор чисел, удовлетворяющий данному периоду",
2446
- "convention": "",
2627
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ) σ & Pr2,1(σ) = σ & ∀(α1,α2),(β1,β2)∈σ (α2=β1 (α1,β2)∈σ)",
2628
+ "term": "эквивалентность",
2447
2629
  "definitionText": "",
2630
+ "convention": "",
2448
2631
  "analysis": {
2449
2632
  "success": true,
2450
2633
  "type": {
@@ -2458,21 +2641,19 @@
2458
2641
  "type": {
2459
2642
  "typeID": 5,
2460
2643
  "base": {
2461
- "typeID": 2,
2462
- "isOrdered": true,
2463
- "isArithmetic": true,
2464
- "isIntegerCompatible": true
2644
+ "typeID": 4,
2645
+ "factors": [
2646
+ {
2647
+ "typeID": 3,
2648
+ "baseID": "R1"
2649
+ },
2650
+ {
2651
+ "typeID": 3,
2652
+ "baseID": "R1"
2653
+ }
2654
+ ]
2465
2655
  }
2466
2656
  }
2467
- },
2468
- {
2469
- "alias": "τ",
2470
- "type": {
2471
- "typeID": 2,
2472
- "isOrdered": true,
2473
- "isArithmetic": true,
2474
- "isIntegerCompatible": true
2475
- }
2476
2657
  }
2477
2658
  ]
2478
2659
  },
@@ -2481,81 +2662,35 @@
2481
2662
  }
2482
2663
  },
2483
2664
  {
2484
- "id": 57,
2485
- "alias": "F35",
2665
+ "id": 30,
2666
+ "alias": "F14",
2486
2667
  "cstType": "function",
2487
- "definitionFormal": "[α∈Z, β∈Z] R{ξ:=α | ξ≥β & β>0 | ξ-β}",
2488
- "term": "остаток от деления",
2489
- "convention": "",
2668
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] debool(I{ β | δ1:=Fi1,2[α, α](σ); δ2:=δ1\\Pr1,1(δ1); β:=Pr1(δ2)\\Pr2(δ2) })",
2669
+ "term": "наименьший элемент порядка на данном подмножестве",
2490
2670
  "definitionText": "",
2671
+ "convention": "",
2491
2672
  "analysis": {
2492
2673
  "success": true,
2493
2674
  "type": {
2494
2675
  "typeID": 7,
2495
2676
  "result": {
2496
- "typeID": 2,
2497
- "isOrdered": true,
2498
- "isArithmetic": true,
2499
- "isIntegerCompatible": true
2677
+ "typeID": 5,
2678
+ "base": {
2679
+ "typeID": 3,
2680
+ "baseID": "R1"
2681
+ }
2500
2682
  },
2501
2683
  "args": [
2502
2684
  {
2503
2685
  "alias": "α",
2504
2686
  "type": {
2505
- "typeID": 2,
2506
- "isOrdered": true,
2507
- "isArithmetic": true,
2508
- "isIntegerCompatible": true
2687
+ "typeID": 5,
2688
+ "base": {
2689
+ "typeID": 3,
2690
+ "baseID": "R1"
2691
+ }
2509
2692
  }
2510
2693
  },
2511
- {
2512
- "alias": "β",
2513
- "type": {
2514
- "typeID": 2,
2515
- "isOrdered": true,
2516
- "isArithmetic": true,
2517
- "isIntegerCompatible": true
2518
- }
2519
- }
2520
- ]
2521
- },
2522
- "valueClass": "value",
2523
- "diagnostics": []
2524
- }
2525
- },
2526
- {
2527
- "id": 58,
2528
- "alias": "T7",
2529
- "cstType": "statement",
2530
- "definitionFormal": "1=1",
2531
- "term": "Последовательности",
2532
- "convention": "",
2533
- "definitionText": "",
2534
- "analysis": {
2535
- "success": true,
2536
- "type": {
2537
- "typeID": 6
2538
- },
2539
- "valueClass": "value",
2540
- "diagnostics": []
2541
- }
2542
- },
2543
- {
2544
- "id": 59,
2545
- "alias": "P26",
2546
- "cstType": "predicate",
2547
- "definitionFormal": "[σ∈ℬ(R1×Z)] card(σ)=card(Pr2(σ)) & ∀λ∈Pr2(σ) λ < card(σ)",
2548
- "term": "корректная последовательность (позиции с нуля)",
2549
- "convention": "",
2550
- "definitionText": "",
2551
- "analysis": {
2552
- "success": true,
2553
- "type": {
2554
- "typeID": 8,
2555
- "result": {
2556
- "typeID": 6
2557
- },
2558
- "args": [
2559
2694
  {
2560
2695
  "alias": "σ",
2561
2696
  "type": {
@@ -2568,10 +2703,8 @@
2568
2703
  "baseID": "R1"
2569
2704
  },
2570
2705
  {
2571
- "typeID": 2,
2572
- "isOrdered": true,
2573
- "isArithmetic": true,
2574
- "isIntegerCompatible": true
2706
+ "typeID": 3,
2707
+ "baseID": "R1"
2575
2708
  }
2576
2709
  ]
2577
2710
  }
@@ -2584,21 +2717,35 @@
2584
2717
  }
2585
2718
  },
2586
2719
  {
2587
- "id": 60,
2588
- "alias": "P28",
2589
- "cstType": "predicate",
2590
- "definitionFormal": "[σ∈ℬ(R1×Z)] card(σ) = card(Pr2(σ))",
2591
- "term": "подпоследовательность",
2592
- "convention": "",
2720
+ "id": 29,
2721
+ "alias": "F13",
2722
+ "cstType": "function",
2723
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] α \\ Pr2(Fi1,2[α, α](σ))",
2724
+ "term": "минимальные элементы порядка на данном подмножестве",
2593
2725
  "definitionText": "",
2726
+ "convention": "",
2594
2727
  "analysis": {
2595
2728
  "success": true,
2596
2729
  "type": {
2597
- "typeID": 8,
2730
+ "typeID": 7,
2598
2731
  "result": {
2599
- "typeID": 6
2732
+ "typeID": 5,
2733
+ "base": {
2734
+ "typeID": 3,
2735
+ "baseID": "R1"
2736
+ }
2600
2737
  },
2601
2738
  "args": [
2739
+ {
2740
+ "alias": "α",
2741
+ "type": {
2742
+ "typeID": 5,
2743
+ "base": {
2744
+ "typeID": 3,
2745
+ "baseID": "R1"
2746
+ }
2747
+ }
2748
+ },
2602
2749
  {
2603
2750
  "alias": "σ",
2604
2751
  "type": {
@@ -2611,10 +2758,8 @@
2611
2758
  "baseID": "R1"
2612
2759
  },
2613
2760
  {
2614
- "typeID": 2,
2615
- "isOrdered": true,
2616
- "isArithmetic": true,
2617
- "isIntegerCompatible": true
2761
+ "typeID": 3,
2762
+ "baseID": "R1"
2618
2763
  }
2619
2764
  ]
2620
2765
  }
@@ -2627,22 +2772,31 @@
2627
2772
  }
2628
2773
  },
2629
2774
  {
2630
- "id": 61,
2631
- "alias": "F36",
2632
- "cstType": "function",
2633
- "definitionFormal": "[σ∈ℬ(R1×Z)] debool(Pr1(Fi2[{0}](σ)))",
2634
- "term": "начало последовательности",
2635
- "convention": "",
2775
+ "id": 28,
2776
+ "alias": "P15",
2777
+ "cstType": "predicate",
2778
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] Pr2,1(σ)∩σ\\Pr1,1(σ) = ∅ & (Pr1,1(σ)∩σ = ∅ ∨ Pr1,1(σ) ⊆ σ) & ∀(α1,α2),(β1,β2)∈σ (α2=β1 ⇒ (α1,β2)∈σ) & σ∪Pr2,1(σ)∪Pr1,1(σ)∪Pr2,2(σ) = α×α",
2779
+ "term": "линейный порядок",
2636
2780
  "definitionText": "",
2781
+ "convention": "",
2637
2782
  "analysis": {
2638
2783
  "success": true,
2639
2784
  "type": {
2640
- "typeID": 7,
2785
+ "typeID": 8,
2641
2786
  "result": {
2642
- "typeID": 3,
2643
- "baseID": "R1"
2787
+ "typeID": 6
2644
2788
  },
2645
2789
  "args": [
2790
+ {
2791
+ "alias": "α",
2792
+ "type": {
2793
+ "typeID": 5,
2794
+ "base": {
2795
+ "typeID": 3,
2796
+ "baseID": "R1"
2797
+ }
2798
+ }
2799
+ },
2646
2800
  {
2647
2801
  "alias": "σ",
2648
2802
  "type": {
@@ -2655,10 +2809,8 @@
2655
2809
  "baseID": "R1"
2656
2810
  },
2657
2811
  {
2658
- "typeID": 2,
2659
- "isOrdered": true,
2660
- "isArithmetic": true,
2661
- "isIntegerCompatible": true
2812
+ "typeID": 3,
2813
+ "baseID": "R1"
2662
2814
  }
2663
2815
  ]
2664
2816
  }
@@ -2671,20 +2823,19 @@
2671
2823
  }
2672
2824
  },
2673
2825
  {
2674
- "id": 62,
2675
- "alias": "F37",
2676
- "cstType": "function",
2677
- "definitionFormal": "[σ∈ℬ(R1×Z)] debool(Pr1(Fi2[{card(σ) - 1}](σ)))",
2678
- "term": "конец последовательности",
2679
- "convention": "",
2826
+ "id": 27,
2827
+ "alias": "P14",
2828
+ "cstType": "predicate",
2829
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr2,1(σ)∩σ\\Pr1,1(σ)=∅ & (Pr1,1(σ)∩σ=∅ Pr1,1(σ)⊆σ) & ∀(α1,α2),(β1,β2)∈σ (α2=β1 ⇒ (α1,β2)∈σ)",
2830
+ "term": "частичный порядок",
2680
2831
  "definitionText": "",
2832
+ "convention": "",
2681
2833
  "analysis": {
2682
2834
  "success": true,
2683
2835
  "type": {
2684
- "typeID": 7,
2836
+ "typeID": 8,
2685
2837
  "result": {
2686
- "typeID": 3,
2687
- "baseID": "R1"
2838
+ "typeID": 6
2688
2839
  },
2689
2840
  "args": [
2690
2841
  {
@@ -2699,10 +2850,8 @@
2699
2850
  "baseID": "R1"
2700
2851
  },
2701
2852
  {
2702
- "typeID": 2,
2703
- "isOrdered": true,
2704
- "isArithmetic": true,
2705
- "isIntegerCompatible": true
2853
+ "typeID": 3,
2854
+ "baseID": "R1"
2706
2855
  }
2707
2856
  ]
2708
2857
  }
@@ -2715,34 +2864,19 @@
2715
2864
  }
2716
2865
  },
2717
2866
  {
2718
- "id": 63,
2719
- "alias": "F40",
2720
- "cstType": "function",
2721
- "definitionFormal": "[σ∈ℬ(R1×Z)] I{(α, λ) | (α,μ):∈σ; λ := card(σ) - μ - 1}",
2722
- "term": "обращенная последовательность",
2723
- "convention": "",
2867
+ "id": 26,
2868
+ "alias": "P11",
2869
+ "cstType": "predicate",
2870
+ "definitionFormal": "[σ∈ℬ(R1×R1)] (α1,α2),(β1,β2)∈σ (α2=β1 (α1,β2)∈σ)",
2871
+ "term": "свойство транзитивности",
2724
2872
  "definitionText": "",
2873
+ "convention": "",
2725
2874
  "analysis": {
2726
2875
  "success": true,
2727
2876
  "type": {
2728
- "typeID": 7,
2877
+ "typeID": 8,
2729
2878
  "result": {
2730
- "typeID": 5,
2731
- "base": {
2732
- "typeID": 4,
2733
- "factors": [
2734
- {
2735
- "typeID": 3,
2736
- "baseID": "R1"
2737
- },
2738
- {
2739
- "typeID": 2,
2740
- "isOrdered": true,
2741
- "isArithmetic": true,
2742
- "isIntegerCompatible": true
2743
- }
2744
- ]
2745
- }
2879
+ "typeID": 6
2746
2880
  },
2747
2881
  "args": [
2748
2882
  {
@@ -2757,10 +2891,8 @@
2757
2891
  "baseID": "R1"
2758
2892
  },
2759
2893
  {
2760
- "typeID": 2,
2761
- "isOrdered": true,
2762
- "isArithmetic": true,
2763
- "isIntegerCompatible": true
2894
+ "typeID": 3,
2895
+ "baseID": "R1"
2764
2896
  }
2765
2897
  ]
2766
2898
  }
@@ -2773,53 +2905,21 @@
2773
2905
  }
2774
2906
  },
2775
2907
  {
2776
- "id": 64,
2777
- "alias": "T8",
2778
- "cstType": "statement",
2779
- "definitionFormal": "1=1",
2780
- "term": "Групповые операции",
2781
- "convention": "Условия для левых и правых свойств через конкатенацию",
2908
+ "id": 25,
2909
+ "alias": "P10",
2910
+ "cstType": "predicate",
2911
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ)∩σ=∅",
2912
+ "term": "свойство антирефлексивности",
2782
2913
  "definitionText": "",
2783
- "analysis": {
2784
- "success": true,
2785
- "type": {
2786
- "typeID": 6
2787
- },
2788
- "valueClass": "value",
2789
- "diagnostics": []
2790
- }
2791
- },
2792
- {
2793
- "id": 65,
2794
- "alias": "F42",
2795
- "cstType": "function",
2796
- "definitionFormal": "[α∈R1, β∈R1, σ∈ℬ((R1×R1)×R1)] debool(Pr2(Fi1[{(α,β)}](σ)))",
2797
- "term": "результат операции для данных аргументов",
2798
2914
  "convention": "",
2799
- "definitionText": "",
2800
2915
  "analysis": {
2801
2916
  "success": true,
2802
2917
  "type": {
2803
- "typeID": 7,
2918
+ "typeID": 8,
2804
2919
  "result": {
2805
- "typeID": 3,
2806
- "baseID": "R1"
2920
+ "typeID": 6
2807
2921
  },
2808
2922
  "args": [
2809
- {
2810
- "alias": "α",
2811
- "type": {
2812
- "typeID": 3,
2813
- "baseID": "R1"
2814
- }
2815
- },
2816
- {
2817
- "alias": "β",
2818
- "type": {
2819
- "typeID": 3,
2820
- "baseID": "R1"
2821
- }
2822
- },
2823
2923
  {
2824
2924
  "alias": "σ",
2825
2925
  "type": {
@@ -2828,17 +2928,8 @@
2828
2928
  "typeID": 4,
2829
2929
  "factors": [
2830
2930
  {
2831
- "typeID": 4,
2832
- "factors": [
2833
- {
2834
- "typeID": 3,
2835
- "baseID": "R1"
2836
- },
2837
- {
2838
- "typeID": 3,
2839
- "baseID": "R1"
2840
- }
2841
- ]
2931
+ "typeID": 3,
2932
+ "baseID": "R1"
2842
2933
  },
2843
2934
  {
2844
2935
  "typeID": 3,
@@ -2855,23 +2946,19 @@
2855
2946
  }
2856
2947
  },
2857
2948
  {
2858
- "id": 66,
2859
- "alias": "F43",
2860
- "cstType": "function",
2861
- "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] D{ξ∈Pr1(Pr1(σ)) | ∀α∈Pr1(Pr1(σ)) (((α,ξ),ξ)∈σ & ((ξ,α),ξ)∈σ)}",
2862
- "term": "инвариантные элементы",
2863
- "convention": "например ноль для операции умножения целых чисел",
2949
+ "id": 24,
2950
+ "alias": "P9",
2951
+ "cstType": "predicate",
2952
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1,1(σ) σ",
2953
+ "term": "свойство рефлексивности",
2864
2954
  "definitionText": "",
2955
+ "convention": "",
2865
2956
  "analysis": {
2866
2957
  "success": true,
2867
2958
  "type": {
2868
- "typeID": 7,
2959
+ "typeID": 8,
2869
2960
  "result": {
2870
- "typeID": 5,
2871
- "base": {
2872
- "typeID": 3,
2873
- "baseID": "R1"
2874
- }
2961
+ "typeID": 6
2875
2962
  },
2876
2963
  "args": [
2877
2964
  {
@@ -2882,17 +2969,8 @@
2882
2969
  "typeID": 4,
2883
2970
  "factors": [
2884
2971
  {
2885
- "typeID": 4,
2886
- "factors": [
2887
- {
2888
- "typeID": 3,
2889
- "baseID": "R1"
2890
- },
2891
- {
2892
- "typeID": 3,
2893
- "baseID": "R1"
2894
- }
2895
- ]
2972
+ "typeID": 3,
2973
+ "baseID": "R1"
2896
2974
  },
2897
2975
  {
2898
2976
  "typeID": 3,
@@ -2909,23 +2987,19 @@
2909
2987
  }
2910
2988
  },
2911
2989
  {
2912
- "id": 67,
2913
- "alias": "F44",
2914
- "cstType": "function",
2915
- "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] D{ξ∈Pr1(Pr1(σ)) | ∀α∈Pr1(Pr1(σ)) (((α,ξ),α)∈σ & ((ξ,α),α)∈σ)}",
2916
- "term": "нейтральные элементы",
2917
- "convention": "",
2990
+ "id": 23,
2991
+ "alias": "P8",
2992
+ "cstType": "predicate",
2993
+ "definitionFormal": "[σ∈ℬ(R1×R1)] (Pr2,1(σ)∩σ)\\Pr1,1(σ)=∅",
2994
+ "term": "свойство антисимметричности",
2918
2995
  "definitionText": "",
2996
+ "convention": "",
2919
2997
  "analysis": {
2920
2998
  "success": true,
2921
2999
  "type": {
2922
- "typeID": 7,
3000
+ "typeID": 8,
2923
3001
  "result": {
2924
- "typeID": 5,
2925
- "base": {
2926
- "typeID": 3,
2927
- "baseID": "R1"
2928
- }
3002
+ "typeID": 6
2929
3003
  },
2930
3004
  "args": [
2931
3005
  {
@@ -2936,17 +3010,8 @@
2936
3010
  "typeID": 4,
2937
3011
  "factors": [
2938
3012
  {
2939
- "typeID": 4,
2940
- "factors": [
2941
- {
2942
- "typeID": 3,
2943
- "baseID": "R1"
2944
- },
2945
- {
2946
- "typeID": 3,
2947
- "baseID": "R1"
2948
- }
2949
- ]
3013
+ "typeID": 3,
3014
+ "baseID": "R1"
2950
3015
  },
2951
3016
  {
2952
3017
  "typeID": 3,
@@ -2963,23 +3028,19 @@
2963
3028
  }
2964
3029
  },
2965
3030
  {
2966
- "id": 68,
2967
- "alias": "F45",
2968
- "cstType": "function",
2969
- "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] D{ξ∈Pr1(Pr1(σ)) | ((ξ,ξ),ξ)∈σ}",
2970
- "term": "идемпотентные элементы",
2971
- "convention": "",
3031
+ "id": 22,
3032
+ "alias": "P7",
3033
+ "cstType": "predicate",
3034
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr2,1(σ) = σ",
3035
+ "term": "свойство симметричности",
2972
3036
  "definitionText": "",
3037
+ "convention": "",
2973
3038
  "analysis": {
2974
3039
  "success": true,
2975
3040
  "type": {
2976
- "typeID": 7,
3041
+ "typeID": 8,
2977
3042
  "result": {
2978
- "typeID": 5,
2979
- "base": {
2980
- "typeID": 3,
2981
- "baseID": "R1"
2982
- }
3043
+ "typeID": 6
2983
3044
  },
2984
3045
  "args": [
2985
3046
  {
@@ -2990,17 +3051,8 @@
2990
3051
  "typeID": 4,
2991
3052
  "factors": [
2992
3053
  {
2993
- "typeID": 4,
2994
- "factors": [
2995
- {
2996
- "typeID": 3,
2997
- "baseID": "R1"
2998
- },
2999
- {
3000
- "typeID": 3,
3001
- "baseID": "R1"
3002
- }
3003
- ]
3054
+ "typeID": 3,
3055
+ "baseID": "R1"
3004
3056
  },
3005
3057
  {
3006
3058
  "typeID": 3,
@@ -3017,30 +3069,29 @@
3017
3069
  }
3018
3070
  },
3019
3071
  {
3020
- "id": 69,
3021
- "alias": "F46",
3022
- "cstType": "function",
3023
- "definitionFormal": "[α∈R1, σ∈ℬ((R1×R1)×R1)] D{ω∈Pr1(Pr1(σ)) | F42[α,ω,σ]∈F44[σ] & F42[ω,α,σ]∈F44[σ]}",
3024
- "term": "обратные элементы для данного элемента",
3025
- "convention": "",
3072
+ "id": 21,
3073
+ "alias": "P6",
3074
+ "cstType": "predicate",
3075
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R1)] σ∪Pr2,1(σ)∪Pr1,1(σ)∪Pr2,2(σ) = α×α",
3076
+ "term": "свойство полноты (линейности)",
3026
3077
  "definitionText": "",
3078
+ "convention": "",
3027
3079
  "analysis": {
3028
3080
  "success": true,
3029
3081
  "type": {
3030
- "typeID": 7,
3082
+ "typeID": 8,
3031
3083
  "result": {
3032
- "typeID": 5,
3033
- "base": {
3034
- "typeID": 3,
3035
- "baseID": "R1"
3036
- }
3084
+ "typeID": 6
3037
3085
  },
3038
3086
  "args": [
3039
3087
  {
3040
3088
  "alias": "α",
3041
3089
  "type": {
3042
- "typeID": 3,
3043
- "baseID": "R1"
3090
+ "typeID": 5,
3091
+ "base": {
3092
+ "typeID": 3,
3093
+ "baseID": "R1"
3094
+ }
3044
3095
  }
3045
3096
  },
3046
3097
  {
@@ -3051,17 +3102,8 @@
3051
3102
  "typeID": 4,
3052
3103
  "factors": [
3053
3104
  {
3054
- "typeID": 4,
3055
- "factors": [
3056
- {
3057
- "typeID": 3,
3058
- "baseID": "R1"
3059
- },
3060
- {
3061
- "typeID": 3,
3062
- "baseID": "R1"
3063
- }
3064
- ]
3105
+ "typeID": 3,
3106
+ "baseID": "R1"
3065
3107
  },
3066
3108
  {
3067
3109
  "typeID": 3,
@@ -3078,38 +3120,25 @@
3078
3120
  }
3079
3121
  },
3080
3122
  {
3081
- "id": 70,
3082
- "alias": "F47",
3083
- "cstType": "function",
3084
- "definitionFormal": "[α∈R1, λ∈Z, σ∈ℬ((R1×R1)×R1)] pr1(R{(ξ, μ) := (α, 1) | μ<λ & λ>0 | (F42[ξ,α,σ], μ + 1)})",
3085
- "term": "элемент, являющийся данной степенью данного элемента",
3086
- "convention": "",
3123
+ "id": 20,
3124
+ "alias": "F12",
3125
+ "cstType": "function",
3126
+ "definitionFormal": "[σ∈ℬ(R1×R1)] Pr1(σ)∪Pr2(σ)",
3127
+ "term": "участники отношения",
3087
3128
  "definitionText": "",
3129
+ "convention": "",
3088
3130
  "analysis": {
3089
3131
  "success": true,
3090
3132
  "type": {
3091
3133
  "typeID": 7,
3092
3134
  "result": {
3093
- "typeID": 3,
3094
- "baseID": "R1"
3135
+ "typeID": 5,
3136
+ "base": {
3137
+ "typeID": 3,
3138
+ "baseID": "R1"
3139
+ }
3095
3140
  },
3096
3141
  "args": [
3097
- {
3098
- "alias": "α",
3099
- "type": {
3100
- "typeID": 3,
3101
- "baseID": "R1"
3102
- }
3103
- },
3104
- {
3105
- "alias": "λ",
3106
- "type": {
3107
- "typeID": 2,
3108
- "isOrdered": true,
3109
- "isArithmetic": true,
3110
- "isIntegerCompatible": true
3111
- }
3112
- },
3113
3142
  {
3114
3143
  "alias": "σ",
3115
3144
  "type": {
@@ -3118,17 +3147,8 @@
3118
3147
  "typeID": 4,
3119
3148
  "factors": [
3120
3149
  {
3121
- "typeID": 4,
3122
- "factors": [
3123
- {
3124
- "typeID": 3,
3125
- "baseID": "R1"
3126
- },
3127
- {
3128
- "typeID": 3,
3129
- "baseID": "R1"
3130
- }
3131
- ]
3150
+ "typeID": 3,
3151
+ "baseID": "R1"
3132
3152
  },
3133
3153
  {
3134
3154
  "typeID": 3,
@@ -3145,54 +3165,84 @@
3145
3165
  }
3146
3166
  },
3147
3167
  {
3148
- "id": 71,
3149
- "alias": "P29",
3150
- "cstType": "predicate",
3151
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] Pr1(σ) = α×α & card(σ) = card(Pr1(σ))",
3152
- "term": "свойство замкнутости и однозначности",
3168
+ "id": 19,
3169
+ "alias": "T3",
3170
+ "cstType": "statement",
3171
+ "definitionFormal": "1=1",
3172
+ "term": "Бинарные отношения на множестве",
3173
+ "definitionText": "",
3153
3174
  "convention": "",
3175
+ "analysis": {
3176
+ "success": true,
3177
+ "type": {
3178
+ "typeID": 6
3179
+ },
3180
+ "valueClass": "value",
3181
+ "diagnostics": []
3182
+ }
3183
+ },
3184
+ {
3185
+ "id": 18,
3186
+ "alias": "F11",
3187
+ "cstType": "function",
3188
+ "definitionFormal": "[σ1∈ℬ(R1×R2), σ2∈ℬ(R2×R3)] I{(ξ1, ξ3) | (ξ1,ξ2):∈σ1; ξ3:∈Pr2(Fi1[{ξ2}](σ2))}",
3189
+ "term": "композиция отношений",
3154
3190
  "definitionText": "",
3191
+ "convention": "",
3155
3192
  "analysis": {
3156
3193
  "success": true,
3157
3194
  "type": {
3158
- "typeID": 8,
3195
+ "typeID": 7,
3159
3196
  "result": {
3160
- "typeID": 6
3197
+ "typeID": 5,
3198
+ "base": {
3199
+ "typeID": 4,
3200
+ "factors": [
3201
+ {
3202
+ "typeID": 3,
3203
+ "baseID": "R1"
3204
+ },
3205
+ {
3206
+ "typeID": 3,
3207
+ "baseID": "R3"
3208
+ }
3209
+ ]
3210
+ }
3161
3211
  },
3162
3212
  "args": [
3163
3213
  {
3164
- "alias": "α",
3214
+ "alias": "σ1",
3165
3215
  "type": {
3166
3216
  "typeID": 5,
3167
3217
  "base": {
3168
- "typeID": 3,
3169
- "baseID": "R1"
3218
+ "typeID": 4,
3219
+ "factors": [
3220
+ {
3221
+ "typeID": 3,
3222
+ "baseID": "R1"
3223
+ },
3224
+ {
3225
+ "typeID": 3,
3226
+ "baseID": "R2"
3227
+ }
3228
+ ]
3170
3229
  }
3171
3230
  }
3172
3231
  },
3173
3232
  {
3174
- "alias": "σ",
3233
+ "alias": "σ2",
3175
3234
  "type": {
3176
3235
  "typeID": 5,
3177
3236
  "base": {
3178
3237
  "typeID": 4,
3179
3238
  "factors": [
3180
3239
  {
3181
- "typeID": 4,
3182
- "factors": [
3183
- {
3184
- "typeID": 3,
3185
- "baseID": "R1"
3186
- },
3187
- {
3188
- "typeID": 3,
3189
- "baseID": "R1"
3190
- }
3191
- ]
3240
+ "typeID": 3,
3241
+ "baseID": "R2"
3192
3242
  },
3193
3243
  {
3194
3244
  "typeID": 3,
3195
- "baseID": "R1"
3245
+ "baseID": "R3"
3196
3246
  }
3197
3247
  ]
3198
3248
  }
@@ -3205,21 +3255,35 @@
3205
3255
  }
3206
3256
  },
3207
3257
  {
3208
- "id": 72,
3209
- "alias": "P30",
3210
- "cstType": "predicate",
3211
- "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] ∀α,β,γ∈Pr1(Pr1(σ)) F42[F42[α,β,σ],γ,σ] = F42[α,F42[β,γ,σ],σ]",
3212
- "term": "свойство ассоциативности",
3213
- "convention": "",
3258
+ "id": 17,
3259
+ "alias": "F10",
3260
+ "cstType": "function",
3261
+ "definitionFormal": "[α∈ℬ(R2), σ∈ℬ(R1×R2)] Pr1(Fi2[α](σ))",
3262
+ "term": "прообраз множества",
3214
3263
  "definitionText": "",
3264
+ "convention": "",
3215
3265
  "analysis": {
3216
3266
  "success": true,
3217
3267
  "type": {
3218
- "typeID": 8,
3268
+ "typeID": 7,
3219
3269
  "result": {
3220
- "typeID": 6
3270
+ "typeID": 5,
3271
+ "base": {
3272
+ "typeID": 3,
3273
+ "baseID": "R1"
3274
+ }
3221
3275
  },
3222
3276
  "args": [
3277
+ {
3278
+ "alias": "α",
3279
+ "type": {
3280
+ "typeID": 5,
3281
+ "base": {
3282
+ "typeID": 3,
3283
+ "baseID": "R2"
3284
+ }
3285
+ }
3286
+ },
3223
3287
  {
3224
3288
  "alias": "σ",
3225
3289
  "type": {
@@ -3228,21 +3292,12 @@
3228
3292
  "typeID": 4,
3229
3293
  "factors": [
3230
3294
  {
3231
- "typeID": 4,
3232
- "factors": [
3233
- {
3234
- "typeID": 3,
3235
- "baseID": "R1"
3236
- },
3237
- {
3238
- "typeID": 3,
3239
- "baseID": "R1"
3240
- }
3241
- ]
3295
+ "typeID": 3,
3296
+ "baseID": "R1"
3242
3297
  },
3243
3298
  {
3244
3299
  "typeID": 3,
3245
- "baseID": "R1"
3300
+ "baseID": "R2"
3246
3301
  }
3247
3302
  ]
3248
3303
  }
@@ -3255,21 +3310,35 @@
3255
3310
  }
3256
3311
  },
3257
3312
  {
3258
- "id": 73,
3259
- "alias": "P31",
3260
- "cstType": "predicate",
3261
- "definitionFormal": "[σ∈ℬ((R1×R1)×R1)] ((α1,α2),γ)∈σ ((α2,α1))∈σ",
3262
- "term": "свойство коммутативности",
3263
- "convention": "",
3313
+ "id": 16,
3314
+ "alias": "F9",
3315
+ "cstType": "function",
3316
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R2)] Pr2(Fi1[α](σ))",
3317
+ "term": "образ множества",
3264
3318
  "definitionText": "",
3319
+ "convention": "",
3265
3320
  "analysis": {
3266
3321
  "success": true,
3267
3322
  "type": {
3268
- "typeID": 8,
3323
+ "typeID": 7,
3269
3324
  "result": {
3270
- "typeID": 6
3325
+ "typeID": 5,
3326
+ "base": {
3327
+ "typeID": 3,
3328
+ "baseID": "R2"
3329
+ }
3271
3330
  },
3272
3331
  "args": [
3332
+ {
3333
+ "alias": "α",
3334
+ "type": {
3335
+ "typeID": 5,
3336
+ "base": {
3337
+ "typeID": 3,
3338
+ "baseID": "R1"
3339
+ }
3340
+ }
3341
+ },
3273
3342
  {
3274
3343
  "alias": "σ",
3275
3344
  "type": {
@@ -3278,21 +3347,12 @@
3278
3347
  "typeID": 4,
3279
3348
  "factors": [
3280
3349
  {
3281
- "typeID": 4,
3282
- "factors": [
3283
- {
3284
- "typeID": 3,
3285
- "baseID": "R1"
3286
- },
3287
- {
3288
- "typeID": 3,
3289
- "baseID": "R1"
3290
- }
3291
- ]
3350
+ "typeID": 3,
3351
+ "baseID": "R1"
3292
3352
  },
3293
3353
  {
3294
3354
  "typeID": 3,
3295
- "baseID": "R1"
3355
+ "baseID": "R2"
3296
3356
  }
3297
3357
  ]
3298
3358
  }
@@ -3305,29 +3365,30 @@
3305
3365
  }
3306
3366
  },
3307
3367
  {
3308
- "id": 74,
3309
- "alias": "P35",
3310
- "cstType": "predicate",
3311
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] P29[α, σ] & P30[σ]",
3312
- "term": "полугруппа",
3313
- "convention": "ассоциативный группоид",
3368
+ "id": 15,
3369
+ "alias": "F8",
3370
+ "cstType": "function",
3371
+ "definitionFormal": "[α∈R2, σ∈ℬ(R1×R2)] Pr1(Fi2[{α}](σ))",
3372
+ "term": "сечение по значению",
3314
3373
  "definitionText": "",
3374
+ "convention": "",
3315
3375
  "analysis": {
3316
3376
  "success": true,
3317
3377
  "type": {
3318
- "typeID": 8,
3378
+ "typeID": 7,
3319
3379
  "result": {
3320
- "typeID": 6
3380
+ "typeID": 5,
3381
+ "base": {
3382
+ "typeID": 3,
3383
+ "baseID": "R1"
3384
+ }
3321
3385
  },
3322
3386
  "args": [
3323
3387
  {
3324
3388
  "alias": "α",
3325
3389
  "type": {
3326
- "typeID": 5,
3327
- "base": {
3328
- "typeID": 3,
3329
- "baseID": "R1"
3330
- }
3390
+ "typeID": 3,
3391
+ "baseID": "R2"
3331
3392
  }
3332
3393
  },
3333
3394
  {
@@ -3338,21 +3399,12 @@
3338
3399
  "typeID": 4,
3339
3400
  "factors": [
3340
3401
  {
3341
- "typeID": 4,
3342
- "factors": [
3343
- {
3344
- "typeID": 3,
3345
- "baseID": "R1"
3346
- },
3347
- {
3348
- "typeID": 3,
3349
- "baseID": "R1"
3350
- }
3351
- ]
3402
+ "typeID": 3,
3403
+ "baseID": "R1"
3352
3404
  },
3353
3405
  {
3354
3406
  "typeID": 3,
3355
- "baseID": "R1"
3407
+ "baseID": "R2"
3356
3408
  }
3357
3409
  ]
3358
3410
  }
@@ -3363,31 +3415,29 @@
3363
3415
  "valueClass": "value",
3364
3416
  "diagnostics": []
3365
3417
  }
3366
- },
3367
- {
3368
- "id": 75,
3369
- "alias": "P36",
3370
- "cstType": "predicate",
3371
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] P29[α, σ] & P30[σ] & card(F44[σ]) > 0",
3372
- "term": "моноид",
3373
- "convention": "полугруппа с нейтральным элементом",
3418
+ },
3419
+ {
3420
+ "id": 14,
3421
+ "alias": "F7",
3422
+ "cstType": "function",
3423
+ "definitionFormal": "[α∈R2, σ∈ℬ(R1×R2)] debool(Pr1(Fi2[{α}](σ)))",
3424
+ "term": "прообраз значения",
3374
3425
  "definitionText": "",
3426
+ "convention": "",
3375
3427
  "analysis": {
3376
3428
  "success": true,
3377
3429
  "type": {
3378
- "typeID": 8,
3430
+ "typeID": 7,
3379
3431
  "result": {
3380
- "typeID": 6
3432
+ "typeID": 3,
3433
+ "baseID": "R1"
3381
3434
  },
3382
3435
  "args": [
3383
3436
  {
3384
3437
  "alias": "α",
3385
3438
  "type": {
3386
- "typeID": 5,
3387
- "base": {
3388
- "typeID": 3,
3389
- "baseID": "R1"
3390
- }
3439
+ "typeID": 3,
3440
+ "baseID": "R2"
3391
3441
  }
3392
3442
  },
3393
3443
  {
@@ -3398,21 +3448,12 @@
3398
3448
  "typeID": 4,
3399
3449
  "factors": [
3400
3450
  {
3401
- "typeID": 4,
3402
- "factors": [
3403
- {
3404
- "typeID": 3,
3405
- "baseID": "R1"
3406
- },
3407
- {
3408
- "typeID": 3,
3409
- "baseID": "R1"
3410
- }
3411
- ]
3451
+ "typeID": 3,
3452
+ "baseID": "R1"
3412
3453
  },
3413
3454
  {
3414
3455
  "typeID": 3,
3415
- "baseID": "R1"
3456
+ "baseID": "R2"
3416
3457
  }
3417
3458
  ]
3418
3459
  }
@@ -3425,29 +3466,30 @@
3425
3466
  }
3426
3467
  },
3427
3468
  {
3428
- "id": 76,
3429
- "alias": "P37",
3430
- "cstType": "predicate",
3431
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬ((R1×R1)×R1)] P29[α, σ] & P30[σ] & card(F44[σ]) > 0 & ∀ξ∈α card(F46[ξ, σ]) > 0",
3432
- "term": "группа",
3433
- "convention": "",
3469
+ "id": 13,
3470
+ "alias": "F6",
3471
+ "cstType": "function",
3472
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R2)] Pr2(Fi1[{α}](σ))",
3473
+ "term": "сечение по элементу",
3434
3474
  "definitionText": "",
3475
+ "convention": "",
3435
3476
  "analysis": {
3436
3477
  "success": true,
3437
3478
  "type": {
3438
- "typeID": 8,
3479
+ "typeID": 7,
3439
3480
  "result": {
3440
- "typeID": 6
3481
+ "typeID": 5,
3482
+ "base": {
3483
+ "typeID": 3,
3484
+ "baseID": "R2"
3485
+ }
3441
3486
  },
3442
3487
  "args": [
3443
3488
  {
3444
3489
  "alias": "α",
3445
3490
  "type": {
3446
- "typeID": 5,
3447
- "base": {
3448
- "typeID": 3,
3449
- "baseID": "R1"
3450
- }
3491
+ "typeID": 3,
3492
+ "baseID": "R1"
3451
3493
  }
3452
3494
  },
3453
3495
  {
@@ -3458,21 +3500,12 @@
3458
3500
  "typeID": 4,
3459
3501
  "factors": [
3460
3502
  {
3461
- "typeID": 4,
3462
- "factors": [
3463
- {
3464
- "typeID": 3,
3465
- "baseID": "R1"
3466
- },
3467
- {
3468
- "typeID": 3,
3469
- "baseID": "R1"
3470
- }
3471
- ]
3503
+ "typeID": 3,
3504
+ "baseID": "R1"
3472
3505
  },
3473
3506
  {
3474
3507
  "typeID": 3,
3475
- "baseID": "R1"
3508
+ "baseID": "R2"
3476
3509
  }
3477
3510
  ]
3478
3511
  }
@@ -3485,89 +3518,43 @@
3485
3518
  }
3486
3519
  },
3487
3520
  {
3488
- "id": 77,
3489
- "alias": "T9",
3490
- "cstType": "statement",
3491
- "definitionFormal": "1=1",
3492
- "term": "Кольца",
3493
- "convention": "Операции по умолчанию — группоиды",
3521
+ "id": 12,
3522
+ "alias": "F5",
3523
+ "cstType": "function",
3524
+ "definitionFormal": "[α∈R1, σ∈ℬ(R1×R2)] debool(Pr2(Fi1[{α}](σ)))",
3525
+ "term": "образ элемента",
3494
3526
  "definitionText": "",
3495
- "analysis": {
3496
- "success": true,
3497
- "type": {
3498
- "typeID": 6
3499
- },
3500
- "valueClass": "value",
3501
- "diagnostics": []
3502
- }
3503
- },
3504
- {
3505
- "id": 78,
3506
- "alias": "P39",
3507
- "cstType": "predicate",
3508
- "definitionFormal": "[φ∈ℬ((R1×R1)×R1), ψ∈ℬ((R1×R1)×R1)] ∀α,β,γ∈Pr1(Pr1(φ)) ( F42[α, F42[β, γ, φ], ψ] = F42[F42[α, β, ψ], F42[α, γ, ψ], φ] & F42[F42[α, β, φ], γ, ψ] = F42[F42[α, γ, ψ], F42[β, γ, ψ], φ] )",
3509
- "term": "свойство дистрибутивности φψ",
3510
3527
  "convention": "",
3511
- "definitionText": "",
3512
3528
  "analysis": {
3513
3529
  "success": true,
3514
3530
  "type": {
3515
- "typeID": 8,
3531
+ "typeID": 7,
3516
3532
  "result": {
3517
- "typeID": 6
3533
+ "typeID": 3,
3534
+ "baseID": "R2"
3518
3535
  },
3519
3536
  "args": [
3520
3537
  {
3521
- "alias": "φ",
3538
+ "alias": "α",
3522
3539
  "type": {
3523
- "typeID": 5,
3524
- "base": {
3525
- "typeID": 4,
3526
- "factors": [
3527
- {
3528
- "typeID": 4,
3529
- "factors": [
3530
- {
3531
- "typeID": 3,
3532
- "baseID": "R1"
3533
- },
3534
- {
3535
- "typeID": 3,
3536
- "baseID": "R1"
3537
- }
3538
- ]
3539
- },
3540
- {
3541
- "typeID": 3,
3542
- "baseID": "R1"
3543
- }
3544
- ]
3545
- }
3540
+ "typeID": 3,
3541
+ "baseID": "R1"
3546
3542
  }
3547
3543
  },
3548
3544
  {
3549
- "alias": "ψ",
3545
+ "alias": "σ",
3550
3546
  "type": {
3551
3547
  "typeID": 5,
3552
3548
  "base": {
3553
3549
  "typeID": 4,
3554
3550
  "factors": [
3555
3551
  {
3556
- "typeID": 4,
3557
- "factors": [
3558
- {
3559
- "typeID": 3,
3560
- "baseID": "R1"
3561
- },
3562
- {
3563
- "typeID": 3,
3564
- "baseID": "R1"
3565
- }
3566
- ]
3552
+ "typeID": 3,
3553
+ "baseID": "R1"
3567
3554
  },
3568
3555
  {
3569
3556
  "typeID": 3,
3570
- "baseID": "R1"
3557
+ "baseID": "R2"
3571
3558
  }
3572
3559
  ]
3573
3560
  }
@@ -3580,13 +3567,13 @@
3580
3567
  }
3581
3568
  },
3582
3569
  {
3583
- "id": 79,
3584
- "alias": "P41",
3570
+ "id": 11,
3571
+ "alias": "P5",
3585
3572
  "cstType": "predicate",
3586
- "definitionFormal": "[α∈ℬ(R1), φ∈ℬ((R1×R1)×R1), ψ∈ℬ((R1×R1)×R1)] P36[α, φ] & P31[φ] & P35[α, ψ] & P39[φ, ψ]",
3587
- "term": "полукольцо",
3588
- "convention": "сложение — моноид + коммутативность; умножение — полугруппа",
3573
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R2)] card(Pr1(σ)) = card(σ) & Pr1(σ) = α",
3574
+ "term": "функция",
3589
3575
  "definitionText": "",
3576
+ "convention": "",
3590
3577
  "analysis": {
3591
3578
  "success": true,
3592
3579
  "type": {
@@ -3606,56 +3593,19 @@
3606
3593
  }
3607
3594
  },
3608
3595
  {
3609
- "alias": "φ",
3596
+ "alias": "σ",
3610
3597
  "type": {
3611
3598
  "typeID": 5,
3612
3599
  "base": {
3613
3600
  "typeID": 4,
3614
3601
  "factors": [
3615
- {
3616
- "typeID": 4,
3617
- "factors": [
3618
- {
3619
- "typeID": 3,
3620
- "baseID": "R1"
3621
- },
3622
- {
3623
- "typeID": 3,
3624
- "baseID": "R1"
3625
- }
3626
- ]
3627
- },
3628
3602
  {
3629
3603
  "typeID": 3,
3630
3604
  "baseID": "R1"
3631
- }
3632
- ]
3633
- }
3634
- }
3635
- },
3636
- {
3637
- "alias": "ψ",
3638
- "type": {
3639
- "typeID": 5,
3640
- "base": {
3641
- "typeID": 4,
3642
- "factors": [
3643
- {
3644
- "typeID": 4,
3645
- "factors": [
3646
- {
3647
- "typeID": 3,
3648
- "baseID": "R1"
3649
- },
3650
- {
3651
- "typeID": 3,
3652
- "baseID": "R1"
3653
- }
3654
- ]
3655
3605
  },
3656
3606
  {
3657
3607
  "typeID": 3,
3658
- "baseID": "R1"
3608
+ "baseID": "R2"
3659
3609
  }
3660
3610
  ]
3661
3611
  }
@@ -3668,30 +3618,13 @@
3668
3618
  }
3669
3619
  },
3670
3620
  {
3671
- "id": 80,
3672
- "alias": "T10",
3673
- "cstType": "statement",
3674
- "definitionFormal": "1=1",
3675
- "term": "Множества подмножеств",
3676
- "convention": "",
3677
- "definitionText": "",
3678
- "analysis": {
3679
- "success": true,
3680
- "type": {
3681
- "typeID": 6
3682
- },
3683
- "valueClass": "value",
3684
- "diagnostics": []
3685
- }
3686
- },
3687
- {
3688
- "id": 81,
3689
- "alias": "P46",
3621
+ "id": 10,
3622
+ "alias": "P4",
3690
3623
  "cstType": "predicate",
3691
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] α⊆red(σ)",
3692
- "term": "свойство покрытия",
3693
- "convention": "",
3624
+ "definitionFormal": "[σ∈ℬ(R1×R2)] card(Pr2(σ)) = card(σ)",
3625
+ "term": "свойство обратной однозначности",
3694
3626
  "definitionText": "",
3627
+ "convention": "",
3695
3628
  "analysis": {
3696
3629
  "success": true,
3697
3630
  "type": {
@@ -3700,26 +3633,22 @@
3700
3633
  "typeID": 6
3701
3634
  },
3702
3635
  "args": [
3703
- {
3704
- "alias": "α",
3705
- "type": {
3706
- "typeID": 5,
3707
- "base": {
3708
- "typeID": 3,
3709
- "baseID": "R1"
3710
- }
3711
- }
3712
- },
3713
3636
  {
3714
3637
  "alias": "σ",
3715
3638
  "type": {
3716
3639
  "typeID": 5,
3717
3640
  "base": {
3718
- "typeID": 5,
3719
- "base": {
3720
- "typeID": 3,
3721
- "baseID": "R1"
3722
- }
3641
+ "typeID": 4,
3642
+ "factors": [
3643
+ {
3644
+ "typeID": 3,
3645
+ "baseID": "R1"
3646
+ },
3647
+ {
3648
+ "typeID": 3,
3649
+ "baseID": "R2"
3650
+ }
3651
+ ]
3723
3652
  }
3724
3653
  }
3725
3654
  }
@@ -3730,13 +3659,13 @@
3730
3659
  }
3731
3660
  },
3732
3661
  {
3733
- "id": 82,
3734
- "alias": "P47",
3662
+ "id": 9,
3663
+ "alias": "P3",
3735
3664
  "cstType": "predicate",
3736
- "definitionFormal": "[σ∈ℬℬ(R1)] ∀α,β∈σ (α≠β α∩β=∅)",
3737
- "term": "свойство попарного непересечения",
3738
- "convention": "",
3665
+ "definitionFormal": "[σ∈ℬ(R1×R2)] card(Pr1(σ)) = card(σ)",
3666
+ "term": "свойство прямой однозначности",
3739
3667
  "definitionText": "",
3668
+ "convention": "",
3740
3669
  "analysis": {
3741
3670
  "success": true,
3742
3671
  "type": {
@@ -3750,11 +3679,17 @@
3750
3679
  "type": {
3751
3680
  "typeID": 5,
3752
3681
  "base": {
3753
- "typeID": 5,
3754
- "base": {
3755
- "typeID": 3,
3756
- "baseID": "R1"
3757
- }
3682
+ "typeID": 4,
3683
+ "factors": [
3684
+ {
3685
+ "typeID": 3,
3686
+ "baseID": "R1"
3687
+ },
3688
+ {
3689
+ "typeID": 3,
3690
+ "baseID": "R2"
3691
+ }
3692
+ ]
3758
3693
  }
3759
3694
  }
3760
3695
  }
@@ -3765,13 +3700,13 @@
3765
3700
  }
3766
3701
  },
3767
3702
  {
3768
- "id": 83,
3769
- "alias": "P48",
3703
+ "id": 8,
3704
+ "alias": "P2",
3770
3705
  "cstType": "predicate",
3771
- "definitionFormal": "[σ∈ℬℬ(R1)] ∀α,β∈σ α∪β∈σ",
3772
- "term": "свойство замкнутости по объединению",
3773
- "convention": "",
3706
+ "definitionFormal": "[α∈ℬ(R2), σ∈ℬ(R1×R2)] Pr2(σ) = α",
3707
+ "term": "свойство всюдузначности",
3774
3708
  "definitionText": "",
3709
+ "convention": "",
3775
3710
  "analysis": {
3776
3711
  "success": true,
3777
3712
  "type": {
@@ -3780,16 +3715,32 @@
3780
3715
  "typeID": 6
3781
3716
  },
3782
3717
  "args": [
3718
+ {
3719
+ "alias": "α",
3720
+ "type": {
3721
+ "typeID": 5,
3722
+ "base": {
3723
+ "typeID": 3,
3724
+ "baseID": "R2"
3725
+ }
3726
+ }
3727
+ },
3783
3728
  {
3784
3729
  "alias": "σ",
3785
3730
  "type": {
3786
3731
  "typeID": 5,
3787
3732
  "base": {
3788
- "typeID": 5,
3789
- "base": {
3790
- "typeID": 3,
3791
- "baseID": "R1"
3792
- }
3733
+ "typeID": 4,
3734
+ "factors": [
3735
+ {
3736
+ "typeID": 3,
3737
+ "baseID": "R1"
3738
+ },
3739
+ {
3740
+ "typeID": 3,
3741
+ "baseID": "R2"
3742
+ }
3743
+ ]
3793
3744
  }
3794
3745
  }
3795
3746
  }
@@ -3800,13 +3751,13 @@
3800
3751
  }
3801
3752
  },
3802
3753
  {
3803
- "id": 84,
3804
- "alias": "P52",
3754
+ "id": 7,
3755
+ "alias": "P1",
3805
3756
  "cstType": "predicate",
3806
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] red(σ) & card(σ)>1 & ∅∉σ & ∀ξ1,ξ2∈σ (ξ1≠ξ2 ⇒ ξ1∩ξ2=∅)",
3807
- "term": "разбиение",
3808
- "convention": "",
3757
+ "definitionFormal": "[α∈ℬ(R1), σ∈ℬ(R1×R2)] Pr1(σ) = α",
3758
+ "term": "свойство всюдуопределенности",
3809
3759
  "definitionText": "",
3760
+ "convention": "",
3810
3761
  "analysis": {
3811
3762
  "success": true,
3812
3763
  "type": {
@@ -3830,11 +3781,17 @@
3830
3781
  "type": {
3831
3782
  "typeID": 5,
3832
3783
  "base": {
3833
- "typeID": 5,
3834
- "base": {
3835
- "typeID": 3,
3836
- "baseID": "R1"
3837
- }
3784
+ "typeID": 4,
3785
+ "factors": [
3786
+ {
3787
+ "typeID": 3,
3788
+ "baseID": "R1"
3789
+ },
3790
+ {
3791
+ "typeID": 3,
3792
+ "baseID": "R2"
3793
+ }
3794
+ ]
3838
3795
  }
3839
3796
  }
3840
3797
  }
@@ -3845,13 +3802,13 @@
3845
3802
  }
3846
3803
  },
3847
3804
  {
3848
- "id": 85,
3849
- "alias": "F48",
3805
+ "id": 6,
3806
+ "alias": "F4",
3850
3807
  "cstType": "function",
3851
- "definitionFormal": "[α∈R1, σ∈ℬℬ(R1)] D{ξ∈σ | α∈ξ}",
3852
- "term": "фильтр по вхождению элемента",
3853
- "convention": "",
3808
+ "definitionFormal": "[σ∈ℬ(R1×R2)] Pr2,1(σ)",
3809
+ "term": "обратное отношение",
3854
3810
  "definitionText": "",
3811
+ "convention": "",
3855
3812
  "analysis": {
3856
3813
  "success": true,
3857
3814
  "type": {
@@ -3859,31 +3816,36 @@
3859
3816
  "result": {
3860
3817
  "typeID": 5,
3861
3818
  "base": {
3862
- "typeID": 5,
3863
- "base": {
3864
- "typeID": 3,
3865
- "baseID": "R1"
3866
- }
3819
+ "typeID": 4,
3820
+ "factors": [
3821
+ {
3822
+ "typeID": 3,
3823
+ "baseID": "R2"
3824
+ },
3825
+ {
3826
+ "typeID": 3,
3827
+ "baseID": "R1"
3828
+ }
3829
+ ]
3867
3830
  }
3868
3831
  },
3869
3832
  "args": [
3870
- {
3871
- "alias": "α",
3872
- "type": {
3873
- "typeID": 3,
3874
- "baseID": "R1"
3875
- }
3876
- },
3877
3833
  {
3878
3834
  "alias": "σ",
3879
3835
  "type": {
3880
3836
  "typeID": 5,
3881
3837
  "base": {
3882
- "typeID": 5,
3883
- "base": {
3884
- "typeID": 3,
3885
- "baseID": "R1"
3886
- }
3838
+ "typeID": 4,
3839
+ "factors": [
3840
+ {
3841
+ "typeID": 3,
3842
+ "baseID": "R1"
3843
+ },
3844
+ {
3845
+ "typeID": 3,
3846
+ "baseID": "R2"
3847
+ }
3848
+ ]
3887
3849
  }
3888
3850
  }
3889
3851
  }
@@ -3894,13 +3856,30 @@
3894
3856
  }
3895
3857
  },
3896
3858
  {
3897
- "id": 86,
3898
- "alias": "F49",
3899
- "cstType": "function",
3900
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] D{ξ∈σ | α⊆ξ}",
3901
- "term": "фильтр по подмножеству",
3859
+ "id": 5,
3860
+ "alias": "T2",
3861
+ "cstType": "statement",
3862
+ "definitionFormal": "1=1",
3863
+ "term": "Бинарные отношения двух множеств",
3864
+ "definitionText": "",
3902
3865
  "convention": "",
3866
+ "analysis": {
3867
+ "success": true,
3868
+ "type": {
3869
+ "typeID": 6
3870
+ },
3871
+ "valueClass": "value",
3872
+ "diagnostics": []
3873
+ }
3874
+ },
3875
+ {
3876
+ "id": 4,
3877
+ "alias": "F3",
3878
+ "cstType": "function",
3879
+ "definitionFormal": "[α∈ℬ(R1)] R{ ξ:=α | ξ≠∅ | ξ\\ξ }",
3880
+ "term": "рекурсивное определение",
3903
3881
  "definitionText": "",
3882
+ "convention": "",
3904
3883
  "analysis": {
3905
3884
  "success": true,
3906
3885
  "type": {
@@ -3908,11 +3887,8 @@
3908
3887
  "result": {
3909
3888
  "typeID": 5,
3910
3889
  "base": {
3911
- "typeID": 5,
3912
- "base": {
3913
- "typeID": 3,
3914
- "baseID": "R1"
3915
- }
3890
+ "typeID": 3,
3891
+ "baseID": "R1"
3916
3892
  }
3917
3893
  },
3918
3894
  "args": [
@@ -3925,19 +3901,6 @@
3925
3901
  "baseID": "R1"
3926
3902
  }
3927
3903
  }
3928
- },
3929
- {
3930
- "alias": "σ",
3931
- "type": {
3932
- "typeID": 5,
3933
- "base": {
3934
- "typeID": 5,
3935
- "base": {
3936
- "typeID": 3,
3937
- "baseID": "R1"
3938
- }
3939
- }
3940
- }
3941
3904
  }
3942
3905
  ]
3943
3906
  },
@@ -3946,13 +3909,13 @@
3946
3909
  }
3947
3910
  },
3948
3911
  {
3949
- "id": 87,
3950
- "alias": "F50",
3912
+ "id": 3,
3913
+ "alias": "F2",
3951
3914
  "cstType": "function",
3952
- "definitionFormal": "[α∈ℬ(R1), σ∈ℬℬ(R1)] D{ξ∈σ | ξ⊆α}",
3953
- "term": "фильтр по надмножеству",
3954
- "convention": "",
3915
+ "definitionFormal": "[α∈ℬ(R1)] debool(I{ α | 1=1} ∪ I{ α\\α | 1≠1})",
3916
+ "term": "условный переход",
3955
3917
  "definitionText": "",
3918
+ "convention": "",
3956
3919
  "analysis": {
3957
3920
  "success": true,
3958
3921
  "type": {
@@ -3960,11 +3923,8 @@
3960
3923
  "result": {
3961
3924
  "typeID": 5,
3962
3925
  "base": {
3963
- "typeID": 5,
3964
- "base": {
3965
- "typeID": 3,
3966
- "baseID": "R1"
3967
- }
3926
+ "typeID": 3,
3927
+ "baseID": "R1"
3968
3928
  }
3969
3929
  },
3970
3930
  "args": [
@@ -3977,17 +3937,40 @@
3977
3937
  "baseID": "R1"
3978
3938
  }
3979
3939
  }
3980
- },
3940
+ }
3941
+ ]
3942
+ },
3943
+ "valueClass": "value",
3944
+ "diagnostics": []
3945
+ }
3946
+ },
3947
+ {
3948
+ "id": 2,
3949
+ "alias": "F1",
3950
+ "cstType": "function",
3951
+ "definitionFormal": "[α∈ℬ(R1)] D{ ξ∈α | ξ=ξ }",
3952
+ "term": "схема ограниченного выделения",
3953
+ "definitionText": "",
3954
+ "convention": "",
3955
+ "analysis": {
3956
+ "success": true,
3957
+ "type": {
3958
+ "typeID": 7,
3959
+ "result": {
3960
+ "typeID": 5,
3961
+ "base": {
3962
+ "typeID": 3,
3963
+ "baseID": "R1"
3964
+ }
3965
+ },
3966
+ "args": [
3981
3967
  {
3982
- "alias": "σ",
3968
+ "alias": "α",
3983
3969
  "type": {
3984
3970
  "typeID": 5,
3985
3971
  "base": {
3986
- "typeID": 5,
3987
- "base": {
3988
- "typeID": 3,
3989
- "baseID": "R1"
3990
- }
3972
+ "typeID": 3,
3973
+ "baseID": "R1"
3991
3974
  }
3992
3975
  }
3993
3976
  }
@@ -3996,6 +3979,23 @@
3996
3979
  "valueClass": "value",
3997
3980
  "diagnostics": []
3998
3981
  }
3982
+ },
3983
+ {
3984
+ "id": 1,
3985
+ "alias": "T1",
3986
+ "cstType": "statement",
3987
+ "definitionFormal": "1=1",
3988
+ "term": "Управляющие конструкции",
3989
+ "definitionText": "",
3990
+ "convention": "",
3991
+ "analysis": {
3992
+ "success": true,
3993
+ "type": {
3994
+ "typeID": 6
3995
+ },
3996
+ "valueClass": "value",
3997
+ "diagnostics": []
3998
+ }
3999
3999
  }
4000
4000
  ],
4001
4001
  "model": {