-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathontomathedu.omn
12709 lines (8854 loc) · 584 KB
/
ontomathedu.omn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Prefix: ome: <http://ontomathpro.org/ontomathedu#>
Prefix: owl: <http://www.w3.org/2002/07/owl#>
Prefix: rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Prefix: rdfs: <http://www.w3.org/2000/01/rdf-schema#>
Prefix: skos: <http://www.w3.org/2004/02/skos/core#>
Prefix: xml: <http://www.w3.org/XML/1998/namespace>
Prefix: xsd: <http://www.w3.org/2001/XMLSchema#>
Prefix: dc: <http://purl.org/dc/elements/1.1/>
Ontology: <http://ontomathpro.org/ontomathedu#>
Annotations:
rdfs:label "OntoMathEdu ontology",
dc:creator "Alik Kirillovich <[email protected]>"^^xsd:string,
dc:creator "Eugeny Lipachev <[email protected]>"^^xsd:string,
dc:creator "Liliana Shakirova <[email protected]>"^^xsd:string,
dc:creator "Marina Falileeva <[email protected]>"^^xsd:string,
dc:creator "Olga Nevzorova <[email protected]>"^^xsd:string
AnnotationProperty: dc:creator
AnnotationProperty: <http://purl.org/dc/elements/1.1/source>
Annotations:
rdfs:label "dc:source"
AnnotationProperty: <http://purl.org/dc/elements/1.1/title>
AnnotationProperty: <http://ontomathpro.org/ontomathedu#aboutness>
Annotations:
rdfs:comment "Это отношение связывает утверждение о математическом объекте с этим математическим объектом"@ru,
rdfs:label "aboutness"@en,
rdfs:label "предметность"@ru
Domain:
<http://ontomathpro.org/ontomathedu#R9FJwVhhDyzos7AlZcXLGyZ>
AnnotationProperty: ome:belongsToEducationalLevel
Annotations:
rdfs:label "educational level"@en,
rdfs:label "образовательный уровень"@ru
AnnotationProperty: ome:eduRef
Annotations:
rdfs:label "Educational resource"@en,
rdfs:label "Образовательный ресурс"@ru
SubPropertyOf:
<http://purl.org/dc/elements/1.1/source>
AnnotationProperty: ome:eduRefEn
Annotations:
rdfs:label "English educational resource"@en,
rdfs:label "Английский образовательный ресурс"@ru
SubPropertyOf:
ome:eduRef
AnnotationProperty: ome:eduRefRus
Annotations:
rdfs:label "Russian educational resource"@en,
rdfs:label "Русский образовательный ресурс"@ru
SubPropertyOf:
ome:eduRef
AnnotationProperty: ome:hasPrerequisite
Annotations:
rdfs:comment "The concept A is called a prerequisite for the concept B, if a learner must study the concept A before approaching the concept B"@en,
rdfs:comment "Понятие A является пререквизитом понятия B, если для того, чтобы изучить понятие B, учащийся сначала должен изучить понятие A"@ru,
rdfs:label "has prerequisite"@en,
rdfs:label "hasPrerequisite",
rdfs:label "пререквизит"@ru
AnnotationProperty: ome:hasPrerequisiteRu
Annotations:
rdfs:label "has prerequisite (in Russia)"^^xsd:string,
rdfs:label "пререквизит (РФ)"@ru
SubPropertyOf:
ome:hasPrerequisite
AnnotationProperty: ome:hasPrerequisiteUK
Annotations:
rdfs:label "has prerequisite (in UK)"@en,
rdfs:label "пререквизит (Великобритания)"@ru
SubPropertyOf:
ome:hasPrerequisite
AnnotationProperty: ome:hasPrerequisiteUS
Annotations:
rdfs:label "has prerequisite (in US)"@en,
rdfs:label "пререквизит (США)"@ru
SubPropertyOf:
ome:hasPrerequisite
AnnotationProperty: ome:isDefinedBy
Annotations:
rdfs:label "is defined by"@en,
rdfs:label "определяется через"@ru
AnnotationProperty: ome:rdfs
Annotations:
rdfs:label "rdfs"@en
AnnotationProperty: rdfs:comment
Annotations:
rdfs:label "rdfs:comment"
AnnotationProperty: rdfs:label
Annotations:
rdfs:label "rdfs:label"
AnnotationProperty: rdfs:seeAlso
AnnotationProperty: skos:altLabel
Annotations:
rdfs:label "skos:altLabel"@en
SubPropertyOf:
rdfs:label
AnnotationProperty: skos:comment
AnnotationProperty: skos:definition
Datatype: rdf:PlainLiteral
Datatype: xsd:string
ObjectProperty: ome:belongsToEducationSystem
Annotations:
rdfs:label "belongs to education system"@en,
rdfs:label "принадлежит образовательной системе"@ru
SubPropertyOf:
owl:topObjectProperty
Domain:
ome:EducationalLevel
Range:
ome:EducationSystem
ObjectProperty: ome:hasArgument
Annotations:
rdfs:label "has argument"@en,
rdfs:label "имеет аргумент"@ru
SubPropertyOf:
owl:topObjectProperty
Domain:
ome:R9RSQEnKE4bIaKGXnAFvaQb
Range:
ome:RBJ17uigIxIF6XkATvY18Rn
ObjectProperty: ome:hasEducationalLevelPrerequisite
Annotations:
rdfs:label "prerequisite of an educational level"@en,
rdfs:label "пререквизит образовательного уровня"@ru
SubPropertyOf:
owl:topObjectProperty
Domain:
ome:EducationalLevel
Range:
ome:EducationalLevel
ObjectProperty: ome:isDeterminedBy
Annotations:
rdfs:label "is determined by"@en,
rdfs:label "задается с помощью"@ru
SubPropertyOf:
owl:topObjectProperty
ObjectProperty: ome:isPartOf
Annotations:
rdfs:label "is part of"@en,
rdfs:label "является частью"@ru
SubPropertyOf:
ome:ontologicallyDependsOn
ObjectProperty: ome:ontologicallyDependsOn
Annotations:
rdfs:label "ontologically depends on"@en,
rdfs:label "онтологически зависит от"@ru
SubPropertyOf:
owl:topObjectProperty
ObjectProperty: owl:topObjectProperty
DataProperty: <http://ontomathpro.org/ontomathedu#%D1%87%D0%B0%D1%81%D1%82%D1%8C>
Annotations:
rdfs:label "часть"@en
DataProperty: ome:RDWr1Fg90UHRz1YBVyAdkrW
Annotations:
rdfs:label "level"@en
SubPropertyOf:
owl:topDataProperty
DataProperty: owl:topDataProperty
Class: <http://ontomathpro.org/ontomathedu#%D0%92%D0%B7%D0%B0%D0%B8%D0%BC%D0%BD%D0%BE%D0%B5%D0%A0%D0%B0%D1%81%D0%BF%D0%BE%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5%D0%94%D0%B8%D0%B0%D0%B3%D0%BE%D0%BD%D0%B0%D0%BB%D0%B5%D0%B9%D0%A7%D0%B5%D1%82%D1%8B%D1%80%D0%B5%D1%85%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
rdfs:label "Взаимное расположение диагоналей четырехугольника"@en
SubClassOf:
<http://ontomathpro.org/ontomathedu#R9zH462SjPcHgb8b1EwX99H>,
ome:hasArgument some <http://ontomathpro.org/ontomathedu#R5MbrSEH1tuI1g6DSUfifA>
Class: <http://ontomathpro.org/ontomathedu#%D0%92%D0%B7%D0%B0%D0%B8%D0%BC%D0%BD%D0%BE%D0%B5%D0%A0%D0%B0%D1%81%D0%BF%D0%BE%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%BE%D0%B2>
Annotations:
rdfs:label "Взаимное расположение треугольников"@ru,
rdfs:label "Өчпочмакларның үзара торышы"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RBvwO1vhsZLTdl6QAjZMPbI>,
ome:hasArgument some <http://ontomathpro.org/ontomathedu#RDE5zanRvaa9BRn3cYniCkv>
Class: <http://ontomathpro.org/ontomathedu#%D0%92%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%BD%D0%B0%D1%8F%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D1%8C>
Annotations:
rdfs:label "Circunferencia inscrita"@es,
rdfs:label "Incircle"@en,
rdfs:label "Inscribed circle"@en,
rdfs:label "Вписанная окружность"@ru,
rdfs:label "Камаулы әйләнә"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RQ7LKQ7HoanUKcnirYtQjJ>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RCGUa8X4QJbqziC3Uf46oHj>
Class: <http://ontomathpro.org/ontomathedu#%D0%94%D0%B5%D0%BB%D1%8C%D1%82%D0%BE%D0%B8%D0%B4>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-d>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-2>,
ome:eduRefEn <https://www.mathsisfun.com/geometry/kite.html>,
rdfs:label "Deltoide"@es,
rdfs:label "Kite"@en,
rdfs:label "Дельтоид"@ru,
rdfs:label "Дельтоид"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#R7PtKKMhPd84j6pTWKoSibz>
Class: <http://ontomathpro.org/ontomathedu#%D0%94%D0%BE%D0%BF%D0%BE%D0%BB%D0%BD%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5%D0%94%D1%83%D0%B3%D0%B8%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Дуга_окружности>,
rdfs:label "Дополнительные дуги окружности"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R95dOnasTRjObW4dpVmeTEV>
Class: <http://ontomathpro.org/ontomathedu#%D0%97%D0%B0%D0%B4%D0%B0%D1%87%D0%B0%D0%9F%D0%B0%D1%82%D0%B5%D0%BD%D0%BE%D1%82%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-d>,
ome:eduRefEn <https://www.combster.tv/t/2603601-snelliuspothenot-problem?utm_source=spectroom_web&utm_medium=banner&utm_campaign=cross_promo>,
ome:eduRefRus <http://kvant.mccme.ru/1973/04/zadacha_potenota.htm>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Snellius%E2%80%93Pothenot_problem>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Задача_Потенота>,
rdfs:label "Snellius-Pothenot problem"@en,
rdfs:label "Задача Потенота"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R8wsY1fo0HCMeiPnc7zn2jz>
Class: <http://ontomathpro.org/ontomathedu#%D0%9C%D0%B5%D0%B4%D0%B8%D0%B0%D0%BD%D0%B0%D0%A7%D0%B5%D1%82%D1%8B%D1%80%D0%B5%D1%85%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-d>,
rdfs:label "Медиана четырехугольника"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RUzpxNp839fxHGuAAR9nNX>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#R7PtKKMhPd84j6pTWKoSibz>
Class: <http://ontomathpro.org/ontomathedu#%D0%9E%D0%B1%D1%80%D0%B0%D1%82%D0%BD%D0%B0%D1%8F%D0%A2%D0%B5%D0%BE%D1%80%D0%B5%D0%BC%D0%B0>
Annotations:
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Converse_theorem>,
rdfs:label "Converse theorem"@en,
rdfs:label "Обратная теорема"@ru
SubClassOf:
ome:R89TP0NZUTcNR3uXMvLAs3m
Class: <http://ontomathpro.org/ontomathedu#%D0%9E%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%BD%D0%B0%D1%8F%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D1%8C>
Annotations:
ome:eduRefEn <https://www.mathsisfun.com/definitions/circumscribe.html>,
rdfs:label "Circumscribed circle"@en,
rdfs:label "Circunferencia circunscrita"@es,
rdfs:label "Камаучы әйләнә"@tt,
rdfs:label "Описанная окружность"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RQ7LKQ7HoanUKcnirYtQjJ>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RCGUa8X4QJbqziC3Uf46oHj>
Class: <http://ontomathpro.org/ontomathedu#%D0%9E%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%91%D0%B8%D1%81%D1%81%D0%B5%D0%BA%D1%82%D1%80%D0%B8%D1%81%D1%8B%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-3>,
rdfs:label "Base of an angle bisector of a triangle"@en,
rdfs:label "Основание биссектрисы треугольника"@ru,
rdfs:label "Өчпочмакның биссектрисасының нигезе"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCzUCLrvHJPhhhsWvrVsD6G>,
ome:isPartOf some <http://ontomathpro.org/ontomathedu#R9sEvuLmf8QJywE9cmX19vw>
Class: <http://ontomathpro.org/ontomathedu#%D0%9F%D0%B0%D1%80%D0%B0%D0%BB%D0%BB%D0%B5%D0%BB%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%92%D0%B0%D1%80%D0%B8%D0%BD%D1%8C%D0%BE%D0%BD%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8-p>,
rdfs:label "Varignon parallelogram in a quadrilateral"@en,
rdfs:label "Вариньон параллелограммы дүртпочмакта"@tt,
rdfs:label "Параллелограмм Вариньона в четырехугольнике"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RBvwO1vhsZLTdl6QAjZMPbI>,
ome:hasArgument exactly 1 <http://ontomathpro.org/ontomathedu#%D0%9F%D0%B0%D1%80%D0%B0%D0%BB%D0%BB%D0%B5%D0%BB%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC1>,
ome:hasArgument exactly 1 <http://ontomathpro.org/ontomathedu#R7PtKKMhPd84j6pTWKoSibz>
Class: <http://ontomathpro.org/ontomathedu#%D0%9F%D0%B0%D1%80%D0%B0%D0%BB%D0%BB%D0%B5%D0%BB%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC1>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8-p>,
ome:eduRefRus <https://mathvox.ru/geometria/mnogougolniki/glava-4-parallelogramm-i-ego-svoistva/parallelogramm-varinona-teorema-varinona/>,
ome:hasPrerequisite "Четырехугольник"^^xsd:string,
rdfs:label "Paralelogramo de Varignon"@es,
rdfs:label "Varignon parallelogram"@en,
rdfs:label "Вариньон параллелограммы"@tt,
rdfs:label "Параллелограмм Вариньона"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R9RlIeAHdKBcgCvNHSQkvTm>
Class: <http://ontomathpro.org/ontomathedu#%D0%A0%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%9C%D0%BD%D0%BE%D0%B3%D0%BE%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
rdfs:label "Equal sides of a polygon"@en,
rdfs:label "Равные стороны многоугольника"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RSYqpglWWc9usay8KburSF>
Class: <http://ontomathpro.org/ontomathedu#%D0%A0%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%9C%D0%BD%D0%BE%D0%B3%D0%BE%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%BE%D0%B2>
Annotations:
rdfs:label "Equal sides of polygons"@en,
rdfs:label "Равные стороны многоугольников"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RSYqpglWWc9usay8KburSF>
Class: <http://ontomathpro.org/ontomathedu#%D0%A0%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%BE%D0%B2>
Annotations:
rdfs:label "Equal sides of triangles"@en,
rdfs:label "Равные стороны треугольников"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#%D0%A0%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%9C%D0%BD%D0%BE%D0%B3%D0%BE%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%BE%D0%B2>
Class: <http://ontomathpro.org/ontomathedu#%D0%A1%D0%B2%D0%BE%D0%B9%D1%81%D1%82%D0%B2%D0%BE%D0%9E%D1%82%D1%80%D0%B5%D0%B7%D0%BA%D0%BE%D0%B2%D0%9A%D0%B0%D1%81%D0%B0%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D1%85%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8%2C%D0%9F%D1%80%D0%BE%D0%B2%D0%B5%D0%B4%D0%B5%D0%BD%D0%BD%D1%8B%D1%85%D0%98%D0%B7%D0%9E%D0%B4%D0%BD%D0%BE%D0%B9%D0%A2%D0%BE%D1%87%D0%BA%D0%B8>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:eduRefRus <https://www.yaklass.ru/p/geometria/8-klass/okruzhnost-9230/kasatelnaia-k-okruzhnosti-9242/re-ca89ade5-1388-4df8-af6d-be4437358f63>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Касательная_прямая#Касательная_к_окружности>,
rdfs:label "Свойство отрезков касательных окружности, проведенных из одной точки"@ru
SubClassOf:
ome:RBYGETfpLo8m1a5AkR1kmW3,
<http://ontomathpro.org/ontomathedu#R9zpDpiKv1ZxU81P5JxMjpg>
Class: <http://ontomathpro.org/ontomathedu#%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B0%D1%8F%D0%94%D0%B2%D1%83%D1%85%D0%9F%D1%80%D1%8F%D0%BC%D1%8B%D1%85>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-3>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Секущая_прямая#Секущая_двух_прямых>,
rdfs:label "Secant of two lines"@en,
rdfs:label "Секущая двух прямых"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B0%D1%8F>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RCIHBUBNUyiCtyhV0mW4RSH>
Class: <http://ontomathpro.org/ontomathedu#%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B0%D1%8F%D0%9A%D0%9A%D1%80%D0%B8%D0%B2%D0%BE%D0%B9>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-4>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Secant_line#Curves>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Секущая_прямая#Секущая_к_кривой>,
rdfs:label "Recta secante de una curva"@es,
rdfs:label "Secant to a curve"@en,
rdfs:label "Секущая к кривой"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B0%D1%8F>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RBEXP85H7rF8NK9orVbZ84E>
Class: <http://ontomathpro.org/ontomathedu#%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B0%D1%8F>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-4>,
ome:eduRefEn <https://www.mathsisfun.com/geometry/tangent-secant-lines.html>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Secant_line>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Секущая_прямая>,
rdfs:label "Recta secante"@es,
rdfs:label "Secant line"@en,
rdfs:label "Секущая прямая"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCIHBUBNUyiCtyhV0mW4RSH>
Class: <http://ontomathpro.org/ontomathedu#%D0%A2%D0%B5%D0%BE%D1%80%D0%B5%D0%BC%D0%B0%D0%9E%D0%9C%D0%B5%D1%80%D0%B5%D0%A3%D0%B3%D0%BB%D0%B0%D0%9C%D0%B5%D0%B6%D0%B4%D1%83%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B8%D0%BC%D0%B8%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:eduRefRus <https://mathvox.ru/geometria/okrujnosti-i-ih-svoistva/glava-7-okrujnost-i-ugli/ugol-mejdu-sekuschimi/>,
rdfs:label "Теорема об угле между секущими окружности"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R8WoJS1V9btgWyxcLMZjMHi>
Class: <http://ontomathpro.org/ontomathedu#%D0%A2%D0%B5%D0%BE%D1%80%D0%B5%D0%BC%D0%B0%D0%9E%D0%B1%D0%A3%D0%B3%D0%BB%D0%B5%D0%9C%D0%B5%D0%B6%D0%B4%D1%83%D0%9A%D0%B0%D1%81%D0%B0%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%D0%B9%D0%98%D0%A5%D0%BE%D1%80%D0%B4%D0%BE%D0%B9>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:eduRefRus <https://mathvox.ru/geometria/okrujnosti-i-ih-svoistva/glava-7-okrujnost-i-ugli/ugol-mejdu-kasatelnoi-i-hordoi/>,
rdfs:label "Теорема об угле между касательной и хордой"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R8WoJS1V9btgWyxcLMZjMHi>
Class: <http://ontomathpro.org/ontomathedu#%D0%A2%D0%BE%D1%87%D0%BA%D0%B0%D0%9B%D0%B5%D0%B6%D0%B8%D1%82%D0%92%D0%BD%D1%83%D1%82%D1%80%D0%B8%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8>
Annotations:
rdfs:label "Point lies inside a circle"@en,
rdfs:label "Нокта әйләнә әчендә ята"@tt,
rdfs:label "Точка лежит внутри окружности"@ru
SubClassOf:
ome:RDFH6PcwRBqOAcCG4qckl8d
Class: <http://ontomathpro.org/ontomathedu#%D0%A2%D0%BE%D1%87%D0%BA%D0%B0%D0%9F%D1%80%D0%B8%D0%BD%D0%B0%D0%B4%D0%BB%D0%B5%D0%B6%D0%B8%D1%82%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8>
Annotations:
rdfs:label "Нокта әйләнәдә ята"@tt,
rdfs:label "Точка принадлежит окружности"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RB0VqNNOSWAaEcyKZpkvVSp>
Class: <http://ontomathpro.org/ontomathedu#%D0%A3%D0%B3%D0%BE%D0%BB%D0%9C%D0%B5%D0%B6%D0%B4%D1%83%D0%94%D0%B8%D0%B0%D0%B3%D0%BE%D0%BD%D0%B0%D0%BB%D1%8F%D0%BC%D0%B8%D0%A7%D0%B5%D1%82%D1%8B%D1%80%D0%B5%D1%85%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
rdfs:label "Угол между диагоналями четырехугольника"@en
SubClassOf:
<http://ontomathpro.org/ontomathedu#R8XGUyW0miz4jIu2ExNXvrd>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#R5MbrSEH1tuI1g6DSUfifA>
Class: <http://ontomathpro.org/ontomathedu#%D0%A3%D0%B3%D0%BE%D0%BB%D0%9C%D0%B5%D0%B6%D0%B4%D1%83%D0%9A%D0%B0%D1%81%D0%B0%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%D0%B9%D0%98%D0%A5%D0%BE%D1%80%D0%B4%D0%BE%D0%B9>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-4>,
ome:eduRefEn <https://www.mathwarehouse.com/geometry/circle/angle-tangent-and-chord.php>,
ome:eduRefRus <https://mathvox.ru/geometria/okrujnosti-i-ih-svoistva/glava-7-okrujnost-i-ugli/ugol-mejdu-kasatelnoi-i-hordoi/>,
rdfs:label "Angle between a tangent and a chord"@en,
rdfs:label "Угол между касательной и хордой"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCvDnMiepiQFnJKjf4rBcA7>,
ome:ontologicallyDependsOn some ome:RCHowFOb18avwSKk4NM5Ur7,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RDuFqn1GJlQaZGwUVjlMpIp>
Class: <http://ontomathpro.org/ontomathedu#%D0%A3%D0%B3%D0%BE%D0%BB%D0%9C%D0%B5%D0%B6%D0%B4%D1%83%D0%A1%D0%B5%D0%BA%D1%83%D1%89%D0%B8%D0%BC%D0%B8>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-4>,
ome:eduRefEn <https://www.mathsisfun.com/geometry/circle-intersect-secants-angle.html>,
ome:eduRefRus <https://mathvox.ru/geometria/okrujnosti-i-ih-svoistva/glava-7-okrujnost-i-ugli/ugol-mejdu-sekuschimi/>,
rdfs:label "Angle between secants"@en,
rdfs:label "Угол между секущими"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCvDnMiepiQFnJKjf4rBcA7>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RCpIMYtRye7b8w6whoOH1Mg>
Class: <http://ontomathpro.org/ontomathedu#%D0%A3%D0%B3%D0%BE%D0%BB%D0%9C%D0%B5%D0%B6%D0%B4%D1%83%D0%A5%D0%BE%D1%80%D0%B4%D0%B0%D0%BC%D0%B8>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-4>,
ome:eduRefEn <https://www.mathwarehouse.com/geometry/circle/angles-of-intersecting-chords-theorem.php>,
ome:eduRefRus <https://mathvox.ru/geometria/okrujnosti-i-ih-svoistva/glava-7-okrujnost-i-ugli/ugol-mejdu-hordami/>,
rdfs:label "Angle between chords"@en,
rdfs:label "Угол между хордами"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCvDnMiepiQFnJKjf4rBcA7>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RDuFqn1GJlQaZGwUVjlMpIp>
Class: <http://ontomathpro.org/ontomathedu#%D0%A6%D0%B5%D0%BD%D1%82%D1%80%D0%92%D0%BD%D0%B5%D0%B2%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%BD%D0%BE%D0%B9%D0%9E%D0%BA%D1%80%D1%83%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8-p>,
rdfs:label "Centro de una circunferencia exinscrita en un triángulo"@es,
rdfs:label "Центр вневписанной окружности треугольника"@ru,
rdfs:label "Өчпочмакка камалмаган әйләнәнең үзәге"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDeZTnXKfLt1VnYlmxIODEn>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#R84fs2WCfMPAhVmXSHQCWex>
Class: <http://ontomathpro.org/ontomathedu#%D0%BE%D1%80%D1%82%D0%BE>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8-p>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Ортоцентр>,
rdfs:label "Orthocenter of a triangle"@en,
rdfs:label "Ortocentro de un triángulo"@es,
rdfs:label "Ортоцентр треугольника"@ru,
rdfs:label "Өчпочмак ортцентры"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDeZTnXKfLt1VnYlmxIODEn>
Class: <http://ontomathpro.org/ontomathedu#%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%92%D1%8B%D1%81%D0%BE%D1%82%D1%8B%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-3>,
ome:eduRefRus <https://mathvox.ru/geometria/treugolniki/treugolniki-glava-9/visota-treugolnika-osnovanie-visoti-ortocentr-treugolnika/>,
ome:hasPrerequisite "Высота треугольника"^^xsd:string,
rdfs:label "Base of an altitude of a triangle"@en,
rdfs:label "Основание высоты треугольника"@ru,
rdfs:label "Өчпочмакның биеклегенең нигезе"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCzUCLrvHJPhhhsWvrVsD6G>,
ome:isPartOf some <http://ontomathpro.org/ontomathedu#RBelCmpplDk7TIRhxd4FwIb>
Class: <http://ontomathpro.org/ontomathedu#%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%9C%D0%B5%D0%B4%D0%B8%D0%B0%D0%BD%D1%8B%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-3>,
ome:eduRefRus <https://mathvox.ru/geometria/treugolniki/treugolniki-glava-10/mediana-treugolnika/>,
ome:hasPrerequisite "Медиана треугольника"^^xsd:string,
rdfs:label "Base of a median"@en,
rdfs:label "Основание медианы треугольника"@ru,
rdfs:label "Өчпочмакның медианасының нигезе"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCzUCLrvHJPhhhsWvrVsD6G>,
ome:isPartOf some <http://ontomathpro.org/ontomathedu#Rs2A4v0rAErtSQ0t1YMgPR>
Class: <http://ontomathpro.org/ontomathedu#%D1%80%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%A2%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
rdfs:label "Equal sides of a triangle"@en,
rdfs:label "Равные стороны треугольника"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#%D0%A0%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%9C%D0%BD%D0%BE%D0%B3%D0%BE%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Class: <http://ontomathpro.org/ontomathedu#%D1%80%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%A7%D0%B5%D1%82%D1%8B%D1%80%D0%B5%D1%85%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Annotations:
rdfs:label "Равные стороны четырехугольника"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#%D0%A0%D0%B0%D0%B2%D0%BD%D1%8B%D0%B5%D0%A1%D1%82%D0%BE%D1%80%D0%BE%D0%BD%D1%8B%D0%9C%D0%BD%D0%BE%D0%B3%D0%BE%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0>
Class: <http://ontomathpro.org/ontomathedu#%D1%82%D0%BE%D1%87%D0%BA%D0%B0%D0%A2%D0%BE%D1%80>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-9-p>,
rdfs:label "Punto de Torricelli"@es,
rdfs:label "Torricelli point"@en,
rdfs:label "Торричелли ноктасы"@tt,
rdfs:label "Точка Торричелли"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDeZTnXKfLt1VnYlmxIODEn>
Class: <http://ontomathpro.org/ontomathedu#R05mrTcQVjnCS6FBPJTNRj>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-d>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Complete_quadrangle>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Полный_четырёхугольник>,
rdfs:label "Complete quadrangle"@en,
rdfs:label "Cuadrángulo completo"@es,
rdfs:label "Дүртпочмак"@tt,
rdfs:label "Четырехвершинник"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RC9eOh5hUZXhq9kvorYalIK>
Class: <http://ontomathpro.org/ontomathedu#R0DtJx4r3IBv7azsbWRnqn>
Annotations:
rdfs:label "Bounded part of a Plane"@en,
rdfs:label "Parte del Plano imitada"@es,
rdfs:label "Ограниченная часть плоскости"@ru,
rdfs:label "Яссылыкның чикләнгән өлеше"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RkocUWOibClGkI5ExPuBwl>
Class: <http://ontomathpro.org/ontomathedu#R0F9ulqTaIAk9KWDer8Hwx>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-2>,
rdfs:label "Side of an angle"@en,
rdfs:label "Почмак ягы"@tt,
rdfs:label "Сторона угла"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R7aAuXFicP36oAneLIH6yUL>,
ome:isPartOf some <http://ontomathpro.org/ontomathedu#R9lMyAYbMeEYN0OdD7cbwZ6>
Class: <http://ontomathpro.org/ontomathedu#R0KmfG5mzxe2CFK26GpQVY>
Annotations:
ome:eduRefEn <https://www.mathsisfun.com/geometry/construct-linesegcopy.html>,
rdfs:label "Problem of copying a segment"@en,
rdfs:label "Бирелгән кисемтәгә циркуль һәм линейка белән тигез кисемтә төзү турында мәсьәлә"@tt,
rdfs:label "Задача о построении циркулем и линейкой отрезка, равного данному"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R9mieclCnRIYZIZee2jWFln>
Class: <http://ontomathpro.org/ontomathedu#R0PIBDxXBdbHYY4ztFreWJ>
Annotations:
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Пропорциональные_отрезки>,
rdfs:label "Proportional segments"@en,
rdfs:label "Пропорциональ кисемтәләр"@tt,
rdfs:label "Пропорциональные отрезки"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R9174ktYnTo2OQkpztMTp4R>
Class: <http://ontomathpro.org/ontomathedu#R19E09otwGjwr901G40fJX>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-3>,
rdfs:label "Theorem about area of a quadrilateral for given diagonals and angle between them"@en,
rdfs:label "Дүртпочмак мәйданы турында теорема (диагональләре һәм диагональ арасындагы почмак буенча)"@tt,
rdfs:label "Теорема о площади четырехугольника через диагонали и угол между ними"@ru
SubClassOf:
ome:RieuRqeMdYuoXFAdL5UkrV,
<http://ontomathpro.org/ontomathedu#RDuepUZmk8MDDfFFm6gYK0h>
Class: <http://ontomathpro.org/ontomathedu#R1iaofJAvCeE4fS6avsl98>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-9-p>,
ome:eduRefRus <https://mathvox.ru/geometria/treugolniki/glava-16/teorema-o-raspolojenii-ortocentra-tochki-peresecheniya-median-i-centra-opisannoi-okrujnosti-v-treugolnike/>,
rdfs:label "Theorem about Euler's line"@en,
rdfs:label "Теорема о прямой Эйлера"@ru,
rdfs:label "Эйлер турысы турында теорема"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#R8EG3juvpyWMRMbIyCGDDXr>,
<http://ontomathpro.org/ontomathedu#RCBJC9qSOBHoNp5IuERwYnb>
Class: <http://ontomathpro.org/ontomathedu#R1lvqaZTspKzOcC7tUsMef>
Annotations:
rdfs:label "Extremum problem of Plane geometry"@en,
rdfs:label "Планиметриянең экстремаль мәсьәләсе"@tt,
rdfs:label "Экстремальная задача планиметрии"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#R7gNGq0xWAl1i30F7g9WBhj>
Class: <http://ontomathpro.org/ontomathedu#R1n4oVDJe9nlPDz4mM78FE>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:eduRefRus <https://www.yaklass.ru/p/geometria/7-klass/treugolniki-9112/mediany-bissektrisy-i-vysoty-treugolnika-9481/re-56c524c8-9727-48db-9926-95988d203d40>,
rdfs:label "Theorem about a triangle medians intersection"@en,
rdfs:label "Теорема о пересечении медиан треугольника"@ru,
rdfs:label "Өчпочмак медианалары кисешүе турындагы теорема"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCRCkFiOaBxpJSxSpVfcE0Y>
Class: <http://ontomathpro.org/ontomathedu#R1xxXqDW4jPTpje41GmVzR>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-9>,
rdfs:label "Theorem about areas ratio of two similar triangles"@en,
rdfs:label "Ике охшаш өчпочмакларның мәйданнары чагыштырмасы турында теорема"@tt,
rdfs:label "Теорема об отношении площадей двух подобных треугольников"@ru
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDBSd1i2OpVMXnuSpgbsZsc>
Class: <http://ontomathpro.org/ontomathedu#R27HfKgEMEOXvEAusffzAc>
Annotations:
rdfs:label "Arithmetic average of several segments in a trapezoid"@en,
rdfs:label "Среднее арифметическое нескольких отрезков в трапеции"@ru,
rdfs:label "Трапециядәге берничә кисемтәләрнең арифметик уртасы"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RCM4Cz0cq2DSkzgNBkslHrp>
Class: <http://ontomathpro.org/ontomathedu#R387XTiHho7MRpcyvssV3d>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-9-p>,
ome:eduRefEn <https://www.mathsisfun.com/algebra/asymptote.html>,
rdfs:label "Asymptote of a hyperbola"@en,
rdfs:label "Asíntota de una hipérbola"@es,
rdfs:label "Асимптота гиперболы"@ru,
rdfs:label "Гипербола асимптотасы"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RIXVtxxDh27RtDXbX8Gusj>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#Rzr7SACTSKWUEbp5G1E2Bz>
Class: <http://ontomathpro.org/ontomathedu#R3BX6xrZNpBRKKqC9wtLd2>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-9-p>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Medial_triangle>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Серединный_треугольник>,
rdfs:label "Medial triangle"@en,
rdfs:label "Triángulo medial"@es,
rdfs:label "Серединный треугольник"@ru,
rdfs:label "Урта өчпочмак"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDE5zanRvaa9BRn3cYniCkv>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#RDE5zanRvaa9BRn3cYniCkv>
Class: <http://ontomathpro.org/ontomathedu#R3xQjysSEnMRr4eF1n8Hkd>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:eduRefRus <https://www.yaklass.ru/p/geometria/7-klass/sootnoshenie-mezhdu-storonami-i-uglami-treugolnika-9155/postroenie-treugolnikov-po-trem-elementam-12420/re-c4d19cfc-02e9-45ed-a6bd-1921b7bbfd92>,
rdfs:label "Problem of constructing a triangle given two angles and the included side"@en,
rdfs:label "Задача о построении циркулем и линейкой треугольника по стороне и двум прилежащим к ней углам"@ru,
rdfs:label "Өчпочмакны як һәм шул якка таянган ике почмак буенча циркуль һәм линейка белән төзү турында мәсьәлә"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDy3jEWvGMeFm9kY4f26y4t>
Class: <http://ontomathpro.org/ontomathedu#R4RvX6LBbYRtlaUNaZszrs>
Annotations:
rdfs:label "Theorem on the sum of acute angles of a right triangle"@en,
rdfs:label "Теорема о сумме острых углов прямоугольного треугольника"@ru,
rdfs:label "Турыпочмаклы өчпочмакның кысынкы почмаклар суммасы турында теорема"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RBv5uIS9bs0OpdL4jfSvxJz>,
<http://ontomathpro.org/ontomathedu#RC7i4CtN5LPgoVLHTQr93ON>
Class: <http://ontomathpro.org/ontomathedu#R4hgq3gnttQLTVrisvTd5s>
Annotations:
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Parabola#Tangent_bisection_property>,
rdfs:label "Recta tangente a una parábola"@es,
rdfs:label "Tangent to a parabola"@en,
rdfs:label "Касательная к параболе"@ru,
rdfs:label "Параболага орынма"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDrzWpKMss8POQiZwjH5iFo>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#R8y8kZsv6uJcnqlXkOv1nhR>
Class: <http://ontomathpro.org/ontomathedu#R4lt1iQyk5aE9tB0H4xxio>
Annotations:
ome:eduRefEn <https://www.mathsisfun.com/geometry/construct-segment3.html>,
rdfs:label "Problem of dividing segment into n equal parts"@en,
rdfs:label "Задача о делении циркулем и линейкой отрезка на n частей"@ru,
rdfs:label "Кисемтәне n-өлешкә циркуль һәм линейка белән бүлү турында мәсьәлә"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#R9mieclCnRIYZIZee2jWFln>
Class: <http://ontomathpro.org/ontomathedu#R4tGMus02r5smG1QniW4h>
Annotations:
rdfs:label "Metric property of a geometric figure"@en,
rdfs:label "Геометрик фигураның метрик үзлеге"@tt,
rdfs:label "Метрическое свойство геометрической фигуры"@ru
SubClassOf:
ome:R9RSQEnKE4bIaKGXnAFvaQb
Class: <http://ontomathpro.org/ontomathedu#R5MbrSEH1tuI1g6DSUfifA>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-2>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Quadrilateral#Diagonals>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Четырёхугольник#Свойства_диагоналей_некоторых_четырёхугольников>,
rdfs:label "Diagonal de un rectángulo"@es,
rdfs:label "Diagonal of a rectangle"@en,
rdfs:label "Диагональ четырехугольника"@ru,
rdfs:label "Дүртпочмак диагонале"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#R8yeUGPqcyhDJIdO6v93apk>,
<http://ontomathpro.org/ontomathedu#RUzpxNp839fxHGuAAR9nNX>,
ome:ontologicallyDependsOn some <http://ontomathpro.org/ontomathedu#R7PtKKMhPd84j6pTWKoSibz>
Class: <http://ontomathpro.org/ontomathedu#R5dNqNuwvw5vf3q30c6VnR>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-7>,
ome:eduRefRus <https://www.yaklass.ru/p/geometria/7-klass/sootnoshenie-mezhdu-storonami-i-uglami-treugolnika-9155/postroenie-treugolnikov-po-trem-elementam-12420/re-c4d19cfc-02e9-45ed-a6bd-1921b7bbfd92>,
rdfs:label "Problem of costructing a triangle given three sides"@en,
rdfs:label "Задача о построении циркулем и линейкой треугольника по трем сторонам"@ru,
rdfs:label "Өчпочмакны өч як буенча циркуль һәм линейка белән төзү турында мәсьәлә"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RDy3jEWvGMeFm9kY4f26y4t>
Class: <http://ontomathpro.org/ontomathedu#R6FHh0ItrVLzyuz1npFs47>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#grade-ru-8-p>,
rdfs:label "Division of a segment by a point internally"@en,
rdfs:label "Деление отрезка точкой внутренним образом"@ru,
rdfs:label "Турыны нокта белән эчке рәвештә бүлү"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#R9aIfMDWOwoDsErXgpWawC>
Class: <http://ontomathpro.org/ontomathedu#R6eAnQjkmcl1TqWESl7mgz>
Annotations:
ome:eduRefEn <https://www.mathsisfun.com/definitions/metre-meter.html>,
<http://purl.org/dc/elements/1.1/source> <https://en.wikipedia.org/wiki/Metre>,
<http://purl.org/dc/elements/1.1/source> <https://ru.wikipedia.org/wiki/Метр>,
rdfs:label "Metre"@en,
rdfs:label "Metro"@es,
rdfs:label "Метр"@ru,
rdfs:label "Метр"@tt
SubClassOf:
<http://ontomathpro.org/ontomathedu#RQAkUqYKZwnavZaRCG0oPG>
Class: <http://ontomathpro.org/ontomathedu#R70WZDAPqykNKOBfiUxDTsi>
Annotations:
ome:belongsToEducationalLevel <http://ontomathpro.org/ontomathedu#stage-en-key-2>,