GroupsMath 0.5.0__tar.gz → 0.7.0__tar.gz
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.
- {groupsmath-0.5.0 → groupsmath-0.7.0}/GroupsMath.egg-info/PKG-INFO +29 -17
- {groupsmath-0.5.0 → groupsmath-0.7.0}/GroupsMath.egg-info/SOURCES.txt +3 -1
- {groupsmath-0.5.0 → groupsmath-0.7.0}/PKG-INFO +29 -17
- {groupsmath-0.5.0 → groupsmath-0.7.0}/README.md +27 -15
- {groupsmath-0.5.0 → groupsmath-0.7.0}/groupsmath/core.py +425 -20
- {groupsmath-0.5.0 → groupsmath-0.7.0}/groupsmath/matrixgroups.py +37 -15
- groupsmath-0.7.0/groupsmath/presentations.py +558 -0
- groupsmath-0.7.0/groupsmath/structure.py +120 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/pyproject.toml +4 -4
- {groupsmath-0.5.0 → groupsmath-0.7.0}/GroupsMath.egg-info/dependency_links.txt +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/GroupsMath.egg-info/requires.txt +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/GroupsMath.egg-info/top_level.txt +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/LICENSE +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/groupsmath/__init__.py +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/groupsmath/precooked.py +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/groupsmath/shortcuts.py +0 -0
- {groupsmath-0.5.0 → groupsmath-0.7.0}/setup.cfg +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: GroupsMath
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: The educational Python library for Group Theory
|
|
5
5
|
Author-email: Mario Sultan Romero <mariosultan.uem@gmail.com>
|
|
6
6
|
License: PolyForm Strict License 1.0.0.
|
|
7
7
|
Project-URL: Homepage, https://github.com/MarioSultan/GroupsMath
|
|
8
|
-
Project-URL: Documentation, https://
|
|
8
|
+
Project-URL: Documentation, https://groupsmath.readthedocs.io/en/latest/
|
|
9
9
|
Project-URL: Issues, https://github.com/MarioSultan/GroupsMath/issues
|
|
10
10
|
Keywords: math,mathematics,algebra,abstract-algebra,group-theory,finite-groups,sylow,quotient-groups,automorphisms,group,groups,group theory,finte groups,finite group theory,finite-group-theory
|
|
11
11
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
@@ -20,16 +20,29 @@ Requires-Dist: matplotlib>=3.0.0
|
|
|
20
20
|
Requires-Dist: numpy>=1.20.0
|
|
21
21
|
Dynamic: license-file
|
|
22
22
|
|
|
23
|
-
# GroupsMath – v0.
|
|
23
|
+
# GroupsMath – v0.7.0 – release candidate for v1.0.0
|
|
24
|
+
|
|
25
|
+
[](https://pypistats.org/packages/groupsmath)
|
|
26
|
+
[](https://pypi.org/project/groupsmath/)
|
|
27
|
+
[](https://pypi.org/project/groupsmath/)
|
|
28
|
+

|
|
29
|
+

|
|
30
|
+
<!--  -->
|
|
31
|
+
|
|
24
32
|
|
|
25
33
|

|
|
26
34
|
|
|
27
35
|
|
|
28
36
|
**GroupsMath** is a Python module for constructing, studying, and manipulating finite and infinite groups.
|
|
29
37
|
|
|
30
|
-
The project aims to provide a simple and intuitive interface for working with
|
|
38
|
+
The project aims to provide a **simple** and **intuitive** interface for working with groups and their algebraic properties.
|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
> Visit here the [GroupsMath official documentation](https://groupsmath.readthedocs.io/en/latest/).
|
|
43
|
+
|
|
44
|
+
> **⚠️ Notice:** Version v1.0.0 is nearing its official release.
|
|
31
45
|
|
|
32
|
-
> **Note:** GroupsMath is currently under active development. Its API is still evolving and may change before version `1.0.0`.
|
|
33
46
|
|
|
34
47
|
---
|
|
35
48
|
|
|
@@ -51,7 +64,7 @@ or visit https://github.com/MarioSultan/GroupsMath and download all the files.
|
|
|
51
64
|
|
|
52
65
|
---
|
|
53
66
|
|
|
54
|
-
##
|
|
67
|
+
## Quick start
|
|
55
68
|
|
|
56
69
|
### A program in GroupsMath
|
|
57
70
|
```python
|
|
@@ -102,14 +115,18 @@ GroupsMath is designed to provide tools for working with finite (and infinite) g
|
|
|
102
115
|
* Determination of the order of a group and its elements.
|
|
103
116
|
* Operation with group elements (multiplication, inverse, powers, ...)
|
|
104
117
|
* Computation of Cayley tables with `matplotlib.pyplot`.
|
|
105
|
-
* Detection of algebraic properties such as cyclicity and
|
|
118
|
+
* Detection of algebraic properties such as cyclicity, commutativity and solubility.
|
|
119
|
+
* Centralizers, conjugacy classes and conmutator.
|
|
106
120
|
* Computation and exploration of other structural properties of finite groups.
|
|
107
121
|
* Predefined group families in the library `groupsmath.precooked`, such as $C_n$, $S_n$, $A_n$, $D_n$, $V_4$, $Q_8$, ...
|
|
122
|
+
* Structure description. (*experimental feature*)
|
|
108
123
|
|
|
109
124
|
**SUBGROUPS:**
|
|
110
125
|
* Study of subgroups (order, cosets, normal subgroups, quotients, ...).
|
|
111
126
|
* Normal subgroups.
|
|
112
127
|
* Quotient groups $Q=G/H$.
|
|
128
|
+
* Conmutator and derived subgroups $G'$.
|
|
129
|
+
* Abelianization $G/G'$
|
|
113
130
|
|
|
114
131
|
**AUTOMORPHISMS:**
|
|
115
132
|
* Class `Automorphism` and automorphism functions.
|
|
@@ -125,6 +142,9 @@ GroupsMath is designed to provide tools for working with finite (and infinite) g
|
|
|
125
142
|
* Groups generated by matrices: $GL$, $SL$, $O$, $SO$, $U$, $SU$ and $Sp$.
|
|
126
143
|
* Matrix groups over finite fields $\mathbb{F}_p$, with $p$ prime.
|
|
127
144
|
|
|
145
|
+
**PRESENTED GROUPS**
|
|
146
|
+
* Presentation of groups, generators and class `PresentedGroup`. (*experimental feature*)
|
|
147
|
+
|
|
128
148
|
The available functionality will expand as the project develops.
|
|
129
149
|
|
|
130
150
|
---
|
|
@@ -132,25 +152,17 @@ The available functionality will expand as the project develops.
|
|
|
132
152
|
## Coming soon
|
|
133
153
|
|
|
134
154
|
The GroupsMath team is currently working on theese ideas:
|
|
135
|
-
* Presentation of groups, generators and class `PresentedGroup`.
|
|
136
155
|
* Free groups $F_n$ and free products.
|
|
137
156
|
* Optimization of actual features.
|
|
138
157
|
* Representation theory.
|
|
139
158
|
* and much more...
|
|
140
159
|
|
|
141
|
-
---
|
|
142
|
-
|
|
143
|
-
## Documentation
|
|
144
|
-
|
|
145
|
-
Detailed documentation is available in the [`docs`](https://github.com/MarioSultan/GroupsMath/tree/main/docs) directory of GitHub and it is developed alongside the library.
|
|
146
160
|
|
|
147
161
|
---
|
|
148
162
|
|
|
149
|
-
##
|
|
150
|
-
|
|
151
|
-
GroupsMath is currently under active development.
|
|
163
|
+
## Documentation
|
|
152
164
|
|
|
153
|
-
|
|
165
|
+
Detailed documentation is available in the [GroupsMath official documentation](https://groupsmath.readthedocs.io/en/latest/) and it is developed alongside the library.
|
|
154
166
|
|
|
155
167
|
---
|
|
156
168
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: GroupsMath
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: The educational Python library for Group Theory
|
|
5
5
|
Author-email: Mario Sultan Romero <mariosultan.uem@gmail.com>
|
|
6
6
|
License: PolyForm Strict License 1.0.0.
|
|
7
7
|
Project-URL: Homepage, https://github.com/MarioSultan/GroupsMath
|
|
8
|
-
Project-URL: Documentation, https://
|
|
8
|
+
Project-URL: Documentation, https://groupsmath.readthedocs.io/en/latest/
|
|
9
9
|
Project-URL: Issues, https://github.com/MarioSultan/GroupsMath/issues
|
|
10
10
|
Keywords: math,mathematics,algebra,abstract-algebra,group-theory,finite-groups,sylow,quotient-groups,automorphisms,group,groups,group theory,finte groups,finite group theory,finite-group-theory
|
|
11
11
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
@@ -20,16 +20,29 @@ Requires-Dist: matplotlib>=3.0.0
|
|
|
20
20
|
Requires-Dist: numpy>=1.20.0
|
|
21
21
|
Dynamic: license-file
|
|
22
22
|
|
|
23
|
-
# GroupsMath – v0.
|
|
23
|
+
# GroupsMath – v0.7.0 – release candidate for v1.0.0
|
|
24
|
+
|
|
25
|
+
[](https://pypistats.org/packages/groupsmath)
|
|
26
|
+
[](https://pypi.org/project/groupsmath/)
|
|
27
|
+
[](https://pypi.org/project/groupsmath/)
|
|
28
|
+

|
|
29
|
+

|
|
30
|
+
<!--  -->
|
|
31
|
+
|
|
24
32
|
|
|
25
33
|

|
|
26
34
|
|
|
27
35
|
|
|
28
36
|
**GroupsMath** is a Python module for constructing, studying, and manipulating finite and infinite groups.
|
|
29
37
|
|
|
30
|
-
The project aims to provide a simple and intuitive interface for working with
|
|
38
|
+
The project aims to provide a **simple** and **intuitive** interface for working with groups and their algebraic properties.
|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
> Visit here the [GroupsMath official documentation](https://groupsmath.readthedocs.io/en/latest/).
|
|
43
|
+
|
|
44
|
+
> **⚠️ Notice:** Version v1.0.0 is nearing its official release.
|
|
31
45
|
|
|
32
|
-
> **Note:** GroupsMath is currently under active development. Its API is still evolving and may change before version `1.0.0`.
|
|
33
46
|
|
|
34
47
|
---
|
|
35
48
|
|
|
@@ -51,7 +64,7 @@ or visit https://github.com/MarioSultan/GroupsMath and download all the files.
|
|
|
51
64
|
|
|
52
65
|
---
|
|
53
66
|
|
|
54
|
-
##
|
|
67
|
+
## Quick start
|
|
55
68
|
|
|
56
69
|
### A program in GroupsMath
|
|
57
70
|
```python
|
|
@@ -102,14 +115,18 @@ GroupsMath is designed to provide tools for working with finite (and infinite) g
|
|
|
102
115
|
* Determination of the order of a group and its elements.
|
|
103
116
|
* Operation with group elements (multiplication, inverse, powers, ...)
|
|
104
117
|
* Computation of Cayley tables with `matplotlib.pyplot`.
|
|
105
|
-
* Detection of algebraic properties such as cyclicity and
|
|
118
|
+
* Detection of algebraic properties such as cyclicity, commutativity and solubility.
|
|
119
|
+
* Centralizers, conjugacy classes and conmutator.
|
|
106
120
|
* Computation and exploration of other structural properties of finite groups.
|
|
107
121
|
* Predefined group families in the library `groupsmath.precooked`, such as $C_n$, $S_n$, $A_n$, $D_n$, $V_4$, $Q_8$, ...
|
|
122
|
+
* Structure description. (*experimental feature*)
|
|
108
123
|
|
|
109
124
|
**SUBGROUPS:**
|
|
110
125
|
* Study of subgroups (order, cosets, normal subgroups, quotients, ...).
|
|
111
126
|
* Normal subgroups.
|
|
112
127
|
* Quotient groups $Q=G/H$.
|
|
128
|
+
* Conmutator and derived subgroups $G'$.
|
|
129
|
+
* Abelianization $G/G'$
|
|
113
130
|
|
|
114
131
|
**AUTOMORPHISMS:**
|
|
115
132
|
* Class `Automorphism` and automorphism functions.
|
|
@@ -125,6 +142,9 @@ GroupsMath is designed to provide tools for working with finite (and infinite) g
|
|
|
125
142
|
* Groups generated by matrices: $GL$, $SL$, $O$, $SO$, $U$, $SU$ and $Sp$.
|
|
126
143
|
* Matrix groups over finite fields $\mathbb{F}_p$, with $p$ prime.
|
|
127
144
|
|
|
145
|
+
**PRESENTED GROUPS**
|
|
146
|
+
* Presentation of groups, generators and class `PresentedGroup`. (*experimental feature*)
|
|
147
|
+
|
|
128
148
|
The available functionality will expand as the project develops.
|
|
129
149
|
|
|
130
150
|
---
|
|
@@ -132,25 +152,17 @@ The available functionality will expand as the project develops.
|
|
|
132
152
|
## Coming soon
|
|
133
153
|
|
|
134
154
|
The GroupsMath team is currently working on theese ideas:
|
|
135
|
-
* Presentation of groups, generators and class `PresentedGroup`.
|
|
136
155
|
* Free groups $F_n$ and free products.
|
|
137
156
|
* Optimization of actual features.
|
|
138
157
|
* Representation theory.
|
|
139
158
|
* and much more...
|
|
140
159
|
|
|
141
|
-
---
|
|
142
|
-
|
|
143
|
-
## Documentation
|
|
144
|
-
|
|
145
|
-
Detailed documentation is available in the [`docs`](https://github.com/MarioSultan/GroupsMath/tree/main/docs) directory of GitHub and it is developed alongside the library.
|
|
146
160
|
|
|
147
161
|
---
|
|
148
162
|
|
|
149
|
-
##
|
|
150
|
-
|
|
151
|
-
GroupsMath is currently under active development.
|
|
163
|
+
## Documentation
|
|
152
164
|
|
|
153
|
-
|
|
165
|
+
Detailed documentation is available in the [GroupsMath official documentation](https://groupsmath.readthedocs.io/en/latest/) and it is developed alongside the library.
|
|
154
166
|
|
|
155
167
|
---
|
|
156
168
|
|
|
@@ -1,13 +1,26 @@
|
|
|
1
|
-
# GroupsMath – v0.
|
|
1
|
+
# GroupsMath – v0.7.0 – release candidate for v1.0.0
|
|
2
|
+
|
|
3
|
+
[](https://pypistats.org/packages/groupsmath)
|
|
4
|
+
[](https://pypi.org/project/groupsmath/)
|
|
5
|
+
[](https://pypi.org/project/groupsmath/)
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
<!--  -->
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|

|
|
4
12
|
|
|
5
13
|
|
|
6
14
|
**GroupsMath** is a Python module for constructing, studying, and manipulating finite and infinite groups.
|
|
7
15
|
|
|
8
|
-
The project aims to provide a simple and intuitive interface for working with
|
|
16
|
+
The project aims to provide a **simple** and **intuitive** interface for working with groups and their algebraic properties.
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+
> Visit here the [GroupsMath official documentation](https://groupsmath.readthedocs.io/en/latest/).
|
|
21
|
+
|
|
22
|
+
> **⚠️ Notice:** Version v1.0.0 is nearing its official release.
|
|
9
23
|
|
|
10
|
-
> **Note:** GroupsMath is currently under active development. Its API is still evolving and may change before version `1.0.0`.
|
|
11
24
|
|
|
12
25
|
---
|
|
13
26
|
|
|
@@ -29,7 +42,7 @@ or visit https://github.com/MarioSultan/GroupsMath and download all the files.
|
|
|
29
42
|
|
|
30
43
|
---
|
|
31
44
|
|
|
32
|
-
##
|
|
45
|
+
## Quick start
|
|
33
46
|
|
|
34
47
|
### A program in GroupsMath
|
|
35
48
|
```python
|
|
@@ -80,14 +93,18 @@ GroupsMath is designed to provide tools for working with finite (and infinite) g
|
|
|
80
93
|
* Determination of the order of a group and its elements.
|
|
81
94
|
* Operation with group elements (multiplication, inverse, powers, ...)
|
|
82
95
|
* Computation of Cayley tables with `matplotlib.pyplot`.
|
|
83
|
-
* Detection of algebraic properties such as cyclicity and
|
|
96
|
+
* Detection of algebraic properties such as cyclicity, commutativity and solubility.
|
|
97
|
+
* Centralizers, conjugacy classes and conmutator.
|
|
84
98
|
* Computation and exploration of other structural properties of finite groups.
|
|
85
99
|
* Predefined group families in the library `groupsmath.precooked`, such as $C_n$, $S_n$, $A_n$, $D_n$, $V_4$, $Q_8$, ...
|
|
100
|
+
* Structure description. (*experimental feature*)
|
|
86
101
|
|
|
87
102
|
**SUBGROUPS:**
|
|
88
103
|
* Study of subgroups (order, cosets, normal subgroups, quotients, ...).
|
|
89
104
|
* Normal subgroups.
|
|
90
105
|
* Quotient groups $Q=G/H$.
|
|
106
|
+
* Conmutator and derived subgroups $G'$.
|
|
107
|
+
* Abelianization $G/G'$
|
|
91
108
|
|
|
92
109
|
**AUTOMORPHISMS:**
|
|
93
110
|
* Class `Automorphism` and automorphism functions.
|
|
@@ -103,6 +120,9 @@ GroupsMath is designed to provide tools for working with finite (and infinite) g
|
|
|
103
120
|
* Groups generated by matrices: $GL$, $SL$, $O$, $SO$, $U$, $SU$ and $Sp$.
|
|
104
121
|
* Matrix groups over finite fields $\mathbb{F}_p$, with $p$ prime.
|
|
105
122
|
|
|
123
|
+
**PRESENTED GROUPS**
|
|
124
|
+
* Presentation of groups, generators and class `PresentedGroup`. (*experimental feature*)
|
|
125
|
+
|
|
106
126
|
The available functionality will expand as the project develops.
|
|
107
127
|
|
|
108
128
|
---
|
|
@@ -110,25 +130,17 @@ The available functionality will expand as the project develops.
|
|
|
110
130
|
## Coming soon
|
|
111
131
|
|
|
112
132
|
The GroupsMath team is currently working on theese ideas:
|
|
113
|
-
* Presentation of groups, generators and class `PresentedGroup`.
|
|
114
133
|
* Free groups $F_n$ and free products.
|
|
115
134
|
* Optimization of actual features.
|
|
116
135
|
* Representation theory.
|
|
117
136
|
* and much more...
|
|
118
137
|
|
|
119
|
-
---
|
|
120
|
-
|
|
121
|
-
## Documentation
|
|
122
|
-
|
|
123
|
-
Detailed documentation is available in the [`docs`](https://github.com/MarioSultan/GroupsMath/tree/main/docs) directory of GitHub and it is developed alongside the library.
|
|
124
138
|
|
|
125
139
|
---
|
|
126
140
|
|
|
127
|
-
##
|
|
128
|
-
|
|
129
|
-
GroupsMath is currently under active development.
|
|
141
|
+
## Documentation
|
|
130
142
|
|
|
131
|
-
|
|
143
|
+
Detailed documentation is available in the [GroupsMath official documentation](https://groupsmath.readthedocs.io/en/latest/) and it is developed alongside the library.
|
|
132
144
|
|
|
133
145
|
---
|
|
134
146
|
|