Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

""" 

Permutation species 

""" 

from __future__ import absolute_import 

#***************************************************************************** 

# Copyright (C) 2008 Mike Hansen <mhansen@gmail.com>, 

# 

# Distributed under the terms of the GNU General Public License (GPL) 

# 

# This code is distributed in the hope that it will be useful, 

# but WITHOUT ANY WARRANTY; without even the implied warranty of 

# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 

# General Public License for more details. 

# 

# The full text of the GPL is available at: 

# 

# http://www.gnu.org/licenses/ 

#***************************************************************************** 

from six.moves import range 

 

from .species import GenericCombinatorialSpecies 

from .structure import GenericSpeciesStructure 

from .generating_series import _integers_from 

from sage.structure.unique_representation import UniqueRepresentation 

from sage.rings.all import ZZ 

from sage.combinat.permutation import Permutation, Permutations 

from sage.combinat.species.misc import accept_size 

 

class PermutationSpeciesStructure(GenericSpeciesStructure): 

def canonical_label(self): 

""" 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: S = P.structures(["a", "b", "c"]) 

sage: [s.canonical_label() for s in S] 

[['a', 'b', 'c'], 

['b', 'a', 'c'], 

['b', 'a', 'c'], 

['b', 'c', 'a'], 

['b', 'c', 'a'], 

['b', 'a', 'c']] 

""" 

P = self.parent() 

return P._canonical_rep_from_partition(self.__class__, self._labels, Permutation(self._list).cycle_type()) 

 

def permutation_group_element(self): 

""" 

Returns self as a permutation group element. 

 

EXAMPLES:: 

 

sage: p = PermutationGroupElement((2,3,4)) 

sage: P = species.PermutationSpecies() 

sage: a = P.structures(["a", "b", "c", "d"]).random_element(); a 

['a', 'c', 'b', 'd'] 

sage: a.permutation_group_element() 

(2,3) 

""" 

return Permutation(self._list).to_permutation_group_element() 

 

def transport(self, perm): 

""" 

Returns the transport of this structure along the permutation 

perm. 

 

EXAMPLES:: 

 

sage: p = PermutationGroupElement((2,3,4)) 

sage: P = species.PermutationSpecies() 

sage: a = P.structures(["a", "b", "c", "d"]).random_element(); a 

['a', 'c', 'b', 'd'] 

sage: a.transport(p) 

['a', 'd', 'c', 'b'] 

""" 

p = self.permutation_group_element() 

p = perm*p*~perm 

return self.__class__(self.parent(), self._labels, p.domain()) 

 

def automorphism_group(self): 

""" 

Returns the group of permutations whose action on this structure 

leave it fixed. 

 

EXAMPLES:: 

 

sage: p = PermutationGroupElement((2,3,4)) 

sage: P = species.PermutationSpecies() 

sage: a = P.structures(["a", "b", "c", "d"]).random_element(); a 

['a', 'c', 'b', 'd'] 

sage: a.automorphism_group() 

Permutation Group with generators [(2,3), (1,4)] 

 

:: 

 

sage: [a.transport(perm) for perm in a.automorphism_group()] 

[['a', 'c', 'b', 'd'], 

['a', 'c', 'b', 'd'], 

['a', 'c', 'b', 'd'], 

['a', 'c', 'b', 'd']] 

""" 

from sage.groups.all import SymmetricGroup, PermutationGroup 

S = SymmetricGroup(len(self._labels)) 

p = self.permutation_group_element() 

return PermutationGroup(S.centralizer(p).gens()) 

 

 

class PermutationSpecies(GenericCombinatorialSpecies, UniqueRepresentation): 

@staticmethod 

@accept_size 

def __classcall__(cls, *args, **kwds): 

""" 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies(); P 

Permutation species 

""" 

return super(PermutationSpecies, cls).__classcall__(cls, *args, **kwds) 

 

def __init__(self, min=None, max=None, weight=None): 

""" 

Returns the species of permutations. 

 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: P.generating_series().coefficients(5) 

[1, 1, 1, 1, 1] 

sage: P.isotype_generating_series().coefficients(5) 

[1, 1, 2, 3, 5] 

 

sage: P = species.PermutationSpecies() 

sage: c = P.generating_series().coefficients(3) 

sage: P._check() 

True 

sage: P == loads(dumps(P)) 

True 

""" 

GenericCombinatorialSpecies.__init__(self, min=min, max=max, weight=weight) 

self._name = "Permutation species" 

 

_default_structure_class = PermutationSpeciesStructure 

 

def _structures(self, structure_class, labels): 

""" 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: P.structures([1,2,3]).list() 

[[1, 2, 3], [1, 3, 2], [2, 1, 3], [2, 3, 1], [3, 1, 2], [3, 2, 1]] 

""" 

if labels == []: 

yield structure_class(self, labels, []) 

else: 

for p in Permutations(len(labels)): 

yield structure_class(self, labels, list(p)) 

 

def _isotypes(self, structure_class, labels): 

""" 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: P.isotypes([1,2,3]).list() 

[[2, 3, 1], [2, 1, 3], [1, 2, 3]] 

""" 

from sage.combinat.partition import Partitions 

if labels == []: 

yield structure_class(self, labels, []) 

return 

 

for p in Partitions(len(labels)): 

yield self._canonical_rep_from_partition(structure_class, labels, p) 

 

 

def _canonical_rep_from_partition(self, structure_class, labels, p): 

""" 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: P._canonical_rep_from_partition(P._default_structure_class, ["a","b","c"], [2,1]) 

['b', 'a', 'c'] 

""" 

indices = list(range(1, len(labels) + 1)) 

breaks = [sum(p[:i]) for i in range(len(p)+1)] 

cycles = tuple(tuple(indices[breaks[i]:breaks[i+1]]) for i in range(len(p))) 

perm = list(Permutation(cycles)) 

return structure_class(self, labels, perm) 

 

 

def _gs_list(self, base_ring): 

r""" 

The generating series for the species of linear orders is 

`\frac{1}{1-x}`. 

 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: g = P.generating_series() 

sage: g.coefficients(10) 

[1, 1, 1, 1, 1, 1, 1, 1, 1, 1] 

""" 

return [base_ring(1)] 

 

 

def _itgs_iterator(self, base_ring): 

r""" 

The isomorphism type generating series is given by 

`\frac{1}{1-x}`. 

 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: g = P.isotype_generating_series() 

sage: g.coefficients(10) 

[1, 1, 2, 3, 5, 7, 11, 15, 22, 30] 

""" 

from sage.combinat.partitions import number_of_partitions 

for n in _integers_from(0): 

yield base_ring(number_of_partitions(n)) 

 

 

def _cis(self, series_ring, base_ring): 

r""" 

The cycle index series for the species of permutations is given by 

 

.. MATH:: 

 

\prod{n=1}^\infty \frac{1}{1-x_n}. 

 

 

 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: g = P.cycle_index_series() 

sage: g.coefficients(5) 

[p[], 

p[1], 

p[1, 1] + p[2], 

p[1, 1, 1] + p[2, 1] + p[3], 

p[1, 1, 1, 1] + p[2, 1, 1] + p[2, 2] + p[3, 1] + p[4]] 

""" 

CIS = series_ring 

return CIS.product_generator( CIS(self._cis_gen(base_ring, i)) for i in _integers_from(ZZ(1)) ) 

 

def _cis_gen(self, base_ring, n): 

""" 

EXAMPLES:: 

 

sage: P = species.PermutationSpecies() 

sage: g = P._cis_gen(QQ, 2) 

sage: [next(g) for i in range(10)] 

[p[], 0, p[2], 0, p[2, 2], 0, p[2, 2, 2], 0, p[2, 2, 2, 2], 0] 

""" 

from sage.combinat.sf.sf import SymmetricFunctions 

p = SymmetricFunctions(base_ring).power() 

 

pn = p([n]) 

 

n = n - 1 

yield p(1) 

 

for k in _integers_from(1): 

for i in range(n): 

yield base_ring(0) 

yield pn**k 

 

#Backward compatibility 

PermutationSpecies_class = PermutationSpecies