Skip to content

Commit

Permalink
-17326- Added example
Browse files Browse the repository at this point in the history
  • Loading branch information
albjoao committed Feb 6, 2015
1 parent 4adf3c9 commit f9ce9da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sage/schemes/projective/projective_morphism.py
Original file line number Diff line number Diff line change
Expand Up @@ -1150,12 +1150,12 @@ def is_morphism(self):
sage: f.is_morphism()
True
::
Map that is not morphism on projective space, but is over a subscheme::
sage: P.<x,y,z> = ProjectiveSpace(QQ,2)
sage: X = P.subscheme([x^2 - z^2])
sage: P.<x,y,z> = ProjectiveSpace(RR,2)
sage: X = P.subscheme([x*y + y*z])
sage: H = Hom(X,X)
sage: f= H([x^2 + z^2, 3*y^2, z^2 - 2*x^2])
sage: f = H([x*z-y*z,x^2-y^2,z^2])
sage: f.is_morphism()
True
"""
Expand Down

0 comments on commit f9ce9da

Please sign in to comment.