Example of a set with grading¶
-
sage.categories.examples.sets_with_grading.
Example
¶ alias of
sage.categories.examples.sets_with_grading.NonNegativeIntegers
-
class
sage.categories.examples.sets_with_grading.
NonNegativeIntegers
¶ Bases:
sage.structure.unique_representation.UniqueRepresentation
,sage.structure.parent.Parent
Non negative integers graded by themselves.
EXAMPLES:
sage: E = SetsWithGrading().example() sage: E Non negative integers sage: E.graded_component(0) {0} sage: E.graded_component(100) {100}
-
an_element
()¶ Returns 0.
EXAMPLES:
sage: SetsWithGrading().example().an_element() 0
-
generating_series
(var='z')¶ Returns \(1 / (1-z)\).
EXAMPLES:
sage: N = SetsWithGrading().example(); N Non negative integers sage: f = N.generating_series(); f 1/(-z + 1) sage: LaurentSeriesRing(ZZ,'z')(f) 1 + z + z^2 + z^3 + z^4 + z^5 + z^6 + z^7 + z^8 + z^9 + z^10 + z^11 + z^12 + z^13 + z^14 + z^15 + z^16 + z^17 + z^18 + z^19 + O(z^20)
-
graded_component
(grade)¶ Returns the component with grade
grade
.EXAMPLES:
sage: N = SetsWithGrading().example() sage: N.graded_component(65) {65}
-
grading
(elt)¶ Returns the grade of
elt
.EXAMPLES:
sage: N = SetsWithGrading().example() sage: N.grading(10) 10
-