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

Commit

Permalink
18399: example added
Browse files Browse the repository at this point in the history
  • Loading branch information
bhutz committed May 15, 2015
1 parent 6c04c13 commit 62ce7b2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/sage/schemes/projective/projective_morphism.py
Original file line number Diff line number Diff line change
Expand Up @@ -2425,6 +2425,18 @@ def automorphism_group(self, **kwds):
sage: f = H([3*x^2*y - y^3,x^3 - 3*x*y^2])
sage: f.automorphism_group(algorithm='CRT',return_functions=True,iso_type=True)
([x, (x + 1)/(x - 1), (-x + 1)/(x + 1), -x, 1/x, -1/x, (x - 1)/(x + 1), (-x - 1)/(x - 1)], 'Dihedral of order 8')
::
sage: A.<z> = AffineSpace(QQ,1)
sage: H = End(A)
sage: f = H([1/z^3])
sage: F = f.homogenize(1)
sage: F.automorphism_group()
[
[1 0] [0 2] [-1 0] [ 0 -2]
[0 1], [2 0], [ 0 1], [ 2 0]
]
"""

alg = kwds.get('algorithm',None)
Expand Down

0 comments on commit 62ce7b2

Please sign in to comment.