Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #32953: Sphere: improve handling of default charts
If one uses the method `stereographic_coordinates` to initialize steographic coordinates (instead of as via the constructor argument), then there are some inconsistencies. For example, {{{ sage: M = manifolds.Sphere(2) sage: XN = M.stereographic_coordinates(pole='north') sage: g = M.metric() sage: U = XN.domain(); U Open subset S^2-{NP} of the 2-sphere S^2 of radius 1 smoothly embedded in the Euclidean space E^3 sage: g.restrict(U).display() g = (cos(theta)^2 - 2*cos(theta) + 1) dy1⊗dy1 + (cos(theta)^2 - 2*cos(theta) + 1) dy2⊗dy2 }}} One would certainly expect the components of g to be expressed in terms of (y1,y2), i.e. the chart XN, which is the only chart that covers entirely U = S^2-{NP}. URL: https://trac.sagemath.org/32953 Reported by: gh-tobiasdiez Ticket author(s): Eric Gourgoulhon Reviewer(s): Travis Scrimshaw
- Loading branch information