Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Updated doc to include an example with the embedding specified for sp…
Browse files Browse the repository at this point in the history
…litting the Galois orbits of critical points.
  • Loading branch information
aodesky committed Nov 18, 2019
1 parent ed31de8 commit b9b2029
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/sage/dynamics/arithmetic_dynamics/projective_ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -3087,14 +3087,17 @@ def critical_points(self, R=None):

def ramification_type(self,R=None):
r"""
Return the ramification type of a self-map of the
projective line. Only branch points defined over ``R``
Return the ramification type of endomorphisms of
`\mathbb{P}^1`. Only branch points defined over ``R``
contribute to the ramification type if specified,
otherwise ``R`` is the ring of definition for self.
Note that branch points defined over ``R`` may not
be geometric points.
INPUT:
- ``R`` -- (optional)
- ``R`` -- ring or morphism (optional)
OUTPUT:
Expand Down Expand Up @@ -3125,7 +3128,8 @@ def ramification_type(self,R=None):
sage: F = DynamicalSystem_projective([x^3-2*x*y^2 + 2*y^3, y^3])
sage: F.ramification_type()
[[2], [3]]
sage: F.ramification_type(F.field_of_definition_critical())
sage: L,phi = F.field_of_definition_critical(return_embedding=True)
sage: F.ramification_type(phi)
[[2], [2], [3]]
"""
Expand Down

0 comments on commit b9b2029

Please sign in to comment.