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

r""" 

Examples of graded connected Hopf algebras with basis 

""" 

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

# Copyright (C) 2015 Jean-Baptiste Priez <jbp@kerios.fr> 

# 

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

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

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

 

from sage.categories.graded_hopf_algebras_with_basis import GradedHopfAlgebrasWithBasis 

from sage.combinat.free_module import CombinatorialFreeModule 

from sage.functions.other import binomial 

from sage.misc.cachefunc import cached_method 

from sage.sets.non_negative_integers import NonNegativeIntegers 

 

 

class GradedConnectedCombinatorialHopfAlgebraWithPrimitiveGenerator(CombinatorialFreeModule): 

r""" 

This class illustrates an implementation of a graded Hopf algebra 

with basis that has one primitive generator of degree 1 and basis 

elements indexed by non-negative integers. 

 

This Hopf algebra example differs from what topologists refer to as 

a graded Hopf algebra because the twist operation in the tensor rule 

satisfies 

 

.. MATH:: 

 

(\mu \otimes \mu) \circ (id \otimes \tau \otimes id) \circ 

(\Delta \otimes \Delta) = \Delta \circ \mu 

 

where `\tau(x\otimes y) = y\otimes x`. 

 

""" 

def __init__(self, base_ring): 

""" 

EXAMPLES:: 

 

sage: H = GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

sage: TestSuite(H).run() 

 

""" 

CombinatorialFreeModule.__init__(self, base_ring, NonNegativeIntegers(), 

category=GradedHopfAlgebrasWithBasis(base_ring).Connected()) 

 

 

@cached_method 

def one_basis(self): 

""" 

Returns 0, which index the unit of the Hopf algebra. 

 

OUTPUT: 

 

- the non-negative integer 0 

 

EXAMPLES:: 

 

sage: H = GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

sage: H.one_basis() 

0 

sage: H.one() 

P0 

 

""" 

return self.basis().keys()(0) 

 

def degree_on_basis(self, i): 

""" 

The degree of a non-negative integer is itself 

 

INPUT: 

 

- ``i`` -- a non-negative integer 

 

OUTPUT: 

 

- a non-negative integer 

 

TESTS:: 

 

sage: H = GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

sage: H.degree_on_basis(45) 

45 

 

""" 

return i 

 

def _repr_(self): 

""" 

Representation of the graded connected Hopf algebra 

 

EXAMPLES:: 

 

sage: GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

An example of a graded connected Hopf algebra with basis over Rational Field 

 

""" 

return "An example of a graded connected Hopf algebra with basis over %s" % self.base_ring() 

 

def _repr_term(self, i): 

""" 

Representation for the basis element indexed by the integer ``i``. 

 

EXAMPLES:: 

 

sage: H = GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

sage: H._repr_term(45) 

'P45' 

 

""" 

return 'P' + repr(i) 

 

def product_on_basis(self, i, j): 

""" 

The product of two basis elements. 

 

The product of elements of degree ``i`` and ``j`` is an element 

of degree ``i+j``. 

 

INPUT: 

 

- ``i``, ``j`` -- non-negative integers 

 

OUTPUT: 

 

- a basis element indexed by ``i+j`` 

 

TESTS:: 

 

sage: H = GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

sage: H.monomial(4) * H.monomial(5) 

P9 

 

""" 

return self.monomial(i+j) 

 

def coproduct_on_basis(self, i): 

""" 

The coproduct of a basis element. 

 

.. MATH:: 

 

\Delta(P_i) = \sum_{j=0}^i P_{i-j} \otimes P_j 

 

INPUT: 

 

- ``i`` -- a non-negative integer 

 

OUTPUT: 

 

- an element of the tensor square of ``self`` 

 

TESTS:: 

 

sage: H = GradedHopfAlgebrasWithBasis(QQ).Connected().example() 

sage: H.monomial(3).coproduct() 

P0 # P3 + 3*P1 # P2 + 3*P2 # P1 + P3 # P0 

 

""" 

return self.sum_of_terms( 

((i-j, j), binomial(i, j)) 

for j in range(i+1) 

) 

 

Example = GradedConnectedCombinatorialHopfAlgebraWithPrimitiveGenerator