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

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

r""" 

Ribbon Shaped Tableaux 

""" 

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

# Copyright (C) 2007 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 sage.combinat.skew_tableau import SkewTableau, SkewTableaux, StandardSkewTableaux 

from sage.combinat.tableau import Tableaux 

from sage.combinat.permutation import descents_composition_first, descents_composition_list, descents_composition_last 

from sage.rings.integer import Integer 

from sage.categories.infinite_enumerated_sets import InfiniteEnumeratedSets 

from sage.categories.finite_enumerated_sets import FiniteEnumeratedSets 

from sage.categories.sets_cat import Sets 

 

 

class RibbonShapedTableau(SkewTableau): 

r""" 

A ribbon shaped tableau. 

 

For the purposes of this class, a ribbon shaped tableau is a skew 

tableau whose shape is a skew partition which: 

 

- has at least one cell in row `1`; 

 

- has at least one cell in column `1`; 

 

- has exactly one cell in each of `q` consecutive diagonals, for 

some nonnegative integer `q`. 

 

A ribbon is given by a list of the rows from top to bottom. 

 

EXAMPLES:: 

 

sage: x = RibbonShapedTableau([[None, None, None, 2, 3], [None, 1, 4, 5], [3, 2]]); x 

[[None, None, None, 2, 3], [None, 1, 4, 5], [3, 2]] 

sage: x.pp() 

. . . 2 3 

. 1 4 5 

3 2 

sage: x.shape() 

[5, 4, 2] / [3, 1] 

 

The entries labeled by ``None`` correspond to the inner partition. 

Using ``None`` is optional; the entries will be shifted accordingly. :: 

 

sage: x = RibbonShapedTableau([[2,3],[1,4,5],[3,2]]); x.pp() 

. . . 2 3 

. 1 4 5 

3 2 

 

TESTS:: 

 

sage: r = RibbonShapedTableau([[1], [2,3], [4, 5, 6]]) 

sage: r.to_permutation() 

[4, 5, 6, 2, 3, 1] 

 

sage: RibbonShapedTableau([[1,2],[3,4]]).evaluation() 

[1, 1, 1, 1] 

""" 

@staticmethod 

def __classcall_private__(cls, r): 

r""" 

Return a ribbon shaped tableau object. 

 

EXAMPLES:: 

 

sage: RibbonShapedTableau([[2,3],[1,4,5]]) 

[[None, None, 2, 3], [1, 4, 5]] 

""" 

try: 

r = map(tuple, r) 

except TypeError: 

raise TypeError("r must be a list of positive integers") 

if not r: 

return StandardRibbonShapedTableaux()(r) 

if all(all(j is None or (isinstance(j, (int, Integer)) and j>0) for j in i) for i in r): 

return StandardRibbonShapedTableaux()(r) 

raise TypeError("r must be a list of positive integers") 

 

def __init__(self, parent, t): 

""" 

Initialize ``self``. 

 

EXAMPLES:: 

 

sage: R = RibbonShapedTableau([[2,3],[1,4,5]]) 

sage: TestSuite(R).run() 

""" 

if not isinstance(t, SkewTableau): 

#scrubing None 

t = [ [i for i in row if i is not None] for row in t] 

 

st = [] 

space_count = 0 

for row in reversed(t): 

st.append( [None]*space_count + row ) 

space_count += len(row) - 1 

st.reverse() 

t = st 

else: 

t = list(t) 

 

SkewTableau.__init__(self, parent, t) 

 

def height(self): 

""" 

Return the height of ``self``. 

 

The height is given by the number of rows in the outer partition. 

 

EXAMPLES:: 

 

sage: RibbonShapedTableau([[2,3],[1,4,5]]).height() 

2 

""" 

return len(self.outer_shape()) 

 

def spin(self): 

""" 

Return the spin of ``self``. 

 

EXAMPLES:: 

 

sage: RibbonShapedTableau([[2,3],[1,4,5]]).spin() 

1/2 

""" 

return Integer(self.height()-1)/2 

 

def width(self): 

""" 

Return the width of the ribbon. 

 

This is given by the length of the longest row in the outer partition. 

 

EXAMPLES:: 

 

sage: RibbonShapedTableau([[2,3],[1,4,5]]).width() 

4 

sage: RibbonShapedTableau([]).width() 

0 

""" 

return len(self[0]) if self else 0 

 

 

class RibbonShapedTableaux(SkewTableaux): 

""" 

The set of all ribbon shaped tableaux. 

""" 

@staticmethod 

def __classcall_private__(cls, shape=None, **kwds): 

""" 

Normalize input to ensure a unique representation and pick the correct 

class based on input. 

 

The ``shape`` parameter is currently ignored. 

 

EXAMPLES:: 

 

sage: S1 = RibbonShapedTableaux([4, 2, 2, 1]) 

sage: S2 = RibbonShapedTableaux((4, 2, 2, 1)) 

sage: S1 is S2 

True 

""" 

#if shape is not None: 

# from sage.combinat.partition import Partition 

# return RibbonShapedTableaux_shape(Partition(shape)) 

 

# Otherwise arg0 takes the place of the category in pickling 

return super(RibbonShapedTableaux, cls).__classcall__(cls, **kwds) 

 

def __init__(self, category=None): 

""" 

Initialize ``self``. 

 

EXAMPLES:: 

 

sage: S = RibbonShapedTableaux() 

sage: TestSuite(S).run() 

""" 

if category is None: 

category = Sets() 

 

SkewTableaux.__init__(self, category=category) 

 

def _repr_(self): 

""" 

TESTS:: 

 

sage: repr(RibbonShapedTableaux()) # indirect doctest 

'Ribbon shaped tableaux' 

""" 

return "Ribbon shaped tableaux" 

 

Element = RibbonShapedTableau 

options = Tableaux.options 

 

def from_shape_and_word(self, shape, word): 

""" 

Return the ribbon corresponding to the given ribbon shape and word. 

 

EXAMPLES:: 

 

sage: RibbonShapedTableaux().from_shape_and_word([1,3],[1,3,3,7]) 

[[None, None, 1], [3, 3, 7]] 

""" 

pos = 0 

r = [] 

for l in shape: 

r.append(word[pos:pos+l]) 

pos += l 

return self.element_class(self, r) 

 

class StandardRibbonShapedTableaux(StandardSkewTableaux): 

""" 

The set of all standard ribbon shaped tableaux. 

 

INPUT: 

 

- ``shape`` -- (optional) the composition shape of the rows 

""" 

@staticmethod 

def __classcall_private__(cls, shape=None, **kwds): 

""" 

Normalize input to ensure a unique representation and pick the correct 

class based on input. 

 

EXAMPLES:: 

 

sage: S1 = StandardRibbonShapedTableaux([4, 2, 2, 1]) 

sage: S2 = StandardRibbonShapedTableaux((4, 2, 2, 1)) 

sage: S1 is S2 

True 

""" 

if shape is not None: 

from sage.combinat.partition import Partition 

return StandardRibbonShapedTableaux_shape(Partition(shape)) 

 

# Otherwise arg0 takes the place of the category in pickling 

return super(StandardRibbonShapedTableaux, cls).__classcall__(cls, **kwds) 

 

def __init__(self, category=None): 

""" 

Initialize ``self``. 

 

EXAMPLES:: 

 

sage: S = StandardRibbonShapedTableaux() 

sage: TestSuite(S).run() 

""" 

if category is None: 

category = InfiniteEnumeratedSets() 

 

StandardSkewTableaux.__init__(self, category=category) 

 

def _repr_(self): 

""" 

TESTS:: 

 

sage: repr(StandardRibbonShapedTableaux()) # indirect doctest 

'Standard ribbon shaped tableaux' 

""" 

return "Standard ribbon shaped tableaux" 

 

def __iter__(self): 

""" 

Iterate through ``self``. 

 

EXAMPLES:: 

 

sage: it = StandardRibbonShapedTableaux().__iter__() 

sage: [next(it) for x in range(10)] 

[[], 

[[1]], 

[[1, 2]], 

[[1], [2]], 

[[1, 2, 3]], 

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

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

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

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

[[None, None, 3], [1, 2, 4]]] 

""" 

from sage.combinat.partition import _Partitions 

for p in _Partitions: 

for r in StandardRibbonShapedTableaux_shape(p): 

yield self.element_class(self, r) 

 

Element = RibbonShapedTableau 

options = Tableaux.options 

 

def from_shape_and_word(self, shape, word): 

""" 

Return the ribbon corresponding to the given ribbon shape and word. 

 

EXAMPLES:: 

 

sage: StandardRibbonShapedTableaux().from_shape_and_word([2,3],[1,2,3,4,5]) 

[[None, None, 1, 2], [3, 4, 5]] 

""" 

pos = 0 

r = [] 

for l in shape: 

r.append(word[pos:pos+l]) 

pos += l 

return self.element_class(self, r) 

 

def from_permutation(self, p): 

""" 

Return a standard ribbon of size ``len(p)`` from a permutation ``p``. The 

lengths of each row are given by the distance between the descents 

of the permutation ``p``. 

 

EXAMPLES:: 

 

sage: import sage.combinat.ribbon_shaped_tableau as rst 

sage: [StandardRibbonShapedTableaux().from_permutation(p) for p in Permutations(3)] 

[[[1, 2, 3]], 

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

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

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

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

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

""" 

if p == []: 

return self.element_class(self, []) 

 

comp = p.descents() 

 

if comp == []: 

return self.element_class(self, [p[:]]) 

 

r = [] 

r.append([p[j] for j in range(comp[0])]) 

for i in range(len(comp)-1): 

r.append([ p[j] for j in range(comp[i],comp[i+1]) ]) 

r.append( [ p[j] for j in range(comp[-1], len(p))] ) 

r.reverse() 

return self.element_class(self, r) 

 

class StandardRibbonShapedTableaux_shape(StandardRibbonShapedTableaux): 

""" 

Class of standard ribbon shaped tableaux of ribbon shape ``shape``. 

 

EXAMPLES:: 

 

sage: StandardRibbonShapedTableaux([2,2]) 

Standard ribbon shaped tableaux of shape [2, 2] 

sage: StandardRibbonShapedTableaux([2,2]).first() 

[[None, 2, 4], [1, 3]] 

sage: StandardRibbonShapedTableaux([2,2]).last() 

[[None, 1, 2], [3, 4]] 

sage: StandardRibbonShapedTableaux([2,2]).cardinality() 

5 

sage: StandardRibbonShapedTableaux([2,2]).list() 

[[[None, 2, 4], [1, 3]], 

[[None, 2, 3], [1, 4]], 

[[None, 1, 4], [2, 3]], 

[[None, 1, 3], [2, 4]], 

[[None, 1, 2], [3, 4]]] 

sage: StandardRibbonShapedTableaux([3,2,2]).cardinality() 

155 

""" 

@staticmethod 

def __classcall_private__(cls, shape): 

""" 

Normalize input to ensure a unique representation. 

 

EXAMPLES:: 

 

sage: S = StandardRibbonShapedTableaux([2,2]) 

sage: S2 = StandardRibbonShapedTableaux((2,2)) 

sage: S is S2 

True 

""" 

return super(StandardRibbonShapedTableaux, cls).__classcall__(cls, tuple(shape)) 

 

def __init__(self, shape): 

""" 

TESTS:: 

 

sage: S = StandardRibbonShapedTableaux([2,2]) 

sage: TestSuite(S).run() 

""" 

self.shape = shape 

StandardRibbonShapedTableaux.__init__(self, FiniteEnumeratedSets()) 

 

def _repr_(self): 

""" 

TESTS:: 

 

sage: StandardRibbonShapedTableaux([2,2]) 

Standard ribbon shaped tableaux of shape [2, 2] 

""" 

return "Standard ribbon shaped tableaux of shape %s"%list(self.shape) 

 

def first(self): 

""" 

Return the first standard ribbon of ``self``. 

 

EXAMPLES:: 

 

sage: StandardRibbonShapedTableaux([2,2]).first() 

[[None, 2, 4], [1, 3]] 

""" 

return self.from_permutation(descents_composition_first(self.shape)) 

 

def last(self): 

""" 

Return the last standard ribbon of ``self``. 

 

EXAMPLES:: 

 

sage: StandardRibbonShapedTableaux([2,2]).last() 

[[None, 1, 2], [3, 4]] 

""" 

return self.from_permutation(descents_composition_last(self.shape)) 

 

def __iter__(self): 

""" 

An iterator for the standard ribbon of ``self``. 

 

EXAMPLES:: 

 

sage: [t for t in StandardRibbonShapedTableaux([2,2])] 

[[[None, 2, 4], [1, 3]], 

[[None, 2, 3], [1, 4]], 

[[None, 1, 4], [2, 3]], 

[[None, 1, 3], [2, 4]], 

[[None, 1, 2], [3, 4]]] 

""" 

for p in descents_composition_list(self.shape): 

yield self.from_permutation(p) 

 

class Ribbon_class(RibbonShapedTableau): 

""" 

This exists solely for unpickling ``Ribbon_class`` objects. 

""" 

def __setstate__(self, state): 

r""" 

Unpickle old ``Ribbon_class`` objects. 

 

EXAMPLES:: 

 

sage: loads(b'x\x9ck`J.NLO\xd5K\xce\xcfM\xca\xccK,\xd1+\xcaLJ\xca\xcf\xe3\n\x02S\xf1\xc99\x89\xc5\xc5\\\x85\x8c\x9a\x8d\x85L\xb5\x85\xcc\x1a\xa1\xac\xf1\x19\x89\xc5\x19\x85,~@VNfqI!kl!\x9bFl!\xbb\x06\xc4\x9c\xa2\xcc\xbc\xf4b\xbd\xcc\xbc\x92\xd4\xf4\xd4"\xae\xdc\xc4\xec\xd4x\x18\xa7\x90#\x94\xd1\xb05\xa8\x903\x03\xc80\x022\xb8Rc\x0b\xb95@<c \x8f\x07\xc40\x012xSSK\x93\xf4\x00l\x811\x17') 

[[None, 1, 2], [3, 4]] 

sage: loads(dumps( RibbonShapedTableau([[3,2,1], [1,1]]) )) # indirect doctest 

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

""" 

self.__class__ = RibbonShapedTableau 

self.__init__(RibbonShapedTableaux(), state['_list']) 

 

from sage.structure.sage_object import register_unpickle_override 

register_unpickle_override('sage.combinat.ribbon', 'Ribbon_class', Ribbon_class) 

register_unpickle_override('sage.combinat.ribbon', 'StandardRibbons_shape', StandardRibbonShapedTableaux) 

 

# Deprecations from trac:18555. July 2016 

from sage.misc.superseded import deprecated_function_alias 

RibbonShapedTableaux.global_options = deprecated_function_alias(18555, RibbonShapedTableaux.options) 

StandardRibbonShapedTableaux.global_options = deprecated_function_alias(18555, StandardRibbonShapedTableaux.options)