Coordinate Charts¶
The class Chart
implements coordinate charts on a topological
manifold over a topological field \(K\). The subclass RealChart
is devoted to the case \(K=\RR\), for which the concept of coordinate
range is meaningful.
Moreover, RealChart
is endowed with some plotting
capabilities (cf. method plot()
).
Transition maps between charts are implemented via the class
CoordChange
.
AUTHORS:
Eric Gourgoulhon, Michal Bejger (2013-2015) : initial version
Travis Scrimshaw (2015): review tweaks
Eric Gourgoulhon (2019): periodic coordinates, add
calculus_method()
REFERENCES:
- class sage.manifolds.chart.Chart(domain, coordinates, calc_method=None, periods=None, coord_restrictions=None)[source]¶
Bases:
UniqueRepresentation
,SageObject
Chart on a topological manifold.
Given a topological manifold \(M\) of dimension \(n\) over a topological field \(K\), a chart on \(M\) is a pair \((U, \varphi)\), where \(U\) is an open subset of \(M\) and \(\varphi : U \rightarrow V \subset K^n\) is a homeomorphism from \(U\) to an open subset \(V\) of \(K^n\).
The components \((x^1, \ldots, x^n)\) of \(\varphi\), defined by \(\varphi(p) = (x^1(p), \ldots, x^n(p)) \in K^n\) for any point \(p \in U\), are called the coordinates of the chart \((U, \varphi)\).
INPUT:
domain
– open subset \(U\) on which the chart is defined (must be an instance ofTopologicalManifold
)coordinates
– (default: ‘’ (empty string)) single string defining the coordinate symbols, with' '
(whitespace) as a separator; each item has at most three fields, separated by a colon (:
):the coordinate symbol (a letter or a few letters)
(optional) the period of the coordinate if the coordinate is periodic; the period field must be written as
period=T
, whereT
is the period (see examples below)(optional) the LaTeX spelling of the coordinate; if not provided the coordinate symbol given in the first field will be used
The order of fields 2 and 3 does not matter and each of them can be omitted. If it contains any LaTeX expression, the string
coordinates
must be declared with the prefix ‘r’ (for “raw”) to allow for a proper treatment of LaTeX’s backslash character (see examples below). If no period and no LaTeX spelling are to be set for any coordinate, the argumentcoordinates
can be omitted when the shortcut operator<,>
is used to declare the chart (see examples below).calc_method
– (default:None
) string defining the calculus method for computations involving coordinates of the chart; must be one of'SR'
: Sage’s default symbolic engine (Symbolic Ring)'sympy'
: SymPyNone
: the default ofCalculusMethod
will be used
names
– (default:None
) unused argument, except ifcoordinates
is not provided; it must then be a tuple containing the coordinate symbols (this is guaranteed if the shortcut operator<,>
is used)coord_restrictions
– additional restrictions on the coordinates. A restriction can be any symbolic equality or inequality involving the coordinates, such asx > y
orx^2 + y^2 != 0
. The items of the list (or set or frozenset)coord_restrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the list (or set or frozenset)coord_restrictions
. For example:coord_restrictions=[x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listcoord_restrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
. If the chart variables have not been declared as variables yet,coord_restrictions
must belambda
-quoted.
EXAMPLES:
A chart on a complex 2-dimensional topological manifold:
sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X = M.chart('x y'); X Chart (M, (x, y)) sage: latex(X) \left(M,(x, y)\right) sage: type(X) <class 'sage.manifolds.chart.Chart'>
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart('x y'); X Chart (M, (x, y)) >>> latex(X) \left(M,(x, y)\right) >>> type(X) <class 'sage.manifolds.chart.Chart'>
M = Manifold(2, 'M', field='complex', structure='topological') X = M.chart('x y'); X latex(X) type(X)
To manipulate the coordinates \((x,y)\) as global variables, one has to set:
sage: x,y = X[:]
>>> from sage.all import * >>> x,y = X[:]
x,y = X[:]
However, a shortcut is to use the declarator
<x,y>
in the left-hand side of the chart declaration (there is then no need to pass the string'x y'
tochart()
):sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x,y> = M.chart(); X Chart (M, (x, y))
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2); X Chart (M, (x, y))
M = Manifold(2, 'M', field='complex', structure='topological') X.<x,y> = M.chart(); X
The coordinates are then immediately accessible:
sage: y y sage: x is X[0] and y is X[1] True
>>> from sage.all import * >>> y y >>> x is X[Integer(0)] and y is X[Integer(1)] True
y x is X[0] and y is X[1]
Note that
x
andy
declared in<x,y>
are mere Python variable names and do not have to coincide with the coordinate symbols; for instance, one may write:sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x1,y1> = M.chart('x y'); X Chart (M, (x, y))
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart('x y', names=('x1', 'y1',)); (x1, y1,) = X._first_ngens(2); X Chart (M, (x, y))
M = Manifold(2, 'M', field='complex', structure='topological') X.<x1,y1> = M.chart('x y'); X
Then
y
is not known as a global Python variable and the coordinate \(y\) is accessible only through the global variabley1
:sage: y1 y sage: latex(y1) y sage: y1 is X[1] True
>>> from sage.all import * >>> y1 y >>> latex(y1) y >>> y1 is X[Integer(1)] True
y1 latex(y1) y1 is X[1]
However, having the name of the Python variable coincide with the coordinate symbol is quite convenient; so it is recommended to declare:
sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x,y> = M.chart()
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2)
M = Manifold(2, 'M', field='complex', structure='topological') X.<x,y> = M.chart()
In the above example, the chart X covers entirely the manifold
M
:sage: X.domain() Complex 2-dimensional topological manifold M
>>> from sage.all import * >>> X.domain() Complex 2-dimensional topological manifold M
X.domain()
Of course, one may declare a chart only on an open subset of
M
:sage: U = M.open_subset('U') sage: Y.<z1, z2> = U.chart(r'z1:\zeta_1 z2:\zeta_2'); Y Chart (U, (z1, z2)) sage: Y.domain() Open subset U of the Complex 2-dimensional topological manifold M
>>> from sage.all import * >>> U = M.open_subset('U') >>> Y = U.chart(r'z1:\zeta_1 z2:\zeta_2', names=('z1', 'z2',)); (z1, z2,) = Y._first_ngens(2); Y Chart (U, (z1, z2)) >>> Y.domain() Open subset U of the Complex 2-dimensional topological manifold M
U = M.open_subset('U') Y.<z1, z2> = U.chart(r'z1:\zeta_1 z2:\zeta_2'); Y Y.domain()
In the above declaration, we have also specified some LaTeX writing of the coordinates different from the text one:
sage: latex(z1) {\zeta_1}
>>> from sage.all import * >>> latex(z1) {\zeta_1}
latex(z1)
Note the prefix
r
in front of the stringr'z1:\zeta_1 z2:\zeta_2'
; it makes sure that the backslash character is treated as an ordinary character, to be passed to the LaTeX interpreter.Periodic coordinates are declared through the keyword
period=
in the coordinate field:sage: N = Manifold(2, 'N', field='complex', structure='topological') sage: XN.<Z1,Z2> = N.chart('Z1:period=1+2*I Z2') sage: XN.periods() (2*I + 1, None)
>>> from sage.all import * >>> N = Manifold(Integer(2), 'N', field='complex', structure='topological') >>> XN = N.chart('Z1:period=1+2*I Z2', names=('Z1', 'Z2',)); (Z1, Z2,) = XN._first_ngens(2) >>> XN.periods() (2*I + 1, None)
N = Manifold(2, 'N', field='complex', structure='topological') XN.<Z1,Z2> = N.chart('Z1:period=1+2*I Z2') XN.periods()
Coordinates are Sage symbolic variables (see
sage.symbolic.expression
):sage: type(z1) <class 'sage.symbolic.expression.Expression'>
>>> from sage.all import * >>> type(z1) <class 'sage.symbolic.expression.Expression'>
type(z1)
In addition to the Python variable name provided in the operator
<.,.>
, the coordinates are accessible by their indices:sage: Y[0], Y[1] (z1, z2)
>>> from sage.all import * >>> Y[Integer(0)], Y[Integer(1)] (z1, z2)
Y[0], Y[1]
The index range is that declared during the creation of the manifold. By default, it starts at 0, but this can be changed via the parameter
start_index
:sage: M1 = Manifold(2, 'M_1', field='complex', structure='topological', ....: start_index=1) sage: Z.<u,v> = M1.chart() sage: Z[1], Z[2] (u, v)
>>> from sage.all import * >>> M1 = Manifold(Integer(2), 'M_1', field='complex', structure='topological', ... start_index=Integer(1)) >>> Z = M1.chart(names=('u', 'v',)); (u, v,) = Z._first_ngens(2) >>> Z[Integer(1)], Z[Integer(2)] (u, v)
M1 = Manifold(2, 'M_1', field='complex', structure='topological', start_index=1) Z.<u,v> = M1.chart() Z[1], Z[2]
The full set of coordinates is obtained by means of the slice operator
[:]
:sage: Y[:] (z1, z2)
>>> from sage.all import * >>> Y[:] (z1, z2)
Y[:]
Some partial sets of coordinates:
sage: Y[:1] (z1,) sage: Y[1:] (z2,)
>>> from sage.all import * >>> Y[:Integer(1)] (z1,) >>> Y[Integer(1):] (z2,)
Y[:1] Y[1:]
Each constructed chart is automatically added to the manifold’s user atlas:
sage: M.atlas() [Chart (M, (x, y)), Chart (U, (z1, z2))]
>>> from sage.all import * >>> M.atlas() [Chart (M, (x, y)), Chart (U, (z1, z2))]
M.atlas()
and to the atlas of the chart’s domain:
sage: U.atlas() [Chart (U, (z1, z2))]
>>> from sage.all import * >>> U.atlas() [Chart (U, (z1, z2))]
U.atlas()
Manifold subsets have a default chart, which, unless changed via the method
set_default_chart()
, is the first defined chart on the subset (or on a open subset of it):sage: M.default_chart() Chart (M, (x, y)) sage: U.default_chart() Chart (U, (z1, z2))
>>> from sage.all import * >>> M.default_chart() Chart (M, (x, y)) >>> U.default_chart() Chart (U, (z1, z2))
M.default_chart() U.default_chart()
The default charts are not privileged charts on the manifold, but rather charts whose name can be skipped in the argument list of functions having an optional
chart=
argument.The chart map \(\varphi\) acting on a point is obtained by passing it as an input to the map:
sage: p = M.point((1+i, 2), chart=X); p Point on the Complex 2-dimensional topological manifold M sage: X(p) (I + 1, 2) sage: X(p) == p.coord(X) True
>>> from sage.all import * >>> p = M.point((Integer(1)+i, Integer(2)), chart=X); p Point on the Complex 2-dimensional topological manifold M >>> X(p) (I + 1, 2) >>> X(p) == p.coord(X) True
p = M.point((1+i, 2), chart=X); p X(p) X(p) == p.coord(X)
Setting additional coordinate restrictions:
sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x,y> = M.chart(coord_restrictions=lambda x,y: abs(x) > 1) sage: X.valid_coordinates(2+i, 1) True sage: X.valid_coordinates(i, 1) False
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart(coord_restrictions=lambda x,y: abs(x) > Integer(1), names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.valid_coordinates(Integer(2)+i, Integer(1)) True >>> X.valid_coordinates(i, Integer(1)) False
M = Manifold(2, 'M', field='complex', structure='topological') X.<x,y> = M.chart(coord_restrictions=lambda x,y: abs(x) > 1) X.valid_coordinates(2+i, 1) X.valid_coordinates(i, 1)
See also
sage.manifolds.chart.RealChart
for charts on topological manifolds over \(\RR\).- add_restrictions(restrictions)[source]¶
Add some restrictions on the coordinates.
This is deprecated; provide the restrictions at the time of creating the chart.
INPUT:
restrictions
– list of restrictions on the coordinates, in addition to the ranges declared by the intervals specified in the chart constructor
A restriction can be any symbolic equality or inequality involving the coordinates, such as
x > y
orx^2 + y^2 != 0
. The items of the listrestrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the listrestrictions
. For example:restrictions = [x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listrestrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
.EXAMPLES:
sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x,y> = M.chart() sage: X.add_restrictions(abs(x) > 1) doctest:warning... DeprecationWarning: Chart.add_restrictions is deprecated; provide the restrictions at the time of creating the chart See https://github.com/sagemath/sage/issues/32102 for details. sage: X.valid_coordinates(2+i, 1) True sage: X.valid_coordinates(i, 1) False
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.add_restrictions(abs(x) > Integer(1)) doctest:warning... DeprecationWarning: Chart.add_restrictions is deprecated; provide the restrictions at the time of creating the chart See https://github.com/sagemath/sage/issues/32102 for details. >>> X.valid_coordinates(Integer(2)+i, Integer(1)) True >>> X.valid_coordinates(i, Integer(1)) False
M = Manifold(2, 'M', field='complex', structure='topological') X.<x,y> = M.chart() X.add_restrictions(abs(x) > 1) X.valid_coordinates(2+i, 1) X.valid_coordinates(i, 1)
- calculus_method()[source]¶
Return the interface governing the calculus engine for expressions involving coordinates of this chart.
The calculus engine can be one of the following:
Sage’s symbolic engine (Pynac + Maxima), implemented via the Symbolic Ring
SR
SymPy
See also
CalculusMethod
for a complete documentation.OUTPUT: an instance of
CalculusMethod
EXAMPLES:
The default calculus method relies on Sage’s Symbolic Ring:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.calculus_method() Available calculus methods (* = current): - SR (default) (*) - sympy
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.calculus_method() Available calculus methods (* = current): - SR (default) (*) - sympy
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.calculus_method()
Accordingly the method
expr()
of a functionf
defined on the chartX
returns a Sage symbolic expression:sage: f = X.function(x^2 + cos(y)*sin(x)) sage: f.expr() x^2 + cos(y)*sin(x) sage: type(f.expr()) <class 'sage.symbolic.expression.Expression'> sage: parent(f.expr()) Symbolic Ring sage: f.display() (x, y) ↦ x^2 + cos(y)*sin(x)
>>> from sage.all import * >>> f = X.function(x**Integer(2) + cos(y)*sin(x)) >>> f.expr() x^2 + cos(y)*sin(x) >>> type(f.expr()) <class 'sage.symbolic.expression.Expression'> >>> parent(f.expr()) Symbolic Ring >>> f.display() (x, y) ↦ x^2 + cos(y)*sin(x)
f = X.function(x^2 + cos(y)*sin(x)) f.expr() type(f.expr()) parent(f.expr()) f.display()
Changing to SymPy:
sage: X.calculus_method().set('sympy') sage: f.expr() x**2 + sin(x)*cos(y) sage: type(f.expr()) <class 'sympy.core.add.Add'> sage: parent(f.expr()) <class 'sympy.core.add.Add'> sage: f.display() (x, y) ↦ x**2 + sin(x)*cos(y)
>>> from sage.all import * >>> X.calculus_method().set('sympy') >>> f.expr() x**2 + sin(x)*cos(y) >>> type(f.expr()) <class 'sympy.core.add.Add'> >>> parent(f.expr()) <class 'sympy.core.add.Add'> >>> f.display() (x, y) ↦ x**2 + sin(x)*cos(y)
X.calculus_method().set('sympy') f.expr() type(f.expr()) parent(f.expr()) f.display()
Back to the Symbolic Ring:
sage: X.calculus_method().set('SR') sage: f.display() (x, y) ↦ x^2 + cos(y)*sin(x)
>>> from sage.all import * >>> X.calculus_method().set('SR') >>> f.display() (x, y) ↦ x^2 + cos(y)*sin(x)
X.calculus_method().set('SR') f.display()
- codomain()[source]¶
Return the codomain of
self
as a set.EXAMPLES:
sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x,y> = M.chart() sage: X.codomain() Vector space of dimension 2 over Complex Field with 53 bits of precision
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.codomain() Vector space of dimension 2 over Complex Field with 53 bits of precision
M = Manifold(2, 'M', field='complex', structure='topological') X.<x,y> = M.chart() X.codomain()
- domain()[source]¶
Return the open subset on which the chart is defined.
EXAMPLES:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.domain() 2-dimensional topological manifold M sage: U = M.open_subset('U') sage: Y.<u,v> = U.chart() sage: Y.domain() Open subset U of the 2-dimensional topological manifold M
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.domain() 2-dimensional topological manifold M >>> U = M.open_subset('U') >>> Y = U.chart(names=('u', 'v',)); (u, v,) = Y._first_ngens(2) >>> Y.domain() Open subset U of the 2-dimensional topological manifold M
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.domain() U = M.open_subset('U') Y.<u,v> = U.chart() Y.domain()
- function(expression, calc_method=None, expansion_symbol=None, order=None)[source]¶
Define a coordinate function to the base field.
If the current chart belongs to the atlas of a \(n\)-dimensional manifold over a topological field \(K\), a coordinate function is a map
\[\begin{split}\begin{array}{cccc} f:& V\subset K^n & \longrightarrow & K \\ & (x^1,\ldots, x^n) & \longmapsto & f(x^1,\ldots, x^n), \end{array}\end{split}\]where \(V\) is the chart codomain and \((x^1, \ldots, x^n)\) are the chart coordinates.
INPUT:
expression
– a symbolic expression involving the chart coordinates, to represent \(f(x^1,\ldots, x^n)\)calc_method
– string (default:None
); the calculus method with respect to which the internal expression of the function must be initialized fromexpression
; one of'SR'
: Sage’s default symbolic engine (Symbolic Ring)'sympy'
: SymPyNone
: the chart current calculus method is assumed
expansion_symbol
– (default:None
) symbolic variable (the “small parameter”) with respect to which the coordinate expression is expanded in power series (around the zero value of this variable)order
– integer (default:None
); the order of the expansion ifexpansion_symbol
is notNone
; the order is defined as the degree of the polynomial representing the truncated power series inexpansion_symbol
.Warning
The value of
order
is \(n-1\), where \(n\) is the order of the big \(O\) in the power series expansion
OUTPUT:
instance of
ChartFunction
representing the coordinate function \(f\)
EXAMPLES:
A symbolic coordinate function:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: f = X.function(sin(x*y)) sage: f sin(x*y) sage: type(f) <class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'> sage: f.display() (x, y) ↦ sin(x*y) sage: f(2,3) sin(6)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> f = X.function(sin(x*y)) >>> f sin(x*y) >>> type(f) <class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'> >>> f.display() (x, y) ↦ sin(x*y) >>> f(Integer(2),Integer(3)) sin(6)
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() f = X.function(sin(x*y)) f type(f) f.display() f(2,3)
Using SymPy for the internal representation of the function (dictionary
_express
):sage: g = X.function(x^2 + x*cos(y), calc_method='sympy') sage: g._express {'sympy': x**2 + x*cos(y)}
>>> from sage.all import * >>> g = X.function(x**Integer(2) + x*cos(y), calc_method='sympy') >>> g._express {'sympy': x**2 + x*cos(y)}
g = X.function(x^2 + x*cos(y), calc_method='sympy') g._express
On the contrary, for
f
, only theSR
part has been initialized:sage: f._express {'SR': sin(x*y)}
>>> from sage.all import * >>> f._express {'SR': sin(x*y)}
f._express
See
ChartFunction
for more examples.
- function_ring()[source]¶
Return the ring of coordinate functions on
self
.EXAMPLES:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.function_ring() Ring of chart functions on Chart (M, (x, y))
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.function_ring() Ring of chart functions on Chart (M, (x, y))
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.function_ring()
- manifold()[source]¶
Return the manifold on which the chart is defined.
EXAMPLES:
sage: M = Manifold(2, 'M', structure='topological') sage: U = M.open_subset('U') sage: X.<x,y> = U.chart() sage: X.manifold() 2-dimensional topological manifold M sage: X.domain() Open subset U of the 2-dimensional topological manifold M
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> U = M.open_subset('U') >>> X = U.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.manifold() 2-dimensional topological manifold M >>> X.domain() Open subset U of the 2-dimensional topological manifold M
M = Manifold(2, 'M', structure='topological') U = M.open_subset('U') X.<x,y> = U.chart() X.manifold() X.domain()
- multifunction(*expressions)[source]¶
Define a coordinate function to some Cartesian power of the base field.
If \(n\) and \(m\) are two positive integers and \((U, \varphi)\) is a chart on a topological manifold \(M\) of dimension \(n\) over a topological field \(K\), a multi-coordinate function associated to \((U,\varphi)\) is a map
\[\begin{split}\begin{array}{llcl} f:& V \subset K^n & \longrightarrow & K^m \\ & (x^1, \ldots, x^n) & \longmapsto & (f_1(x^1, \ldots, x^n), \ldots, f_m(x^1, \ldots, x^n)), \end{array}\end{split}\]where \(V\) is the codomain of \(\varphi\). In other words, \(f\) is a \(K^m\)-valued function of the coordinates associated to the chart \((U, \varphi)\).
See
MultiCoordFunction
for a complete documentation.INPUT:
expressions
– list (or tuple) of \(m\) elements to construct the coordinate functions \(f_i\) (\(1\leq i \leq m\)); for symbolic coordinate functions, this must be symbolic expressions involving the chart coordinates, while for numerical coordinate functions, this must be data file names
OUTPUT:
a
MultiCoordFunction
representing \(f\)
EXAMPLES:
Function of two coordinates with values in \(\RR^3\):
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: f = X.multifunction(x+y, sin(x*y), x^2 + 3*y); f Coordinate functions (x + y, sin(x*y), x^2 + 3*y) on the Chart (M, (x, y)) sage: f(2,3) (5, sin(6), 13)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> f = X.multifunction(x+y, sin(x*y), x**Integer(2) + Integer(3)*y); f Coordinate functions (x + y, sin(x*y), x^2 + 3*y) on the Chart (M, (x, y)) >>> f(Integer(2),Integer(3)) (5, sin(6), 13)
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() f = X.multifunction(x+y, sin(x*y), x^2 + 3*y); f f(2,3)
- one_function()[source]¶
Return the constant function of the coordinates equal to one.
If the current chart belongs to the atlas of a \(n\)-dimensional manifold over a topological field \(K\), the “one” coordinate function is the map
\[\begin{split}\begin{array}{cccc} f:& V\subset K^n & \longrightarrow & K \\ & (x^1,\ldots, x^n) & \longmapsto & 1, \end{array}\end{split}\]where \(V\) is the chart codomain.
See class
ChartFunction
for a complete documentation.OUTPUT:
a
ChartFunction
representing the one coordinate function \(f\)
EXAMPLES:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.one_function() 1 sage: X.one_function().display() (x, y) ↦ 1 sage: type(X.one_function()) <class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'>
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.one_function() 1 >>> X.one_function().display() (x, y) ↦ 1 >>> type(X.one_function()) <class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'>
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.one_function() X.one_function().display() type(X.one_function())
The result is cached:
sage: X.one_function() is X.one_function() True
>>> from sage.all import * >>> X.one_function() is X.one_function() True
X.one_function() is X.one_function()
One function on a \(p\)-adic manifold:
sage: # needs sage.rings.padics sage: M = Manifold(2, 'M', structure='topological', field=Qp(5)); M 2-dimensional topological manifold M over the 5-adic Field with capped relative precision 20 sage: X.<x,y> = M.chart() sage: X.one_function() 1 + O(5^20) sage: X.one_function().display() (x, y) ↦ 1 + O(5^20)
>>> from sage.all import * >>> # needs sage.rings.padics >>> M = Manifold(Integer(2), 'M', structure='topological', field=Qp(Integer(5))); M 2-dimensional topological manifold M over the 5-adic Field with capped relative precision 20 >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.one_function() 1 + O(5^20) >>> X.one_function().display() (x, y) ↦ 1 + O(5^20)
# needs sage.rings.padics M = Manifold(2, 'M', structure='topological', field=Qp(5)); M X.<x,y> = M.chart() X.one_function() X.one_function().display()
- periods()[source]¶
Return the coordinate periods.
OUTPUT:
a tuple containing the period of each coordinate, with the value
None
if the coordinate is not periodic
EXAMPLES:
A chart without any periodic coordinate:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.periods() (None, None)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.periods() (None, None)
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.periods()
Charts with a periodic coordinate:
sage: Y.<u,v> = M.chart("u v:(0,2*pi):periodic") sage: Y.periods() (None, 2*pi) sage: Z.<a,b> = M.chart(r"a:period=sqrt(2):\alpha b:\beta") sage: Z.periods() (sqrt(2), None)
>>> from sage.all import * >>> Y = M.chart("u v:(0,2*pi):periodic", names=('u', 'v',)); (u, v,) = Y._first_ngens(2) >>> Y.periods() (None, 2*pi) >>> Z = M.chart(r"a:period=sqrt(2):\alpha b:\beta", names=('a', 'b',)); (a, b,) = Z._first_ngens(2) >>> Z.periods() (sqrt(2), None)
Y.<u,v> = M.chart("u v:(0,2*pi):periodic") Y.periods() Z.<a,b> = M.chart(r"a:period=sqrt(2):\alpha b:\beta") Z.periods()
Complex manifold with a periodic coordinate:
sage: M = Manifold(2, 'M', field='complex', structure='topological', ....: start_index=1) sage: X.<x,y> = M.chart("x y:period=1+I") sage: X.periods() (None, I + 1)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological', ... start_index=Integer(1)) >>> X = M.chart("x y:period=1+I", names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.periods() (None, I + 1)
M = Manifold(2, 'M', field='complex', structure='topological', start_index=1) X.<x,y> = M.chart("x y:period=1+I") X.periods()
- preimage(codomain_subset, name=None, latex_name=None)[source]¶
Return the preimage (pullback) of
codomain_subset
underself
.It is the subset of the domain of
self
formed by the points whose coordinate vectors lie incodomain_subset
.INPUT:
codomain_subset
– an instance ofConvexSet_base
or another object with a__contains__
method that accepts coordinate vectorsname
– string; name (symbol) given to the subsetlatex_name
– string (default:None
); LaTeX symbol to denote the subset; if none are provided, it is set toname
OUTPUT:
either a
TopologicalManifold
or aManifoldSubsetPullback
EXAMPLES:
sage: M = Manifold(2, 'R^2', structure='topological') sage: c_cart.<x,y> = M.chart() # Cartesian coordinates on R^2
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> c_cart = M.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2)# Cartesian coordinates on R^2
M = Manifold(2, 'R^2', structure='topological') c_cart.<x,y> = M.chart() # Cartesian coordinates on R^2
Pulling back a polytope under a chart:
sage: # needs sage.geometry.polyhedron sage: P = Polyhedron(vertices=[[0, 0], [1, 2], [2, 1]]); P A 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices sage: McP = c_cart.preimage(P); McP Subset x_y_inv_P of the 2-dimensional topological manifold R^2 sage: M((1, 2)) in McP True sage: M((2, 0)) in McP False
>>> from sage.all import * >>> # needs sage.geometry.polyhedron >>> P = Polyhedron(vertices=[[Integer(0), Integer(0)], [Integer(1), Integer(2)], [Integer(2), Integer(1)]]); P A 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices >>> McP = c_cart.preimage(P); McP Subset x_y_inv_P of the 2-dimensional topological manifold R^2 >>> M((Integer(1), Integer(2))) in McP True >>> M((Integer(2), Integer(0))) in McP False
# needs sage.geometry.polyhedron P = Polyhedron(vertices=[[0, 0], [1, 2], [2, 1]]); P McP = c_cart.preimage(P); McP M((1, 2)) in McP M((2, 0)) in McP
Pulling back the interior of a polytope under a chart:
sage: # needs sage.geometry.polyhedron sage: int_P = P.interior(); int_P Relative interior of a 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices sage: McInt_P = c_cart.preimage(int_P, name='McInt_P'); McInt_P Open subset McInt_P of the 2-dimensional topological manifold R^2 sage: M((0, 0)) in McInt_P False sage: M((1, 1)) in McInt_P True
>>> from sage.all import * >>> # needs sage.geometry.polyhedron >>> int_P = P.interior(); int_P Relative interior of a 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices >>> McInt_P = c_cart.preimage(int_P, name='McInt_P'); McInt_P Open subset McInt_P of the 2-dimensional topological manifold R^2 >>> M((Integer(0), Integer(0))) in McInt_P False >>> M((Integer(1), Integer(1))) in McInt_P True
# needs sage.geometry.polyhedron int_P = P.interior(); int_P McInt_P = c_cart.preimage(int_P, name='McInt_P'); McInt_P M((0, 0)) in McInt_P M((1, 1)) in McInt_P
Pulling back a point lattice:
sage: W = span([[1, 0], [3, 5]], ZZ); W Free module of degree 2 and rank 2 over Integer Ring Echelon basis matrix: [1 0] [0 5] sage: McW = c_cart.pullback(W, name='McW'); McW Subset McW of the 2-dimensional topological manifold R^2 sage: M((4, 5)) in McW True sage: M((4, 4)) in McW False
>>> from sage.all import * >>> W = span([[Integer(1), Integer(0)], [Integer(3), Integer(5)]], ZZ); W Free module of degree 2 and rank 2 over Integer Ring Echelon basis matrix: [1 0] [0 5] >>> McW = c_cart.pullback(W, name='McW'); McW Subset McW of the 2-dimensional topological manifold R^2 >>> M((Integer(4), Integer(5))) in McW True >>> M((Integer(4), Integer(4))) in McW False
W = span([[1, 0], [3, 5]], ZZ); W McW = c_cart.pullback(W, name='McW'); McW M((4, 5)) in McW M((4, 4)) in McW
Pulling back a real vector subspaces:
sage: V = span([[1, 2]], RR); V Vector space of degree 2 and dimension 1 over Real Field with 53 bits of precision Basis matrix: [1.00000000000000 2.00000000000000] sage: McV = c_cart.pullback(V, name='McV'); McV Subset McV of the 2-dimensional topological manifold R^2 sage: M((2, 4)) in McV True sage: M((1, 0)) in McV False
>>> from sage.all import * >>> V = span([[Integer(1), Integer(2)]], RR); V Vector space of degree 2 and dimension 1 over Real Field with 53 bits of precision Basis matrix: [1.00000000000000 2.00000000000000] >>> McV = c_cart.pullback(V, name='McV'); McV Subset McV of the 2-dimensional topological manifold R^2 >>> M((Integer(2), Integer(4))) in McV True >>> M((Integer(1), Integer(0))) in McV False
V = span([[1, 2]], RR); V McV = c_cart.pullback(V, name='McV'); McV M((2, 4)) in McV M((1, 0)) in McV
Pulling back a finite set of points:
sage: F = Family([vector(QQ, [1, 2], immutable=True), ....: vector(QQ, [2, 3], immutable=True)]) sage: McF = c_cart.pullback(F, name='McF'); McF Subset McF of the 2-dimensional topological manifold R^2 sage: M((2, 3)) in McF True sage: M((0, 0)) in McF False
>>> from sage.all import * >>> F = Family([vector(QQ, [Integer(1), Integer(2)], immutable=True), ... vector(QQ, [Integer(2), Integer(3)], immutable=True)]) >>> McF = c_cart.pullback(F, name='McF'); McF Subset McF of the 2-dimensional topological manifold R^2 >>> M((Integer(2), Integer(3))) in McF True >>> M((Integer(0), Integer(0))) in McF False
F = Family([vector(QQ, [1, 2], immutable=True), vector(QQ, [2, 3], immutable=True)]) McF = c_cart.pullback(F, name='McF'); McF M((2, 3)) in McF M((0, 0)) in McF
Pulling back the integers:
sage: R = manifolds.RealLine(); R Real number line ℝ sage: McZ = R.canonical_chart().pullback(ZZ, name='ℤ'); McZ Subset ℤ of the Real number line ℝ sage: R((3/2,)) in McZ False sage: R((-2,)) in McZ True
>>> from sage.all import * >>> R = manifolds.RealLine(); R Real number line ℝ >>> McZ = R.canonical_chart().pullback(ZZ, name='ℤ'); McZ Subset ℤ of the Real number line ℝ >>> R((Integer(3)/Integer(2),)) in McZ False >>> R((-Integer(2),)) in McZ True
R = manifolds.RealLine(); R McZ = R.canonical_chart().pullback(ZZ, name='ℤ'); McZ R((3/2,)) in McZ R((-2,)) in McZ
- pullback(codomain_subset, name=None, latex_name=None)[source]¶
Return the preimage (pullback) of
codomain_subset
underself
.It is the subset of the domain of
self
formed by the points whose coordinate vectors lie incodomain_subset
.INPUT:
codomain_subset
– an instance ofConvexSet_base
or another object with a__contains__
method that accepts coordinate vectorsname
– string; name (symbol) given to the subsetlatex_name
– string (default:None
); LaTeX symbol to denote the subset; if none are provided, it is set toname
OUTPUT:
either a
TopologicalManifold
or aManifoldSubsetPullback
EXAMPLES:
sage: M = Manifold(2, 'R^2', structure='topological') sage: c_cart.<x,y> = M.chart() # Cartesian coordinates on R^2
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> c_cart = M.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2)# Cartesian coordinates on R^2
M = Manifold(2, 'R^2', structure='topological') c_cart.<x,y> = M.chart() # Cartesian coordinates on R^2
Pulling back a polytope under a chart:
sage: # needs sage.geometry.polyhedron sage: P = Polyhedron(vertices=[[0, 0], [1, 2], [2, 1]]); P A 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices sage: McP = c_cart.preimage(P); McP Subset x_y_inv_P of the 2-dimensional topological manifold R^2 sage: M((1, 2)) in McP True sage: M((2, 0)) in McP False
>>> from sage.all import * >>> # needs sage.geometry.polyhedron >>> P = Polyhedron(vertices=[[Integer(0), Integer(0)], [Integer(1), Integer(2)], [Integer(2), Integer(1)]]); P A 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices >>> McP = c_cart.preimage(P); McP Subset x_y_inv_P of the 2-dimensional topological manifold R^2 >>> M((Integer(1), Integer(2))) in McP True >>> M((Integer(2), Integer(0))) in McP False
# needs sage.geometry.polyhedron P = Polyhedron(vertices=[[0, 0], [1, 2], [2, 1]]); P McP = c_cart.preimage(P); McP M((1, 2)) in McP M((2, 0)) in McP
Pulling back the interior of a polytope under a chart:
sage: # needs sage.geometry.polyhedron sage: int_P = P.interior(); int_P Relative interior of a 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices sage: McInt_P = c_cart.preimage(int_P, name='McInt_P'); McInt_P Open subset McInt_P of the 2-dimensional topological manifold R^2 sage: M((0, 0)) in McInt_P False sage: M((1, 1)) in McInt_P True
>>> from sage.all import * >>> # needs sage.geometry.polyhedron >>> int_P = P.interior(); int_P Relative interior of a 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices >>> McInt_P = c_cart.preimage(int_P, name='McInt_P'); McInt_P Open subset McInt_P of the 2-dimensional topological manifold R^2 >>> M((Integer(0), Integer(0))) in McInt_P False >>> M((Integer(1), Integer(1))) in McInt_P True
# needs sage.geometry.polyhedron int_P = P.interior(); int_P McInt_P = c_cart.preimage(int_P, name='McInt_P'); McInt_P M((0, 0)) in McInt_P M((1, 1)) in McInt_P
Pulling back a point lattice:
sage: W = span([[1, 0], [3, 5]], ZZ); W Free module of degree 2 and rank 2 over Integer Ring Echelon basis matrix: [1 0] [0 5] sage: McW = c_cart.pullback(W, name='McW'); McW Subset McW of the 2-dimensional topological manifold R^2 sage: M((4, 5)) in McW True sage: M((4, 4)) in McW False
>>> from sage.all import * >>> W = span([[Integer(1), Integer(0)], [Integer(3), Integer(5)]], ZZ); W Free module of degree 2 and rank 2 over Integer Ring Echelon basis matrix: [1 0] [0 5] >>> McW = c_cart.pullback(W, name='McW'); McW Subset McW of the 2-dimensional topological manifold R^2 >>> M((Integer(4), Integer(5))) in McW True >>> M((Integer(4), Integer(4))) in McW False
W = span([[1, 0], [3, 5]], ZZ); W McW = c_cart.pullback(W, name='McW'); McW M((4, 5)) in McW M((4, 4)) in McW
Pulling back a real vector subspaces:
sage: V = span([[1, 2]], RR); V Vector space of degree 2 and dimension 1 over Real Field with 53 bits of precision Basis matrix: [1.00000000000000 2.00000000000000] sage: McV = c_cart.pullback(V, name='McV'); McV Subset McV of the 2-dimensional topological manifold R^2 sage: M((2, 4)) in McV True sage: M((1, 0)) in McV False
>>> from sage.all import * >>> V = span([[Integer(1), Integer(2)]], RR); V Vector space of degree 2 and dimension 1 over Real Field with 53 bits of precision Basis matrix: [1.00000000000000 2.00000000000000] >>> McV = c_cart.pullback(V, name='McV'); McV Subset McV of the 2-dimensional topological manifold R^2 >>> M((Integer(2), Integer(4))) in McV True >>> M((Integer(1), Integer(0))) in McV False
V = span([[1, 2]], RR); V McV = c_cart.pullback(V, name='McV'); McV M((2, 4)) in McV M((1, 0)) in McV
Pulling back a finite set of points:
sage: F = Family([vector(QQ, [1, 2], immutable=True), ....: vector(QQ, [2, 3], immutable=True)]) sage: McF = c_cart.pullback(F, name='McF'); McF Subset McF of the 2-dimensional topological manifold R^2 sage: M((2, 3)) in McF True sage: M((0, 0)) in McF False
>>> from sage.all import * >>> F = Family([vector(QQ, [Integer(1), Integer(2)], immutable=True), ... vector(QQ, [Integer(2), Integer(3)], immutable=True)]) >>> McF = c_cart.pullback(F, name='McF'); McF Subset McF of the 2-dimensional topological manifold R^2 >>> M((Integer(2), Integer(3))) in McF True >>> M((Integer(0), Integer(0))) in McF False
F = Family([vector(QQ, [1, 2], immutable=True), vector(QQ, [2, 3], immutable=True)]) McF = c_cart.pullback(F, name='McF'); McF M((2, 3)) in McF M((0, 0)) in McF
Pulling back the integers:
sage: R = manifolds.RealLine(); R Real number line ℝ sage: McZ = R.canonical_chart().pullback(ZZ, name='ℤ'); McZ Subset ℤ of the Real number line ℝ sage: R((3/2,)) in McZ False sage: R((-2,)) in McZ True
>>> from sage.all import * >>> R = manifolds.RealLine(); R Real number line ℝ >>> McZ = R.canonical_chart().pullback(ZZ, name='ℤ'); McZ Subset ℤ of the Real number line ℝ >>> R((Integer(3)/Integer(2),)) in McZ False >>> R((-Integer(2),)) in McZ True
R = manifolds.RealLine(); R McZ = R.canonical_chart().pullback(ZZ, name='ℤ'); McZ R((3/2,)) in McZ R((-2,)) in McZ
- restrict(subset, restrictions=None)[source]¶
Return the restriction of
self
to some open subset of its domain.If the current chart is \((U,\varphi)\), a restriction (or subchart) is a chart \((V,\psi)\) such that \(V\subset U\) and \(\psi = \varphi |_V\).
If such subchart has not been defined yet, it is constructed here.
The coordinates of the subchart bare the same names as the coordinates of the current chart.
INPUT:
subset
– open subset \(V\) of the chart domain \(U\) (must be an instance ofTopologicalManifold
)restrictions
– (default:None
) list of coordinate restrictions defining the subset \(V\)
A restriction can be any symbolic equality or inequality involving the coordinates, such as
x > y
orx^2 + y^2 != 0
. The items of the listrestrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the listrestrictions
. For example:restrictions = [x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listrestrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
.OUTPUT:
chart \((V, \psi)\) as a
Chart
EXAMPLES:
Coordinates on the unit open ball of \(\CC^2\) as a subchart of the global coordinates of \(\CC^2\):
sage: M = Manifold(2, 'C^2', field='complex', structure='topological') sage: X.<z1, z2> = M.chart() sage: B = M.open_subset('B') sage: X_B = X.restrict(B, abs(z1)^2 + abs(z2)^2 < 1); X_B Chart (B, (z1, z2))
>>> from sage.all import * >>> M = Manifold(Integer(2), 'C^2', field='complex', structure='topological') >>> X = M.chart(names=('z1', 'z2',)); (z1, z2,) = X._first_ngens(2) >>> B = M.open_subset('B') >>> X_B = X.restrict(B, abs(z1)**Integer(2) + abs(z2)**Integer(2) < Integer(1)); X_B Chart (B, (z1, z2))
M = Manifold(2, 'C^2', field='complex', structure='topological') X.<z1, z2> = M.chart() B = M.open_subset('B') X_B = X.restrict(B, abs(z1)^2 + abs(z2)^2 < 1); X_B
- transition_map(other, transformations, intersection_name=None, restrictions1=None, restrictions2=None)[source]¶
Construct the transition map between the current chart, \((U, \varphi)\) say, and another one, \((V, \psi)\) say.
If \(n\) is the manifold’s dimension, the transition map is the map
\[\psi\circ\varphi^{-1}: \varphi(U\cap V) \subset K^n \rightarrow \psi(U\cap V) \subset K^n,\]where \(K\) is the manifold’s base field. In other words, the transition map expresses the coordinates \((y^1, \ldots, y^n)\) of \((V, \psi)\) in terms of the coordinates \((x^1, \ldots, x^n)\) of \((U, \varphi)\) on the open subset where the two charts intersect, i.e. on \(U \cap V\).
INPUT:
other
– the chart \((V, \psi)\)transformations
– tuple (or list) \((Y_1, \ldots, Y_n)\), where \(Y_i\) is the symbolic expression of the coordinate \(y^i\) in terms of the coordinates \((x^1, \ldots, x^n)\)intersection_name
– (default:None
) name to be given to the subset \(U \cap V\) if the latter differs from \(U\) or \(V\)restrictions1
– (default:None
) list of conditions on the coordinates of the current chart that define \(U \cap V\) if the latter differs from \(U\)restrictions2
– (default:None
) list of conditions on the coordinates of the chart \((V,\psi)\) that define \(U \cap V\) if the latter differs from \(V\)
A restriction can be any symbolic equality or inequality involving the coordinates, such as
x > y
orx^2 + y^2 != 0
. The items of the listrestrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the listrestrictions
. For example:restrictions = [x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listrestrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
.OUTPUT:
the transition map \(\psi \circ \varphi^{-1}\) defined on \(U \cap V\) as a
CoordChange
EXAMPLES:
Transition map between two stereographic charts on the circle \(S^1\):
sage: M = Manifold(1, 'S^1', structure='topological') sage: U = M.open_subset('U') # Complement of the North pole sage: cU.<x> = U.chart() # Stereographic chart from the North pole sage: V = M.open_subset('V') # Complement of the South pole sage: cV.<y> = V.chart() # Stereographic chart from the South pole sage: M.declare_union(U,V) # S^1 is the union of U and V sage: trans = cU.transition_map(cV, 1/x, intersection_name='W', ....: restrictions1= x!=0, restrictions2 = y!=0) sage: trans Change of coordinates from Chart (W, (x,)) to Chart (W, (y,)) sage: trans.display() y = 1/x
>>> from sage.all import * >>> M = Manifold(Integer(1), 'S^1', structure='topological') >>> U = M.open_subset('U') # Complement of the North pole >>> cU = U.chart(names=('x',)); (x,) = cU._first_ngens(1)# Stereographic chart from the North pole >>> V = M.open_subset('V') # Complement of the South pole >>> cV = V.chart(names=('y',)); (y,) = cV._first_ngens(1)# Stereographic chart from the South pole >>> M.declare_union(U,V) # S^1 is the union of U and V >>> trans = cU.transition_map(cV, Integer(1)/x, intersection_name='W', ... restrictions1= x!=Integer(0), restrictions2 = y!=Integer(0)) >>> trans Change of coordinates from Chart (W, (x,)) to Chart (W, (y,)) >>> trans.display() y = 1/x
M = Manifold(1, 'S^1', structure='topological') U = M.open_subset('U') # Complement of the North pole cU.<x> = U.chart() # Stereographic chart from the North pole V = M.open_subset('V') # Complement of the South pole cV.<y> = V.chart() # Stereographic chart from the South pole M.declare_union(U,V) # S^1 is the union of U and V trans = cU.transition_map(cV, 1/x, intersection_name='W', restrictions1= x!=0, restrictions2 = y!=0) trans trans.display()
The subset \(W\), intersection of \(U\) and \(V\), has been created by
transition_map()
:sage: F = M.subset_family(); F Set {S^1, U, V, W} of open subsets of the 1-dimensional topological manifold S^1 sage: W = F['W'] sage: W is U.intersection(V) True sage: M.atlas() [Chart (U, (x,)), Chart (V, (y,)), Chart (W, (x,)), Chart (W, (y,))]
>>> from sage.all import * >>> F = M.subset_family(); F Set {S^1, U, V, W} of open subsets of the 1-dimensional topological manifold S^1 >>> W = F['W'] >>> W is U.intersection(V) True >>> M.atlas() [Chart (U, (x,)), Chart (V, (y,)), Chart (W, (x,)), Chart (W, (y,))]
F = M.subset_family(); F W = F['W'] W is U.intersection(V) M.atlas()
Transition map between the spherical chart and the Cartesian one on \(\RR^2\):
sage: M = Manifold(2, 'R^2', structure='topological') sage: c_cart.<x,y> = M.chart() sage: U = M.open_subset('U') # the complement of the half line {y=0, x >= 0} sage: c_spher.<r,phi> = U.chart(r'r:(0,+oo) phi:(0,2*pi):\phi') sage: trans = c_spher.transition_map(c_cart, (r*cos(phi), r*sin(phi)), ....: restrictions2=(y!=0, x<0)) sage: trans Change of coordinates from Chart (U, (r, phi)) to Chart (U, (x, y)) sage: trans.display() x = r*cos(phi) y = r*sin(phi)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> c_cart = M.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2) >>> U = M.open_subset('U') # the complement of the half line {y=0, x >= 0} >>> c_spher = U.chart(r'r:(0,+oo) phi:(0,2*pi):\phi', names=('r', 'phi',)); (r, phi,) = c_spher._first_ngens(2) >>> trans = c_spher.transition_map(c_cart, (r*cos(phi), r*sin(phi)), ... restrictions2=(y!=Integer(0), x<Integer(0))) >>> trans Change of coordinates from Chart (U, (r, phi)) to Chart (U, (x, y)) >>> trans.display() x = r*cos(phi) y = r*sin(phi)
M = Manifold(2, 'R^2', structure='topological') c_cart.<x,y> = M.chart() U = M.open_subset('U') # the complement of the half line {y=0, x >= 0} c_spher.<r,phi> = U.chart(r'r:(0,+oo) phi:(0,2*pi):\phi') trans = c_spher.transition_map(c_cart, (r*cos(phi), r*sin(phi)), restrictions2=(y!=0, x<0)) trans trans.display()
In this case, no new subset has been created since \(U \cap M = U\):
sage: M.subset_family() Set {R^2, U} of open subsets of the 2-dimensional topological manifold R^2
>>> from sage.all import * >>> M.subset_family() Set {R^2, U} of open subsets of the 2-dimensional topological manifold R^2
M.subset_family()
but a new chart has been created: \((U, (x, y))\):
sage: M.atlas() [Chart (R^2, (x, y)), Chart (U, (r, phi)), Chart (U, (x, y))]
>>> from sage.all import * >>> M.atlas() [Chart (R^2, (x, y)), Chart (U, (r, phi)), Chart (U, (x, y))]
M.atlas()
- valid_coordinates(*coordinates, **kwds)[source]¶
Check whether a tuple of coordinates can be the coordinates of a point in the chart domain.
INPUT:
*coordinates
– coordinate values**kwds
– options:parameters=None
, dictionary to set numerical values to some parameters (see example below)
OUTPUT:
True
if the coordinate values are admissible in the chart image,False
otherwise
EXAMPLES:
sage: M = Manifold(2, 'M', field='complex', structure='topological') sage: X.<x,y> = M.chart(coord_restrictions=lambda x,y: [abs(x)<1, y!=0]) sage: X.valid_coordinates(0, i) True sage: X.valid_coordinates(i, 1) False sage: X.valid_coordinates(i/2, 1) True sage: X.valid_coordinates(i/2, 0) False sage: X.valid_coordinates(2, 0) False
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', field='complex', structure='topological') >>> X = M.chart(coord_restrictions=lambda x,y: [abs(x)<Integer(1), y!=Integer(0)], names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.valid_coordinates(Integer(0), i) True >>> X.valid_coordinates(i, Integer(1)) False >>> X.valid_coordinates(i/Integer(2), Integer(1)) True >>> X.valid_coordinates(i/Integer(2), Integer(0)) False >>> X.valid_coordinates(Integer(2), Integer(0)) False
M = Manifold(2, 'M', field='complex', structure='topological') X.<x,y> = M.chart(coord_restrictions=lambda x,y: [abs(x)<1, y!=0]) X.valid_coordinates(0, i) X.valid_coordinates(i, 1) X.valid_coordinates(i/2, 1) X.valid_coordinates(i/2, 0) X.valid_coordinates(2, 0)
Example of use with the keyword
parameters
to set a specific value to a parameter appearing in the coordinate restrictions:sage: var('a') # the parameter is a symbolic variable a sage: Y.<u,v> = M.chart(coord_restrictions=lambda u,v: abs(v)<a) sage: Y.valid_coordinates(1, i, parameters={a: 2}) # setting a=2 True sage: Y.valid_coordinates(1, 2*i, parameters={a: 2}) False
>>> from sage.all import * >>> var('a') # the parameter is a symbolic variable a >>> Y = M.chart(coord_restrictions=lambda u,v: abs(v)<a, names=('u', 'v',)); (u, v,) = Y._first_ngens(2) >>> Y.valid_coordinates(Integer(1), i, parameters={a: Integer(2)}) # setting a=2 True >>> Y.valid_coordinates(Integer(1), Integer(2)*i, parameters={a: Integer(2)}) False
var('a') # the parameter is a symbolic variable Y.<u,v> = M.chart(coord_restrictions=lambda u,v: abs(v)<a) Y.valid_coordinates(1, i, parameters={a: 2}) # setting a=2 Y.valid_coordinates(1, 2*i, parameters={a: 2})
- zero_function()[source]¶
Return the zero function of the coordinates.
If the current chart belongs to the atlas of a \(n\)-dimensional manifold over a topological field \(K\), the zero coordinate function is the map
\[\begin{split}\begin{array}{cccc} f:& V\subset K^n & \longrightarrow & K \\ & (x^1,\ldots, x^n) & \longmapsto & 0, \end{array}\end{split}\]where \(V\) is the chart codomain.
See class
ChartFunction
for a complete documentation.OUTPUT:
a
ChartFunction
representing the zero coordinate function \(f\)
EXAMPLES:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.zero_function() 0 sage: X.zero_function().display() (x, y) ↦ 0 sage: type(X.zero_function()) <class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'>
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.zero_function() 0 >>> X.zero_function().display() (x, y) ↦ 0 >>> type(X.zero_function()) <class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'>
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.zero_function() X.zero_function().display() type(X.zero_function())
The result is cached:
sage: X.zero_function() is X.zero_function() True
>>> from sage.all import * >>> X.zero_function() is X.zero_function() True
X.zero_function() is X.zero_function()
Zero function on a \(p\)-adic manifold:
sage: # needs sage.rings.padics sage: M = Manifold(2, 'M', structure='topological', field=Qp(5)); M 2-dimensional topological manifold M over the 5-adic Field with capped relative precision 20 sage: X.<x,y> = M.chart() sage: X.zero_function() 0 sage: X.zero_function().display() (x, y) ↦ 0
>>> from sage.all import * >>> # needs sage.rings.padics >>> M = Manifold(Integer(2), 'M', structure='topological', field=Qp(Integer(5))); M 2-dimensional topological manifold M over the 5-adic Field with capped relative precision 20 >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.zero_function() 0 >>> X.zero_function().display() (x, y) ↦ 0
# needs sage.rings.padics M = Manifold(2, 'M', structure='topological', field=Qp(5)); M X.<x,y> = M.chart() X.zero_function() X.zero_function().display()
- class sage.manifolds.chart.CoordChange(chart1, chart2, *transformations)[source]¶
Bases:
SageObject
Transition map between two charts of a topological manifold.
Giving two coordinate charts \((U, \varphi)\) and \((V, \psi)\) on a topological manifold \(M\) of dimension \(n\) over a topological field \(K\), the transition map from \((U, \varphi)\) to \((V, \psi)\) is the map
\[\psi\circ\varphi^{-1}: \varphi(U\cap V) \subset K^n \rightarrow \psi(U\cap V) \subset K^n.\]In other words, the transition map \(\psi \circ \varphi^{-1}\) expresses the coordinates \((y^1, \ldots, y^n)\) of \((V, \psi)\) in terms of the coordinates \((x^1, \ldots, x^n)\) of \((U, \varphi)\) on the open subset where the two charts intersect, i.e. on \(U \cap V\).
INPUT:
chart1
– chart \((U, \varphi)\)chart2
– chart \((V, \psi)\)transformations
– tuple (or list) \((Y_1, \ldots, Y_2)\), where \(Y_i\) is the symbolic expression of the coordinate \(y^i\) in terms of the coordinates \((x^1, \ldots, x^n)\)
EXAMPLES:
Transition map on a 2-dimensional topological manifold:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: Y.<u,v> = M.chart() sage: X_to_Y = X.transition_map(Y, [x+y, x-y]) sage: X_to_Y Change of coordinates from Chart (M, (x, y)) to Chart (M, (u, v)) sage: type(X_to_Y) <class 'sage.manifolds.chart.CoordChange'> sage: X_to_Y.display() u = x + y v = x - y
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> Y = M.chart(names=('u', 'v',)); (u, v,) = Y._first_ngens(2) >>> X_to_Y = X.transition_map(Y, [x+y, x-y]) >>> X_to_Y Change of coordinates from Chart (M, (x, y)) to Chart (M, (u, v)) >>> type(X_to_Y) <class 'sage.manifolds.chart.CoordChange'> >>> X_to_Y.display() u = x + y v = x - y
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() Y.<u,v> = M.chart() X_to_Y = X.transition_map(Y, [x+y, x-y]) X_to_Y type(X_to_Y) X_to_Y.display()
- disp()[source]¶
Display of the coordinate transformation.
The output is either text-formatted (console mode) or LaTeX-formatted (notebook mode).
EXAMPLES:
From spherical coordinates to Cartesian ones in the plane:
sage: M = Manifold(2, 'R^2', structure='topological') sage: U = M.open_subset('U') # the complement of the half line {y=0, x>= 0} sage: c_cart.<x,y> = U.chart() sage: c_spher.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') sage: spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) sage: spher_to_cart.display() x = r*cos(ph) y = r*sin(ph) sage: latex(spher_to_cart.display()) \left\{\begin{array}{lcl} x & = & r \cos\left({\phi}\right) \\ y & = & r \sin\left({\phi}\right) \end{array}\right.
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> U = M.open_subset('U') # the complement of the half line {y=0, x>= 0} >>> c_cart = U.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2) >>> c_spher = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi', names=('r', 'ph',)); (r, ph,) = c_spher._first_ngens(2) >>> spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) >>> spher_to_cart.display() x = r*cos(ph) y = r*sin(ph) >>> latex(spher_to_cart.display()) \left\{\begin{array}{lcl} x & = & r \cos\left({\phi}\right) \\ y & = & r \sin\left({\phi}\right) \end{array}\right.
M = Manifold(2, 'R^2', structure='topological') U = M.open_subset('U') # the complement of the half line {y=0, x>= 0} c_cart.<x,y> = U.chart() c_spher.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) spher_to_cart.display() latex(spher_to_cart.display())
A shortcut is
disp()
:sage: spher_to_cart.disp() x = r*cos(ph) y = r*sin(ph)
>>> from sage.all import * >>> spher_to_cart.disp() x = r*cos(ph) y = r*sin(ph)
spher_to_cart.disp()
- display()[source]¶
Display of the coordinate transformation.
The output is either text-formatted (console mode) or LaTeX-formatted (notebook mode).
EXAMPLES:
From spherical coordinates to Cartesian ones in the plane:
sage: M = Manifold(2, 'R^2', structure='topological') sage: U = M.open_subset('U') # the complement of the half line {y=0, x>= 0} sage: c_cart.<x,y> = U.chart() sage: c_spher.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') sage: spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) sage: spher_to_cart.display() x = r*cos(ph) y = r*sin(ph) sage: latex(spher_to_cart.display()) \left\{\begin{array}{lcl} x & = & r \cos\left({\phi}\right) \\ y & = & r \sin\left({\phi}\right) \end{array}\right.
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> U = M.open_subset('U') # the complement of the half line {y=0, x>= 0} >>> c_cart = U.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2) >>> c_spher = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi', names=('r', 'ph',)); (r, ph,) = c_spher._first_ngens(2) >>> spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) >>> spher_to_cart.display() x = r*cos(ph) y = r*sin(ph) >>> latex(spher_to_cart.display()) \left\{\begin{array}{lcl} x & = & r \cos\left({\phi}\right) \\ y & = & r \sin\left({\phi}\right) \end{array}\right.
M = Manifold(2, 'R^2', structure='topological') U = M.open_subset('U') # the complement of the half line {y=0, x>= 0} c_cart.<x,y> = U.chart() c_spher.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) spher_to_cart.display() latex(spher_to_cart.display())
A shortcut is
disp()
:sage: spher_to_cart.disp() x = r*cos(ph) y = r*sin(ph)
>>> from sage.all import * >>> spher_to_cart.disp() x = r*cos(ph) y = r*sin(ph)
spher_to_cart.disp()
- inverse()[source]¶
Return the inverse coordinate transformation.
If the inverse is not already known, it is computed here. If the computation fails, the inverse can be set by hand via the method
set_inverse()
.OUTPUT:
an instance of
CoordChange
representing the inverse of the current coordinate transformation
EXAMPLES:
Inverse of a coordinate transformation corresponding to a rotation in the Cartesian plane:
sage: M = Manifold(2, 'M', structure='topological') sage: c_xy.<x,y> = M.chart() sage: c_uv.<u,v> = M.chart() sage: phi = var('phi', domain='real') sage: xy_to_uv = c_xy.transition_map(c_uv, ....: [cos(phi)*x + sin(phi)*y, ....: -sin(phi)*x + cos(phi)*y]) sage: M.coord_changes() {(Chart (M, (x, y)), Chart (M, (u, v))): Change of coordinates from Chart (M, (x, y)) to Chart (M, (u, v))} sage: uv_to_xy = xy_to_uv.inverse(); uv_to_xy Change of coordinates from Chart (M, (u, v)) to Chart (M, (x, y)) sage: uv_to_xy.display() x = u*cos(phi) - v*sin(phi) y = v*cos(phi) + u*sin(phi) sage: M.coord_changes() # random (dictionary output) {(Chart (M, (u, v)), Chart (M, (x, y))): Change of coordinates from Chart (M, (u, v)) to Chart (M, (x, y)), (Chart (M, (x, y)), Chart (M, (u, v))): Change of coordinates from Chart (M, (x, y)) to Chart (M, (u, v))}
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> c_xy = M.chart(names=('x', 'y',)); (x, y,) = c_xy._first_ngens(2) >>> c_uv = M.chart(names=('u', 'v',)); (u, v,) = c_uv._first_ngens(2) >>> phi = var('phi', domain='real') >>> xy_to_uv = c_xy.transition_map(c_uv, ... [cos(phi)*x + sin(phi)*y, ... -sin(phi)*x + cos(phi)*y]) >>> M.coord_changes() {(Chart (M, (x, y)), Chart (M, (u, v))): Change of coordinates from Chart (M, (x, y)) to Chart (M, (u, v))} >>> uv_to_xy = xy_to_uv.inverse(); uv_to_xy Change of coordinates from Chart (M, (u, v)) to Chart (M, (x, y)) >>> uv_to_xy.display() x = u*cos(phi) - v*sin(phi) y = v*cos(phi) + u*sin(phi) >>> M.coord_changes() # random (dictionary output) {(Chart (M, (u, v)), Chart (M, (x, y))): Change of coordinates from Chart (M, (u, v)) to Chart (M, (x, y)), (Chart (M, (x, y)), Chart (M, (u, v))): Change of coordinates from Chart (M, (x, y)) to Chart (M, (u, v))}
M = Manifold(2, 'M', structure='topological') c_xy.<x,y> = M.chart() c_uv.<u,v> = M.chart() phi = var('phi', domain='real') xy_to_uv = c_xy.transition_map(c_uv, [cos(phi)*x + sin(phi)*y, -sin(phi)*x + cos(phi)*y]) M.coord_changes() uv_to_xy = xy_to_uv.inverse(); uv_to_xy uv_to_xy.display() M.coord_changes() # random (dictionary output)
The result is cached:
sage: xy_to_uv.inverse() is uv_to_xy True
>>> from sage.all import * >>> xy_to_uv.inverse() is uv_to_xy True
xy_to_uv.inverse() is uv_to_xy
We have as well:
sage: uv_to_xy.inverse() is xy_to_uv True
>>> from sage.all import * >>> uv_to_xy.inverse() is xy_to_uv True
uv_to_xy.inverse() is xy_to_uv
- restrict(dom1, dom2=None)[source]¶
Restriction to subsets.
INPUT:
dom1
– open subset of the domain ofchart1
dom2
– (default:None
) open subset of the domain ofchart2
; ifNone
,dom1
is assumed
OUTPUT:
the transition map between the charts restricted to the specified subsets
EXAMPLES:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: Y.<u,v> = M.chart() sage: X_to_Y = X.transition_map(Y, [x+y, x-y]) sage: U = M.open_subset('U', coord_def={X: x>0, Y: u+v>0}) sage: X_to_Y_U = X_to_Y.restrict(U); X_to_Y_U Change of coordinates from Chart (U, (x, y)) to Chart (U, (u, v)) sage: X_to_Y_U.display() u = x + y v = x - y
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> Y = M.chart(names=('u', 'v',)); (u, v,) = Y._first_ngens(2) >>> X_to_Y = X.transition_map(Y, [x+y, x-y]) >>> U = M.open_subset('U', coord_def={X: x>Integer(0), Y: u+v>Integer(0)}) >>> X_to_Y_U = X_to_Y.restrict(U); X_to_Y_U Change of coordinates from Chart (U, (x, y)) to Chart (U, (u, v)) >>> X_to_Y_U.display() u = x + y v = x - y
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() Y.<u,v> = M.chart() X_to_Y = X.transition_map(Y, [x+y, x-y]) U = M.open_subset('U', coord_def={X: x>0, Y: u+v>0}) X_to_Y_U = X_to_Y.restrict(U); X_to_Y_U X_to_Y_U.display()
The result is cached:
sage: X_to_Y.restrict(U) is X_to_Y_U True
>>> from sage.all import * >>> X_to_Y.restrict(U) is X_to_Y_U True
X_to_Y.restrict(U) is X_to_Y_U
- set_inverse(*transformations, **kwds)[source]¶
Set the inverse of the coordinate transformation.
This is useful when the automatic computation via
inverse()
fails.INPUT:
transformations
– the inverse transformations expressed as a list of the expressions of the “old” coordinates in terms of the “new” oneskwds
– optional arguments; valid keywords arecheck
– boolean (default:True
); whether the provided transformations are checked to be indeed the inverse coordinate transformationsverbose
– boolean (default:False
); whether some details of the check are printed out; ifFalse
, no output is printed if the check is passed (see example below)
EXAMPLES:
From spherical coordinates to Cartesian ones in the plane:
sage: M = Manifold(2, 'R^2', structure='topological') sage: U = M.open_subset('U') # complement of the half line {y=0, x>= 0} sage: c_cart.<x,y> = U.chart() sage: c_spher.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') sage: spher_to_cart = c_spher.transition_map(c_cart, ....: [r*cos(ph), r*sin(ph)]) sage: spher_to_cart.set_inverse(sqrt(x^2+y^2), atan2(y,x)) Check of the inverse coordinate transformation: r == r *passed* ph == arctan2(r*sin(ph), r*cos(ph)) **failed** x == x *passed* y == y *passed* NB: a failed report can reflect a mere lack of simplification.
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> U = M.open_subset('U') # complement of the half line {y=0, x>= 0} >>> c_cart = U.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2) >>> c_spher = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi', names=('r', 'ph',)); (r, ph,) = c_spher._first_ngens(2) >>> spher_to_cart = c_spher.transition_map(c_cart, ... [r*cos(ph), r*sin(ph)]) >>> spher_to_cart.set_inverse(sqrt(x**Integer(2)+y**Integer(2)), atan2(y,x)) Check of the inverse coordinate transformation: r == r *passed* ph == arctan2(r*sin(ph), r*cos(ph)) **failed** x == x *passed* y == y *passed* NB: a failed report can reflect a mere lack of simplification.
M = Manifold(2, 'R^2', structure='topological') U = M.open_subset('U') # complement of the half line {y=0, x>= 0} c_cart.<x,y> = U.chart() c_spher.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') spher_to_cart = c_spher.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) spher_to_cart.set_inverse(sqrt(x^2+y^2), atan2(y,x))
As indicated, the failure for
ph
is due to a lack of simplification of thearctan2
term, not to any error in the provided inverse formulas.We have now:
sage: spher_to_cart.inverse() Change of coordinates from Chart (U, (x, y)) to Chart (U, (r, ph)) sage: spher_to_cart.inverse().display() r = sqrt(x^2 + y^2) ph = arctan2(y, x) sage: M.coord_changes() # random (dictionary output) {(Chart (U, (r, ph)), Chart (U, (x, y))): Change of coordinates from Chart (U, (r, ph)) to Chart (U, (x, y)), (Chart (U, (x, y)), Chart (U, (r, ph))): Change of coordinates from Chart (U, (x, y)) to Chart (U, (r, ph))}
>>> from sage.all import * >>> spher_to_cart.inverse() Change of coordinates from Chart (U, (x, y)) to Chart (U, (r, ph)) >>> spher_to_cart.inverse().display() r = sqrt(x^2 + y^2) ph = arctan2(y, x) >>> M.coord_changes() # random (dictionary output) {(Chart (U, (r, ph)), Chart (U, (x, y))): Change of coordinates from Chart (U, (r, ph)) to Chart (U, (x, y)), (Chart (U, (x, y)), Chart (U, (r, ph))): Change of coordinates from Chart (U, (x, y)) to Chart (U, (r, ph))}
spher_to_cart.inverse() spher_to_cart.inverse().display() M.coord_changes() # random (dictionary output)
One can suppress the check of the provided formulas by means of the optional argument
check=False
:sage: spher_to_cart.set_inverse(sqrt(x^2+y^2), atan2(y,x), ....: check=False)
>>> from sage.all import * >>> spher_to_cart.set_inverse(sqrt(x**Integer(2)+y**Integer(2)), atan2(y,x), ... check=False)
spher_to_cart.set_inverse(sqrt(x^2+y^2), atan2(y,x), check=False)
However, it is not recommended to do so, the check being (obviously) useful to avoid some mistake. For instance, if the term
sqrt(x^2+y^2)
contains a typo (x^3
instead ofx^2
), we get:sage: spher_to_cart.set_inverse(sqrt(x^3+y^2), atan2(y,x)) Check of the inverse coordinate transformation: r == sqrt(r*cos(ph)^3 + sin(ph)^2)*r **failed** ph == arctan2(r*sin(ph), r*cos(ph)) **failed** x == sqrt(x^3 + y^2)*x/sqrt(x^2 + y^2) **failed** y == sqrt(x^3 + y^2)*y/sqrt(x^2 + y^2) **failed** NB: a failed report can reflect a mere lack of simplification.
>>> from sage.all import * >>> spher_to_cart.set_inverse(sqrt(x**Integer(3)+y**Integer(2)), atan2(y,x)) Check of the inverse coordinate transformation: r == sqrt(r*cos(ph)^3 + sin(ph)^2)*r **failed** ph == arctan2(r*sin(ph), r*cos(ph)) **failed** x == sqrt(x^3 + y^2)*x/sqrt(x^2 + y^2) **failed** y == sqrt(x^3 + y^2)*y/sqrt(x^2 + y^2) **failed** NB: a failed report can reflect a mere lack of simplification.
spher_to_cart.set_inverse(sqrt(x^3+y^2), atan2(y,x))
If the check is passed, no output is printed out:
sage: M = Manifold(2, 'M') sage: X1.<x,y> = M.chart() sage: X2.<u,v> = M.chart() sage: X1_to_X2 = X1.transition_map(X2, [x+y, x-y]) sage: X1_to_X2.set_inverse((u+v)/2, (u-v)/2)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M') >>> X1 = M.chart(names=('x', 'y',)); (x, y,) = X1._first_ngens(2) >>> X2 = M.chart(names=('u', 'v',)); (u, v,) = X2._first_ngens(2) >>> X1_to_X2 = X1.transition_map(X2, [x+y, x-y]) >>> X1_to_X2.set_inverse((u+v)/Integer(2), (u-v)/Integer(2))
M = Manifold(2, 'M') X1.<x,y> = M.chart() X2.<u,v> = M.chart() X1_to_X2 = X1.transition_map(X2, [x+y, x-y]) X1_to_X2.set_inverse((u+v)/2, (u-v)/2)
unless the option
verbose
is set toTrue
:sage: X1_to_X2.set_inverse((u+v)/2, (u-v)/2, verbose=True) Check of the inverse coordinate transformation: x == x *passed* y == y *passed* u == u *passed* v == v *passed*
>>> from sage.all import * >>> X1_to_X2.set_inverse((u+v)/Integer(2), (u-v)/Integer(2), verbose=True) Check of the inverse coordinate transformation: x == x *passed* y == y *passed* u == u *passed* v == v *passed*
X1_to_X2.set_inverse((u+v)/2, (u-v)/2, verbose=True)
- class sage.manifolds.chart.RealChart(domain, coordinates, calc_method=None, bounds=None, periods=None, coord_restrictions=None)[source]¶
Bases:
Chart
Chart on a topological manifold over \(\RR\).
Given a topological manifold \(M\) of dimension \(n\) over \(\RR\), a chart on \(M\) is a pair \((U,\varphi)\), where \(U\) is an open subset of \(M\) and \(\varphi : U \to V \subset \RR^n\) is a homeomorphism from \(U\) to an open subset \(V\) of \(\RR^n\).
The components \((x^1, \ldots, x^n)\) of \(\varphi\), defined by \(\varphi(p) = (x^1(p), \ldots, x^n(p))\in \RR^n\) for any point \(p \in U\), are called the coordinates of the chart \((U, \varphi)\).
INPUT:
domain
– open subset \(U\) on which the chart is definedcoordinates
– (default: ‘’ (empty string)) single string defining the coordinate symbols, with' '
(whitespace) as a separator; each item has at most four fields, separated by a colon (:
):the coordinate symbol (a letter or a few letters)
(optional) the interval \(I\) defining the coordinate range: if not provided, the coordinate is assumed to span all \(\RR\); otherwise \(I\) must be provided in the form
(a,b)
(or equivalently]a,b[
); the boundsa
andb
can be+/-Infinity
,Inf
,infinity
,inf
oroo
; for singular coordinates, non-open intervals such as[a,b]
and(a,b]
(or equivalently]a,b]
) are allowed; note that the interval declaration must not contain any whitespace(optional) indicator of the periodic character of the coordinate, either as
period=T
, whereT
is the period, or as the keywordperiodic
(the value of the period is then deduced from the interval \(I\) declared in field 2; see examples below)(optional) the LaTeX spelling of the coordinate; if not provided the coordinate symbol given in the first field will be used
The order of fields 2 to 4 does not matter and each of them can be omitted. If it contains any LaTeX expression, the string
coordinates
must be declared with the prefix ‘r’ (for “raw”) to allow for a proper treatment of LaTeX’s backslash character (see examples below). If interval range, no period and no LaTeX spelling are to be set for any coordinate, the argumentcoordinates
can be omitted when the shortcut operator<,>
is used to declare the chart (see examples below).calc_method
– (default:None
) string defining the calculus method for computations involving coordinates of the chart; must be one of'SR'
: Sage’s default symbolic engine (Symbolic Ring)'sympy'
: SymPyNone
: the default ofCalculusMethod
will be used
names
– (default:None
) unused argument, except ifcoordinates
is not provided; it must then be a tuple containing the coordinate symbols (this is guaranteed if the shortcut operator<,>
is used)coord_restrictions
– additional restrictions on the coordinates. A restriction can be any symbolic equality or inequality involving the coordinates, such asx > y
orx^2 + y^2 != 0
. The items of the list (or set or frozenset)coord_restrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the list (or set or frozenset)coord_restrictions
. For example:coord_restrictions=[x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listcoord_restrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
. If the chart variables have not been declared as variables yet,coord_restrictions
must belambda
-quoted.
EXAMPLES:
Cartesian coordinates on \(\RR^3\):
sage: M = Manifold(3, 'R^3', r'\RR^3', structure='topological', ....: start_index=1) sage: c_cart = M.chart('x y z'); c_cart Chart (R^3, (x, y, z)) sage: type(c_cart) <class 'sage.manifolds.chart.RealChart'>
>>> from sage.all import * >>> M = Manifold(Integer(3), 'R^3', r'\RR^3', structure='topological', ... start_index=Integer(1)) >>> c_cart = M.chart('x y z'); c_cart Chart (R^3, (x, y, z)) >>> type(c_cart) <class 'sage.manifolds.chart.RealChart'>
M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) c_cart = M.chart('x y z'); c_cart type(c_cart)
To have the coordinates accessible as global variables, one has to set:
sage: (x,y,z) = c_cart[:]
>>> from sage.all import * >>> (x,y,z) = c_cart[:]
(x,y,z) = c_cart[:]
However, a shortcut is to use the declarator
<x,y,z>
in the left-hand side of the chart declaration (there is then no need to pass the string'x y z'
tochart()
):sage: M = Manifold(3, 'R^3', r'\RR^3', structure='topological', ....: start_index=1) sage: c_cart.<x,y,z> = M.chart(); c_cart Chart (R^3, (x, y, z))
>>> from sage.all import * >>> M = Manifold(Integer(3), 'R^3', r'\RR^3', structure='topological', ... start_index=Integer(1)) >>> c_cart = M.chart(names=('x', 'y', 'z',)); (x, y, z,) = c_cart._first_ngens(3); c_cart Chart (R^3, (x, y, z))
M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) c_cart.<x,y,z> = M.chart(); c_cart
The coordinates are then immediately accessible:
sage: y y sage: y is c_cart[2] True
>>> from sage.all import * >>> y y >>> y is c_cart[Integer(2)] True
y y is c_cart[2]
Note that
x, y, z
declared in<x,y,z>
are mere Python variable names and do not have to coincide with the coordinate symbols; for instance, one may write:sage: M = Manifold(3, 'R^3', r'\RR^3', structure='topological', ....: start_index=1) sage: c_cart.<x1,y1,z1> = M.chart('x y z'); c_cart Chart (R^3, (x, y, z))
>>> from sage.all import * >>> M = Manifold(Integer(3), 'R^3', r'\RR^3', structure='topological', ... start_index=Integer(1)) >>> c_cart = M.chart('x y z', names=('x1', 'y1', 'z1',)); (x1, y1, z1,) = c_cart._first_ngens(3); c_cart Chart (R^3, (x, y, z))
M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) c_cart.<x1,y1,z1> = M.chart('x y z'); c_cart
Then
y
is not known as a global variable and the coordinate \(y\) is accessible only through the global variabley1
:sage: y1 y sage: y1 is c_cart[2] True
>>> from sage.all import * >>> y1 y >>> y1 is c_cart[Integer(2)] True
y1 y1 is c_cart[2]
However, having the name of the Python variable coincide with the coordinate symbol is quite convenient; so it is recommended to declare:
sage: forget() # for doctests only sage: M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) sage: c_cart.<x,y,z> = M.chart()
>>> from sage.all import * >>> forget() # for doctests only >>> M = Manifold(Integer(3), 'R^3', r'\RR^3', structure='topological', start_index=Integer(1)) >>> c_cart = M.chart(names=('x', 'y', 'z',)); (x, y, z,) = c_cart._first_ngens(3)
forget() # for doctests only M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) c_cart.<x,y,z> = M.chart()
Spherical coordinates on the subset \(U\) of \(\RR^3\) that is the complement of the half-plane \(\{y=0, x \geq 0\}\):
sage: U = M.open_subset('U') sage: c_spher.<r,th,ph> = U.chart(r'r:(0,+oo) th:(0,pi):\theta ph:(0,2*pi):\phi') sage: c_spher Chart (U, (r, th, ph))
>>> from sage.all import * >>> U = M.open_subset('U') >>> c_spher = U.chart(r'r:(0,+oo) th:(0,pi):\theta ph:(0,2*pi):\phi', names=('r', 'th', 'ph',)); (r, th, ph,) = c_spher._first_ngens(3) >>> c_spher Chart (U, (r, th, ph))
U = M.open_subset('U') c_spher.<r,th,ph> = U.chart(r'r:(0,+oo) th:(0,pi):\theta ph:(0,2*pi):\phi') c_spher
Note the prefix ‘r’ for the string defining the coordinates in the arguments of
chart
.Coordinates are Sage symbolic variables (see
sage.symbolic.expression
):sage: type(th) <class 'sage.symbolic.expression.Expression'> sage: latex(th) {\theta} sage: assumptions(th) [th is real, th > 0, th < pi]
>>> from sage.all import * >>> type(th) <class 'sage.symbolic.expression.Expression'> >>> latex(th) {\theta} >>> assumptions(th) [th is real, th > 0, th < pi]
type(th) latex(th) assumptions(th)
Coordinate are also accessible by their indices:
sage: x1 = c_spher[1]; x2 = c_spher[2]; x3 = c_spher[3] sage: [x1, x2, x3] [r, th, ph] sage: (x1, x2, x3) == (r, th, ph) True
>>> from sage.all import * >>> x1 = c_spher[Integer(1)]; x2 = c_spher[Integer(2)]; x3 = c_spher[Integer(3)] >>> [x1, x2, x3] [r, th, ph] >>> (x1, x2, x3) == (r, th, ph) True
x1 = c_spher[1]; x2 = c_spher[2]; x3 = c_spher[3] [x1, x2, x3] (x1, x2, x3) == (r, th, ph)
The full set of coordinates is obtained by means of the slice
[:]
:sage: c_cart[:] (x, y, z) sage: c_spher[:] (r, th, ph)
>>> from sage.all import * >>> c_cart[:] (x, y, z) >>> c_spher[:] (r, th, ph)
c_cart[:] c_spher[:]
Let us check that the declared coordinate ranges have been taken into account:
sage: c_cart.coord_range() x: (-oo, +oo); y: (-oo, +oo); z: (-oo, +oo) sage: c_spher.coord_range() r: (0, +oo); th: (0, pi); ph: (0, 2*pi) sage: bool(th>0 and th<pi) True sage: assumptions() # list all current symbolic assumptions [x is real, y is real, z is real, r is real, r > 0, th is real, th > 0, th < pi, ph is real, ph > 0, ph < 2*pi]
>>> from sage.all import * >>> c_cart.coord_range() x: (-oo, +oo); y: (-oo, +oo); z: (-oo, +oo) >>> c_spher.coord_range() r: (0, +oo); th: (0, pi); ph: (0, 2*pi) >>> bool(th>Integer(0) and th<pi) True >>> assumptions() # list all current symbolic assumptions [x is real, y is real, z is real, r is real, r > 0, th is real, th > 0, th < pi, ph is real, ph > 0, ph < 2*pi]
c_cart.coord_range() c_spher.coord_range() bool(th>0 and th<pi) assumptions() # list all current symbolic assumptions
The coordinate ranges are used for simplifications:
sage: simplify(abs(r)) # r has been declared to lie in the interval (0,+oo) r sage: simplify(abs(x)) # no positive range has been declared for x abs(x)
>>> from sage.all import * >>> simplify(abs(r)) # r has been declared to lie in the interval (0,+oo) r >>> simplify(abs(x)) # no positive range has been declared for x abs(x)
simplify(abs(r)) # r has been declared to lie in the interval (0,+oo) simplify(abs(x)) # no positive range has been declared for x
A coordinate can be declared periodic by adding the keyword
periodic
to its range:sage: V = M.open_subset('V') sage: c_spher1.<r,th,ph1> = \ ....: V.chart(r'r:(0,+oo) th:(0,pi):\theta ph1:(0,2*pi):periodic:\phi_1') sage: c_spher1.periods() (None, None, 2*pi) sage: c_spher1.coord_range() r: (0, +oo); th: (0, pi); ph1: [0, 2*pi] (periodic)
>>> from sage.all import * >>> V = M.open_subset('V') >>> c_spher1 = V.chart(r'r:(0,+oo) th:(0,pi):\theta ph1:(0,2*pi):periodic:\phi_1', names=('r', 'th', 'ph1',)); (r, th, ph1,) = c_spher1._first_ngens(3) >>> c_spher1.periods() (None, None, 2*pi) >>> c_spher1.coord_range() r: (0, +oo); th: (0, pi); ph1: [0, 2*pi] (periodic)
V = M.open_subset('V') c_spher1.<r,th,ph1> = \ V.chart(r'r:(0,+oo) th:(0,pi):\theta ph1:(0,2*pi):periodic:\phi_1') c_spher1.periods() c_spher1.coord_range()
It is equivalent to give the period as
period=2*pi
, skipping the coordinate range:sage: c_spher2.<r,th,ph2> = \ ....: V.chart(r'r:(0,+oo) th:(0,pi):\theta ph2:period=2*pi:\phi_2') sage: c_spher2.periods() (None, None, 2*pi) sage: c_spher2.coord_range() r: (0, +oo); th: (0, pi); ph2: [0, 2*pi] (periodic)
>>> from sage.all import * >>> c_spher2 = V.chart(r'r:(0,+oo) th:(0,pi):\theta ph2:period=2*pi:\phi_2', names=('r', 'th', 'ph2',)); (r, th, ph2,) = c_spher2._first_ngens(3) >>> c_spher2.periods() (None, None, 2*pi) >>> c_spher2.coord_range() r: (0, +oo); th: (0, pi); ph2: [0, 2*pi] (periodic)
c_spher2.<r,th,ph2> = \ V.chart(r'r:(0,+oo) th:(0,pi):\theta ph2:period=2*pi:\phi_2') c_spher2.periods() c_spher2.coord_range()
Each constructed chart is automatically added to the manifold’s user atlas:
sage: M.atlas() [Chart (R^3, (x, y, z)), Chart (U, (r, th, ph)), Chart (V, (r, th, ph1)), Chart (V, (r, th, ph2))]
>>> from sage.all import * >>> M.atlas() [Chart (R^3, (x, y, z)), Chart (U, (r, th, ph)), Chart (V, (r, th, ph1)), Chart (V, (r, th, ph2))]
M.atlas()
and to the atlas of its domain:
sage: U.atlas() [Chart (U, (r, th, ph))]
>>> from sage.all import * >>> U.atlas() [Chart (U, (r, th, ph))]
U.atlas()
Manifold subsets have a default chart, which, unless changed via the method
set_default_chart()
, is the first defined chart on the subset (or on a open subset of it):sage: M.default_chart() Chart (R^3, (x, y, z)) sage: U.default_chart() Chart (U, (r, th, ph))
>>> from sage.all import * >>> M.default_chart() Chart (R^3, (x, y, z)) >>> U.default_chart() Chart (U, (r, th, ph))
M.default_chart() U.default_chart()
The default charts are not privileged charts on the manifold, but rather charts whose name can be skipped in the argument list of functions having an optional
chart=
argument.The chart map \(\varphi\) acting on a point is obtained by means of the call operator, i.e. the operator
()
:sage: p = M.point((1,0,-2)); p Point on the 3-dimensional topological manifold R^3 sage: c_cart(p) (1, 0, -2) sage: c_cart(p) == p.coord(c_cart) True sage: q = M.point((2,pi/2,pi/3), chart=c_spher) # point defined by its spherical coordinates sage: c_spher(q) (2, 1/2*pi, 1/3*pi) sage: c_spher(q) == q.coord(c_spher) True sage: a = U.point((1,pi/2,pi)) # the default coordinates on U are the spherical ones sage: c_spher(a) (1, 1/2*pi, pi) sage: c_spher(a) == a.coord(c_spher) True
>>> from sage.all import * >>> p = M.point((Integer(1),Integer(0),-Integer(2))); p Point on the 3-dimensional topological manifold R^3 >>> c_cart(p) (1, 0, -2) >>> c_cart(p) == p.coord(c_cart) True >>> q = M.point((Integer(2),pi/Integer(2),pi/Integer(3)), chart=c_spher) # point defined by its spherical coordinates >>> c_spher(q) (2, 1/2*pi, 1/3*pi) >>> c_spher(q) == q.coord(c_spher) True >>> a = U.point((Integer(1),pi/Integer(2),pi)) # the default coordinates on U are the spherical ones >>> c_spher(a) (1, 1/2*pi, pi) >>> c_spher(a) == a.coord(c_spher) True
p = M.point((1,0,-2)); p c_cart(p) c_cart(p) == p.coord(c_cart) q = M.point((2,pi/2,pi/3), chart=c_spher) # point defined by its spherical coordinates c_spher(q) c_spher(q) == q.coord(c_spher) a = U.point((1,pi/2,pi)) # the default coordinates on U are the spherical ones c_spher(a) c_spher(a) == a.coord(c_spher)
Cartesian coordinates on \(U\) as an example of chart construction with coordinate restrictions: since \(U\) is the complement of the half-plane \(\{y = 0, x \geq 0\}\), we must have \(y \neq 0\) or \(x < 0\) on U. Accordingly, we set:
sage: c_cartU.<x,y,z> = U.chart(coord_restrictions=lambda x,y,z: (y!=0, x<0)) sage: U.atlas() [Chart (U, (r, th, ph)), Chart (U, (x, y, z))] sage: M.atlas() [Chart (R^3, (x, y, z)), Chart (U, (r, th, ph)), Chart (V, (r, th, ph1)), Chart (V, (r, th, ph2)), Chart (U, (x, y, z))] sage: c_cartU.valid_coordinates(-1,0,2) True sage: c_cartU.valid_coordinates(1,0,2) False sage: c_cart.valid_coordinates(1,0,2) True
>>> from sage.all import * >>> c_cartU = U.chart(coord_restrictions=lambda x,y,z: (y!=Integer(0), x<Integer(0)), names=('x', 'y', 'z',)); (x, y, z,) = c_cartU._first_ngens(3) >>> U.atlas() [Chart (U, (r, th, ph)), Chart (U, (x, y, z))] >>> M.atlas() [Chart (R^3, (x, y, z)), Chart (U, (r, th, ph)), Chart (V, (r, th, ph1)), Chart (V, (r, th, ph2)), Chart (U, (x, y, z))] >>> c_cartU.valid_coordinates(-Integer(1),Integer(0),Integer(2)) True >>> c_cartU.valid_coordinates(Integer(1),Integer(0),Integer(2)) False >>> c_cart.valid_coordinates(Integer(1),Integer(0),Integer(2)) True
c_cartU.<x,y,z> = U.chart(coord_restrictions=lambda x,y,z: (y!=0, x<0)) U.atlas() M.atlas() c_cartU.valid_coordinates(-1,0,2) c_cartU.valid_coordinates(1,0,2) c_cart.valid_coordinates(1,0,2)
Note that, as an example, the following would have meant \(y \neq 0\) and \(x < 0\):
c_cartU.<x,y,z> = U.chart(coord_restrictions=lambda x,y,z: [y!=0, x<0])
Chart grids can be drawn in 2D or 3D graphics thanks to the method
plot()
.- add_restrictions(restrictions)[source]¶
Add some restrictions on the coordinates.
This is deprecated; provide the restrictions at the time of creating the chart.
INPUT:
restrictions
– list of restrictions on the coordinates, in addition to the ranges declared by the intervals specified in the chart constructor
A restriction can be any symbolic equality or inequality involving the coordinates, such as
x > y
orx^2 + y^2 != 0
. The items of the listrestrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the listrestrictions
. For example:restrictions = [x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listrestrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
.EXAMPLES:
Cartesian coordinates on the open unit disc in \(\RR^2\):
sage: M = Manifold(2, 'M', structure='topological') # the open unit disc sage: X.<x,y> = M.chart() sage: X.add_restrictions(x^2+y^2<1) doctest:warning... DeprecationWarning: Chart.add_restrictions is deprecated; provide the restrictions at the time of creating the chart See https://github.com/sagemath/sage/issues/32102 for details. sage: X.valid_coordinates(0,2) False sage: X.valid_coordinates(0,1/3) True
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') # the open unit disc >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.add_restrictions(x**Integer(2)+y**Integer(2)<Integer(1)) doctest:warning... DeprecationWarning: Chart.add_restrictions is deprecated; provide the restrictions at the time of creating the chart See https://github.com/sagemath/sage/issues/32102 for details. >>> X.valid_coordinates(Integer(0),Integer(2)) False >>> X.valid_coordinates(Integer(0),Integer(1)/Integer(3)) True
M = Manifold(2, 'M', structure='topological') # the open unit disc X.<x,y> = M.chart() X.add_restrictions(x^2+y^2<1) X.valid_coordinates(0,2) X.valid_coordinates(0,1/3)
The restrictions are transmitted to subcharts:
sage: A = M.open_subset('A') # annulus 1/2 < r < 1 sage: X_A = X.restrict(A, x^2+y^2 > 1/4) sage: X_A._restrictions [x^2 + y^2 < 1, x^2 + y^2 > (1/4)] sage: X_A.valid_coordinates(0,1/3) False sage: X_A.valid_coordinates(2/3,1/3) True
>>> from sage.all import * >>> A = M.open_subset('A') # annulus 1/2 < r < 1 >>> X_A = X.restrict(A, x**Integer(2)+y**Integer(2) > Integer(1)/Integer(4)) >>> X_A._restrictions [x^2 + y^2 < 1, x^2 + y^2 > (1/4)] >>> X_A.valid_coordinates(Integer(0),Integer(1)/Integer(3)) False >>> X_A.valid_coordinates(Integer(2)/Integer(3),Integer(1)/Integer(3)) True
A = M.open_subset('A') # annulus 1/2 < r < 1 X_A = X.restrict(A, x^2+y^2 > 1/4) X_A._restrictions X_A.valid_coordinates(0,1/3) X_A.valid_coordinates(2/3,1/3)
If appropriate, the restrictions are transformed into bounds on the coordinate ranges:
sage: U = M.open_subset('U') sage: X_U = X.restrict(U) sage: X_U.coord_range() x: (-oo, +oo); y: (-oo, +oo) sage: X_U.add_restrictions([x<0, y>1/2]) sage: X_U.coord_range() x: (-oo, 0); y: (1/2, +oo)
>>> from sage.all import * >>> U = M.open_subset('U') >>> X_U = X.restrict(U) >>> X_U.coord_range() x: (-oo, +oo); y: (-oo, +oo) >>> X_U.add_restrictions([x<Integer(0), y>Integer(1)/Integer(2)]) >>> X_U.coord_range() x: (-oo, 0); y: (1/2, +oo)
U = M.open_subset('U') X_U = X.restrict(U) X_U.coord_range() X_U.add_restrictions([x<0, y>1/2]) X_U.coord_range()
- codomain()[source]¶
Return the codomain of
self
as a set.EXAMPLES:
sage: M = Manifold(2, 'R^2', structure='topological') sage: U = M.open_subset('U') # the complement of the half line {y=0, x >= 0} sage: c_spher.<r,phi> = U.chart(r'r:(0,+oo) phi:(0,2*pi):\phi') sage: c_spher.codomain() The Cartesian product of ((0, +oo), (0, 2*pi)) sage: M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) sage: c_cart.<x,y,z> = M.chart() sage: c_cart.codomain() Vector space of dimension 3 over Real Field with 53 bits of precision
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> U = M.open_subset('U') # the complement of the half line {y=0, x >= 0} >>> c_spher = U.chart(r'r:(0,+oo) phi:(0,2*pi):\phi', names=('r', 'phi',)); (r, phi,) = c_spher._first_ngens(2) >>> c_spher.codomain() The Cartesian product of ((0, +oo), (0, 2*pi)) >>> M = Manifold(Integer(3), 'R^3', r'\RR^3', structure='topological', start_index=Integer(1)) >>> c_cart = M.chart(names=('x', 'y', 'z',)); (x, y, z,) = c_cart._first_ngens(3) >>> c_cart.codomain() Vector space of dimension 3 over Real Field with 53 bits of precision
M = Manifold(2, 'R^2', structure='topological') U = M.open_subset('U') # the complement of the half line {y=0, x >= 0} c_spher.<r,phi> = U.chart(r'r:(0,+oo) phi:(0,2*pi):\phi') c_spher.codomain() M = Manifold(3, 'R^3', r'\RR^3', structure='topological', start_index=1) c_cart.<x,y,z> = M.chart() c_cart.codomain()
In the current implementation, the codomain of periodic coordinates are represented by a fundamental domain:
sage: V = M.open_subset('V') sage: c_spher1.<r,th,ph1> = \ ....: V.chart(r'r:(0,+oo) th:(0,pi):\theta ph1:(0,2*pi):periodic:\phi_1') sage: c_spher1.codomain() The Cartesian product of ((0, +oo), (0, pi), [0, 2*pi))
>>> from sage.all import * >>> V = M.open_subset('V') >>> c_spher1 = V.chart(r'r:(0,+oo) th:(0,pi):\theta ph1:(0,2*pi):periodic:\phi_1', names=('r', 'th', 'ph1',)); (r, th, ph1,) = c_spher1._first_ngens(3) >>> c_spher1.codomain() The Cartesian product of ((0, +oo), (0, pi), [0, 2*pi))
V = M.open_subset('V') c_spher1.<r,th,ph1> = \ V.chart(r'r:(0,+oo) th:(0,pi):\theta ph1:(0,2*pi):periodic:\phi_1') c_spher1.codomain()
- coord_bounds(i=None)[source]¶
Return the lower and upper bounds of the range of a coordinate.
For a nicely formatted output, use
coord_range()
instead.INPUT:
i
– (default:None
) index of the coordinate; ifNone
, the bounds of all the coordinates are returned
OUTPUT:
the coordinate bounds as the tuple
((xmin, min_included), (xmax, max_included))
wherexmin
is the coordinate lower boundmin_included
is a boolean, indicating whether the coordinate can take the valuexmin
, i.e.xmin
is a strict lower bound iffmin_included
isFalse
xmin
is the coordinate upper boundmax_included
is a boolean, indicating whether the coordinate can take the valuexmax
, i.e.xmax
is a strict upper bound iffmax_included
isFalse
EXAMPLES:
Some coordinate bounds on a 2-dimensional manifold:
sage: forget() # for doctests only sage: M = Manifold(2, 'M', structure='topological') sage: c_xy.<x,y> = M.chart('x y:[0,1)') sage: c_xy.coord_bounds(0) # x in (-oo,+oo) (the default) ((-Infinity, False), (+Infinity, False)) sage: c_xy.coord_bounds(1) # y in [0,1) ((0, True), (1, False)) sage: c_xy.coord_bounds() (((-Infinity, False), (+Infinity, False)), ((0, True), (1, False))) sage: c_xy.coord_bounds() == (c_xy.coord_bounds(0), c_xy.coord_bounds(1)) True
>>> from sage.all import * >>> forget() # for doctests only >>> M = Manifold(Integer(2), 'M', structure='topological') >>> c_xy = M.chart('x y:[0,1)', names=('x', 'y',)); (x, y,) = c_xy._first_ngens(2) >>> c_xy.coord_bounds(Integer(0)) # x in (-oo,+oo) (the default) ((-Infinity, False), (+Infinity, False)) >>> c_xy.coord_bounds(Integer(1)) # y in [0,1) ((0, True), (1, False)) >>> c_xy.coord_bounds() (((-Infinity, False), (+Infinity, False)), ((0, True), (1, False))) >>> c_xy.coord_bounds() == (c_xy.coord_bounds(Integer(0)), c_xy.coord_bounds(Integer(1))) True
forget() # for doctests only M = Manifold(2, 'M', structure='topological') c_xy.<x,y> = M.chart('x y:[0,1)') c_xy.coord_bounds(0) # x in (-oo,+oo) (the default) c_xy.coord_bounds(1) # y in [0,1) c_xy.coord_bounds() c_xy.coord_bounds() == (c_xy.coord_bounds(0), c_xy.coord_bounds(1))
The coordinate bounds can also be recovered via the method
coord_range()
:sage: c_xy.coord_range() x: (-oo, +oo); y: [0, 1) sage: c_xy.coord_range(y) y: [0, 1)
>>> from sage.all import * >>> c_xy.coord_range() x: (-oo, +oo); y: [0, 1) >>> c_xy.coord_range(y) y: [0, 1)
c_xy.coord_range() c_xy.coord_range(y)
or via Sage’s function
sage.symbolic.assumptions.assumptions()
:sage: assumptions(x) [x is real] sage: assumptions(y) [y is real, y >= 0, y < 1]
>>> from sage.all import * >>> assumptions(x) [x is real] >>> assumptions(y) [y is real, y >= 0, y < 1]
assumptions(x) assumptions(y)
- coord_range(xx=None)[source]¶
Display the range of a coordinate (or all coordinates), as an interval.
INPUT:
xx
– (default:None
) symbolic expression corresponding to a coordinate of the current chart; ifNone
, the ranges of all coordinates are displayed
EXAMPLES:
Ranges of coordinates on a 2-dimensional manifold:
sage: M = Manifold(2, 'M', structure='topological') sage: X.<x,y> = M.chart() sage: X.coord_range() x: (-oo, +oo); y: (-oo, +oo) sage: X.coord_range(x) x: (-oo, +oo) sage: U = M.open_subset('U', coord_def={X: [x>1, y<pi]}) sage: XU = X.restrict(U) # restriction of chart X to U sage: XU.coord_range() x: (1, +oo); y: (-oo, pi) sage: XU.coord_range(x) x: (1, +oo) sage: XU.coord_range(y) y: (-oo, pi)
>>> from sage.all import * >>> M = Manifold(Integer(2), 'M', structure='topological') >>> X = M.chart(names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.coord_range() x: (-oo, +oo); y: (-oo, +oo) >>> X.coord_range(x) x: (-oo, +oo) >>> U = M.open_subset('U', coord_def={X: [x>Integer(1), y<pi]}) >>> XU = X.restrict(U) # restriction of chart X to U >>> XU.coord_range() x: (1, +oo); y: (-oo, pi) >>> XU.coord_range(x) x: (1, +oo) >>> XU.coord_range(y) y: (-oo, pi)
M = Manifold(2, 'M', structure='topological') X.<x,y> = M.chart() X.coord_range() X.coord_range(x) U = M.open_subset('U', coord_def={X: [x>1, y<pi]}) XU = X.restrict(U) # restriction of chart X to U XU.coord_range() XU.coord_range(x) XU.coord_range(y)
The output is LaTeX-formatted for the notebook:
sage: latex(XU.coord_range(y)) y :\ \left( -\infty, \pi \right)
>>> from sage.all import * >>> latex(XU.coord_range(y)) y :\ \left( -\infty, \pi \right)
latex(XU.coord_range(y))
- plot(chart=None, ambient_coords=None, mapping=None, fixed_coords=None, ranges=None, number_values=None, steps=None, parameters=None, max_range=8, color='red', style='-', thickness=1, plot_points=75, label_axes=True, **kwds)[source]¶
Plot
self
as a grid in a Cartesian graph based on the coordinates of some ambient chart.The grid is formed by curves along which a chart coordinate varies, the other coordinates being kept fixed. It is drawn in terms of two (2D graphics) or three (3D graphics) coordinates of another chart, called hereafter the ambient chart.
The ambient chart is related to the current chart either by a transition map if both charts are defined on the same manifold, or by the coordinate expression of some continuous map (typically an immersion). In the latter case, the two charts may be defined on two different manifolds.
INPUT:
chart
– (default:None
) the ambient chart (see above); ifNone
, the ambient chart is set to the current chartambient_coords
– (default:None
) tuple containing the 2 or 3 coordinates of the ambient chart in terms of which the plot is performed; ifNone
, all the coordinates of the ambient chart are consideredmapping
– (default:None
)ContinuousMap
; continuous manifold map providing the link between the current chart and the ambient chart (cf. above); ifNone
, both charts are supposed to be defined on the same manifold and related by some transition map (seetransition_map()
)fixed_coords
– (default:None
) dictionary with keys the chart coordinates that are not drawn and with values the fixed value of these coordinates; ifNone
, all the coordinates of the current chart are drawnranges
– (default:None
) dictionary with keys the coordinates to be drawn and values tuples(x_min, x_max)
specifying the coordinate range for the plot; ifNone
, the entire coordinate range declared during the chart construction is considered (with-Infinity
replaced by-max_range
and+Infinity
bymax_range
)number_values
– (default:None
) either an integer or a dictionary with keys the coordinates to be drawn and values the number of constant values of the coordinate to be considered; ifnumber_values
is a single integer, it represents the number of constant values for all coordinates; ifnumber_values
isNone
, it is set to 9 for a 2D plot and to 5 for a 3D plotsteps
– (default:None
) dictionary with keys the coordinates to be drawn and values the step between each constant value of the coordinate; ifNone
, the step is computed from the coordinate range (specified inranges
) andnumber_values
. On the contrary if the step is provided for some coordinate, the corresponding number of constant values is deduced from it and the coordinate range.parameters
– (default:None
) dictionary giving the numerical values of the parameters that may appear in the relation between the two coordinate systemsmax_range
– (default: 8) numerical value substituted to +Infinity if the latter is the upper bound of the range of a coordinate for which the plot is performed over the entire coordinate range (i.e. for which no specific plot range has been set inranges
); similarly-max_range
is the numerical valued substituted for-Infinity
color
– (default:'red'
) either a single color or a dictionary of colors, with keys the coordinates to be drawn, representing the colors of the lines along which the coordinate varies, the other being kept constant; ifcolor
is a single color, it is used for all coordinate linesstyle
– (default:'-'
) either a single line style or a dictionary of line styles, with keys the coordinates to be drawn, representing the style of the lines along which the coordinate varies, the other being kept constant; ifstyle
is a single style, it is used for all coordinate lines; NB:style
is effective only for 2D plotsthickness
– (default: 1) either a single line thickness or a dictionary of line thicknesses, with keys the coordinates to be drawn, representing the thickness of the lines along which the coordinate varies, the other being kept constant; ifthickness
is a single value, it is used for all coordinate linesplot_points
– (default: 75) either a single number of points or a dictionary of integers, with keys the coordinates to be drawn, representing the number of points to plot the lines along which the coordinate varies, the other being kept constant; ifplot_points
is a single integer, it is used for all coordinate lineslabel_axes
– boolean (default:True
); determining whether the labels of the ambient coordinate axes shall be added to the graph; can be set toFalse
if the graph is 3D and must be superposed with another graph
OUTPUT:
a graphic object, either a
Graphics
for a 2D plot (i.e. based on 2 coordinates of the ambient chart) or aGraphics3d
for a 3D plot (i.e. based on 3 coordinates of the ambient chart)
EXAMPLES:
A 2-dimensional chart plotted in terms of itself results in a rectangular grid:
sage: R2 = Manifold(2, 'R^2', structure='topological') # the Euclidean plane sage: c_cart.<x,y> = R2.chart() # Cartesian coordinates sage: g = c_cart.plot(); g # equivalent to c_cart.plot(c_cart) # needs sage.plot Graphics object consisting of 18 graphics primitives
>>> from sage.all import * >>> R2 = Manifold(Integer(2), 'R^2', structure='topological') # the Euclidean plane >>> c_cart = R2.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2)# Cartesian coordinates >>> g = c_cart.plot(); g # equivalent to c_cart.plot(c_cart) # needs sage.plot Graphics object consisting of 18 graphics primitives
R2 = Manifold(2, 'R^2', structure='topological') # the Euclidean plane c_cart.<x,y> = R2.chart() # Cartesian coordinates g = c_cart.plot(); g # equivalent to c_cart.plot(c_cart) # needs sage.plot
Grid of polar coordinates in terms of Cartesian coordinates in the Euclidean plane:
sage: U = R2.open_subset('U', coord_def={c_cart: (y!=0, x<0)}) # the complement of the segment y=0 and x>0 sage: c_pol.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') # polar coordinates on U sage: pol_to_cart = c_pol.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) sage: g = c_pol.plot(c_cart); g # needs sage.plot Graphics object consisting of 18 graphics primitives
>>> from sage.all import * >>> U = R2.open_subset('U', coord_def={c_cart: (y!=Integer(0), x<Integer(0))}) # the complement of the segment y=0 and x>0 >>> c_pol = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi', names=('r', 'ph',)); (r, ph,) = c_pol._first_ngens(2)# polar coordinates on U >>> pol_to_cart = c_pol.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) >>> g = c_pol.plot(c_cart); g # needs sage.plot Graphics object consisting of 18 graphics primitives
U = R2.open_subset('U', coord_def={c_cart: (y!=0, x<0)}) # the complement of the segment y=0 and x>0 c_pol.<r,ph> = U.chart(r'r:(0,+oo) ph:(0,2*pi):\phi') # polar coordinates on U pol_to_cart = c_pol.transition_map(c_cart, [r*cos(ph), r*sin(ph)]) g = c_pol.plot(c_cart); g # needs sage.plot
Call with non-default values:
sage: g = c_pol.plot(c_cart, ranges={ph:(pi/4,pi)}, # needs sage.plot ....: number_values={r:7, ph:17}, ....: color={r:'red', ph:'green'}, ....: style={r:'-', ph:'--'})
>>> from sage.all import * >>> g = c_pol.plot(c_cart, ranges={ph:(pi/Integer(4),pi)}, # needs sage.plot ... number_values={r:Integer(7), ph:Integer(17)}, ... color={r:'red', ph:'green'}, ... style={r:'-', ph:'--'})
g = c_pol.plot(c_cart, ranges={ph:(pi/4,pi)}, # needs sage.plot number_values={r:7, ph:17}, color={r:'red', ph:'green'}, style={r:'-', ph:'--'})
A single coordinate line can be drawn:
sage: g = c_pol.plot(c_cart, # draw a circle of radius r=2 # needs sage.plot ....: fixed_coords={r: 2})
>>> from sage.all import * >>> g = c_pol.plot(c_cart, # draw a circle of radius r=2 # needs sage.plot ... fixed_coords={r: Integer(2)})
g = c_pol.plot(c_cart, # draw a circle of radius r=2 # needs sage.plot fixed_coords={r: 2})
sage: g = c_pol.plot(c_cart, # draw a segment at phi=pi/4 # needs sage.plot ....: fixed_coords={ph: pi/4})
>>> from sage.all import * >>> g = c_pol.plot(c_cart, # draw a segment at phi=pi/4 # needs sage.plot ... fixed_coords={ph: pi/Integer(4)})
g = c_pol.plot(c_cart, # draw a segment at phi=pi/4 # needs sage.plot fixed_coords={ph: pi/4})
An example with the ambient chart lying in an another manifold (the plot is then performed via some manifold map passed as the argument
mapping
): 3D plot of the stereographic charts on the 2-sphere:sage: S2 = Manifold(2, 'S^2', structure='topological') # the 2-sphere sage: U = S2.open_subset('U'); V = S2.open_subset('V') # complement of the North and South pole, respectively sage: S2.declare_union(U,V) sage: c_xy.<x,y> = U.chart() # stereographic coordinates from the North pole sage: c_uv.<u,v> = V.chart() # stereographic coordinates from the South pole sage: xy_to_uv = c_xy.transition_map(c_uv, (x/(x^2+y^2), y/(x^2+y^2)), ....: intersection_name='W', restrictions1= x^2+y^2!=0, ....: restrictions2= u^2+v^2!=0) sage: uv_to_xy = xy_to_uv.inverse() sage: R3 = Manifold(3, 'R^3', structure='topological') # the Euclidean space R^3 sage: c_cart.<X,Y,Z> = R3.chart() # Cartesian coordinates on R^3 sage: Phi = S2.continuous_map(R3, {(c_xy, c_cart): [2*x/(1+x^2+y^2), ....: 2*y/(1+x^2+y^2), (x^2+y^2-1)/(1+x^2+y^2)], ....: (c_uv, c_cart): [2*u/(1+u^2+v^2), ....: 2*v/(1+u^2+v^2), (1-u^2-v^2)/(1+u^2+v^2)]}, ....: name='Phi', latex_name=r'\Phi') # Embedding of S^2 in R^3 sage: g = c_xy.plot(c_cart, mapping=Phi); g # needs sage.plot Graphics3d Object
>>> from sage.all import * >>> S2 = Manifold(Integer(2), 'S^2', structure='topological') # the 2-sphere >>> U = S2.open_subset('U'); V = S2.open_subset('V') # complement of the North and South pole, respectively >>> S2.declare_union(U,V) >>> c_xy = U.chart(names=('x', 'y',)); (x, y,) = c_xy._first_ngens(2)# stereographic coordinates from the North pole >>> c_uv = V.chart(names=('u', 'v',)); (u, v,) = c_uv._first_ngens(2)# stereographic coordinates from the South pole >>> xy_to_uv = c_xy.transition_map(c_uv, (x/(x**Integer(2)+y**Integer(2)), y/(x**Integer(2)+y**Integer(2))), ... intersection_name='W', restrictions1= x**Integer(2)+y**Integer(2)!=Integer(0), ... restrictions2= u**Integer(2)+v**Integer(2)!=Integer(0)) >>> uv_to_xy = xy_to_uv.inverse() >>> R3 = Manifold(Integer(3), 'R^3', structure='topological') # the Euclidean space R^3 >>> c_cart = R3.chart(names=('X', 'Y', 'Z',)); (X, Y, Z,) = c_cart._first_ngens(3)# Cartesian coordinates on R^3 >>> Phi = S2.continuous_map(R3, {(c_xy, c_cart): [Integer(2)*x/(Integer(1)+x**Integer(2)+y**Integer(2)), ... Integer(2)*y/(Integer(1)+x**Integer(2)+y**Integer(2)), (x**Integer(2)+y**Integer(2)-Integer(1))/(Integer(1)+x**Integer(2)+y**Integer(2))], ... (c_uv, c_cart): [Integer(2)*u/(Integer(1)+u**Integer(2)+v**Integer(2)), ... Integer(2)*v/(Integer(1)+u**Integer(2)+v**Integer(2)), (Integer(1)-u**Integer(2)-v**Integer(2))/(Integer(1)+u**Integer(2)+v**Integer(2))]}, ... name='Phi', latex_name=r'\Phi') # Embedding of S^2 in R^3 >>> g = c_xy.plot(c_cart, mapping=Phi); g # needs sage.plot Graphics3d Object
S2 = Manifold(2, 'S^2', structure='topological') # the 2-sphere U = S2.open_subset('U'); V = S2.open_subset('V') # complement of the North and South pole, respectively S2.declare_union(U,V) c_xy.<x,y> = U.chart() # stereographic coordinates from the North pole c_uv.<u,v> = V.chart() # stereographic coordinates from the South pole xy_to_uv = c_xy.transition_map(c_uv, (x/(x^2+y^2), y/(x^2+y^2)), intersection_name='W', restrictions1= x^2+y^2!=0, restrictions2= u^2+v^2!=0) uv_to_xy = xy_to_uv.inverse() R3 = Manifold(3, 'R^3', structure='topological') # the Euclidean space R^3 c_cart.<X,Y,Z> = R3.chart() # Cartesian coordinates on R^3 Phi = S2.continuous_map(R3, {(c_xy, c_cart): [2*x/(1+x^2+y^2), 2*y/(1+x^2+y^2), (x^2+y^2-1)/(1+x^2+y^2)], (c_uv, c_cart): [2*u/(1+u^2+v^2), 2*v/(1+u^2+v^2), (1-u^2-v^2)/(1+u^2+v^2)]}, name='Phi', latex_name=r'\Phi') # Embedding of S^2 in R^3 g = c_xy.plot(c_cart, mapping=Phi); g # needs sage.plot
NB: to get a better coverage of the whole sphere, one should increase the coordinate sampling via the argument
number_values
or the argumentsteps
(only the default value,number_values = 5
, is used here, which is pretty low).The same plot without the
(X,Y,Z)
axes labels:sage: g = c_xy.plot(c_cart, mapping=Phi, label_axes=False) # needs sage.plot
>>> from sage.all import * >>> g = c_xy.plot(c_cart, mapping=Phi, label_axes=False) # needs sage.plot
g = c_xy.plot(c_cart, mapping=Phi, label_axes=False) # needs sage.plot
The North and South stereographic charts on the same plot:
sage: g2 = c_uv.plot(c_cart, mapping=Phi, color='green') # needs sage.plot sage: g + g2 # needs sage.plot Graphics3d Object
>>> from sage.all import * >>> g2 = c_uv.plot(c_cart, mapping=Phi, color='green') # needs sage.plot >>> g + g2 # needs sage.plot Graphics3d Object
g2 = c_uv.plot(c_cart, mapping=Phi, color='green') # needs sage.plot g + g2 # needs sage.plot
South stereographic chart drawn in terms of the North one (we split the plot in four parts to avoid the singularity at \((u,v)=(0,0)\)):
sage: # long time, needs sage.plot sage: W = U.intersection(V) # the subset common to both charts sage: c_uvW = c_uv.restrict(W) # chart (W,(u,v)) sage: gSN1 = c_uvW.plot(c_xy, ranges={u:[-6.,-0.02], v:[-6.,-0.02]}) sage: gSN2 = c_uvW.plot(c_xy, ranges={u:[-6.,-0.02], v:[0.02,6.]}) sage: gSN3 = c_uvW.plot(c_xy, ranges={u:[0.02,6.], v:[-6.,-0.02]}) sage: gSN4 = c_uvW.plot(c_xy, ranges={u:[0.02,6.], v:[0.02,6.]}) sage: show(gSN1+gSN2+gSN3+gSN4, xmin=-1.5, xmax=1.5, ymin=-1.5, ymax=1.5)
>>> from sage.all import * >>> # long time, needs sage.plot >>> W = U.intersection(V) # the subset common to both charts >>> c_uvW = c_uv.restrict(W) # chart (W,(u,v)) >>> gSN1 = c_uvW.plot(c_xy, ranges={u:[-RealNumber('6.'),-RealNumber('0.02')], v:[-RealNumber('6.'),-RealNumber('0.02')]}) >>> gSN2 = c_uvW.plot(c_xy, ranges={u:[-RealNumber('6.'),-RealNumber('0.02')], v:[RealNumber('0.02'),RealNumber('6.')]}) >>> gSN3 = c_uvW.plot(c_xy, ranges={u:[RealNumber('0.02'),RealNumber('6.')], v:[-RealNumber('6.'),-RealNumber('0.02')]}) >>> gSN4 = c_uvW.plot(c_xy, ranges={u:[RealNumber('0.02'),RealNumber('6.')], v:[RealNumber('0.02'),RealNumber('6.')]}) >>> show(gSN1+gSN2+gSN3+gSN4, xmin=-RealNumber('1.5'), xmax=RealNumber('1.5'), ymin=-RealNumber('1.5'), ymax=RealNumber('1.5'))
# long time, needs sage.plot W = U.intersection(V) # the subset common to both charts c_uvW = c_uv.restrict(W) # chart (W,(u,v)) gSN1 = c_uvW.plot(c_xy, ranges={u:[-6.,-0.02], v:[-6.,-0.02]}) gSN2 = c_uvW.plot(c_xy, ranges={u:[-6.,-0.02], v:[0.02,6.]}) gSN3 = c_uvW.plot(c_xy, ranges={u:[0.02,6.], v:[-6.,-0.02]}) gSN4 = c_uvW.plot(c_xy, ranges={u:[0.02,6.], v:[0.02,6.]}) show(gSN1+gSN2+gSN3+gSN4, xmin=-1.5, xmax=1.5, ymin=-1.5, ymax=1.5)
The coordinate line \(u = 1\) (red) and the coordinate line \(v = 1\) (green) on the same plot:
sage: # long time, needs sage.plot sage: gu1 = c_uvW.plot(c_xy, fixed_coords={u: 1}, max_range=20, ....: plot_points=300) sage: gv1 = c_uvW.plot(c_xy, fixed_coords={v: 1}, max_range=20, ....: plot_points=300, color='green') sage: gu1 + gv1 Graphics object consisting of 2 graphics primitives
>>> from sage.all import * >>> # long time, needs sage.plot >>> gu1 = c_uvW.plot(c_xy, fixed_coords={u: Integer(1)}, max_range=Integer(20), ... plot_points=Integer(300)) >>> gv1 = c_uvW.plot(c_xy, fixed_coords={v: Integer(1)}, max_range=Integer(20), ... plot_points=Integer(300), color='green') >>> gu1 + gv1 Graphics object consisting of 2 graphics primitives
# long time, needs sage.plot gu1 = c_uvW.plot(c_xy, fixed_coords={u: 1}, max_range=20, plot_points=300) gv1 = c_uvW.plot(c_xy, fixed_coords={v: 1}, max_range=20, plot_points=300, color='green') gu1 + gv1
Note that we have set
max_range=20
to have a wider range for the coordinates \(u\) and \(v\), i.e. to have \([-20, 20]\) instead of the default \([-8, 8]\).A 3-dimensional chart plotted in terms of itself results in a 3D rectangular grid:
sage: # long time, needs sage.plot sage: g = c_cart.plot() # equivalent to c_cart.plot(c_cart) sage: g Graphics3d Object
>>> from sage.all import * >>> # long time, needs sage.plot >>> g = c_cart.plot() # equivalent to c_cart.plot(c_cart) >>> g Graphics3d Object
# long time, needs sage.plot g = c_cart.plot() # equivalent to c_cart.plot(c_cart) g
A 4-dimensional chart plotted in terms of itself (the plot is performed for at most 3 coordinates, which must be specified via the argument
ambient_coords
):sage: # needs sage.plot sage: M = Manifold(4, 'M', structure='topological') sage: X.<t,x,y,z> = M.chart() sage: g = X.plot(ambient_coords=(t,x,y)) # the coordinate z is not depicted # long time sage: g # long time Graphics3d Object
>>> from sage.all import * >>> # needs sage.plot >>> M = Manifold(Integer(4), 'M', structure='topological') >>> X = M.chart(names=('t', 'x', 'y', 'z',)); (t, x, y, z,) = X._first_ngens(4) >>> g = X.plot(ambient_coords=(t,x,y)) # the coordinate z is not depicted # long time >>> g # long time Graphics3d Object
# needs sage.plot M = Manifold(4, 'M', structure='topological') X.<t,x,y,z> = M.chart() g = X.plot(ambient_coords=(t,x,y)) # the coordinate z is not depicted # long time g # long time
sage: # needs sage.plot sage: g = X.plot(ambient_coords=(t,y)) # the coordinates x and z are not depicted sage: g Graphics object consisting of 18 graphics primitives
>>> from sage.all import * >>> # needs sage.plot >>> g = X.plot(ambient_coords=(t,y)) # the coordinates x and z are not depicted >>> g Graphics object consisting of 18 graphics primitives
# needs sage.plot g = X.plot(ambient_coords=(t,y)) # the coordinates x and z are not depicted g
Note that the default values of some arguments of the method
plot
are stored in the dictionaryplot.options
:sage: X.plot.options # random (dictionary output) {'color': 'red', 'label_axes': True, 'max_range': 8, 'plot_points': 75, 'style': '-', 'thickness': 1}
>>> from sage.all import * >>> X.plot.options # random (dictionary output) {'color': 'red', 'label_axes': True, 'max_range': 8, 'plot_points': 75, 'style': '-', 'thickness': 1}
X.plot.options # random (dictionary output)
so that they can be adjusted by the user:
sage: X.plot.options['color'] = 'blue'
>>> from sage.all import * >>> X.plot.options['color'] = 'blue'
X.plot.options['color'] = 'blue'
From now on, all chart plots will use blue as the default color. To restore the original default options, it suffices to type:
sage: X.plot.reset()
>>> from sage.all import * >>> X.plot.reset()
X.plot.reset()
- restrict(subset, restrictions=None)[source]¶
Return the restriction of the chart to some open subset of its domain.
If the current chart is \((U, \varphi)\), a restriction (or subchart) is a chart \((V, \psi)\) such that \(V \subset U\) and \(\psi = \varphi|_V\).
If such subchart has not been defined yet, it is constructed here.
The coordinates of the subchart bare the same names as the coordinates of the current chart.
INPUT:
subset
– open subset \(V\) of the chart domain \(U\) (must be an instance ofTopologicalManifold
)restrictions
– (default:None
) list of coordinate restrictions defining the subset \(V\)
A restriction can be any symbolic equality or inequality involving the coordinates, such as
x > y
orx^2 + y^2 != 0
. The items of the listrestrictions
are combined with theand
operator; if some restrictions are to be combined with theor
operator instead, they have to be passed as a tuple in some single item of the listrestrictions
. For example:restrictions = [x > y, (x != 0, y != 0), z^2 < x]
means
(x > y) and ((x != 0) or (y != 0)) and (z^2 < x)
. If the listrestrictions
contains only one item, this item can be passed as such, i.e. writingx > y
instead of the single element list[x > y]
.OUTPUT:
the chart \((V, \psi)\) as a
RealChart
EXAMPLES:
Cartesian coordinates on the unit open disc in \(\RR^2\) as a subchart of the global Cartesian coordinates:
sage: M = Manifold(2, 'R^2', structure='topological') sage: c_cart.<x,y> = M.chart() # Cartesian coordinates on R^2 sage: D = M.open_subset('D') # the unit open disc sage: c_cart_D = c_cart.restrict(D, x^2+y^2<1) sage: p = M.point((1/2, 0)) sage: p in D True sage: q = M.point((1, 2)) sage: q in D False
>>> from sage.all import * >>> M = Manifold(Integer(2), 'R^2', structure='topological') >>> c_cart = M.chart(names=('x', 'y',)); (x, y,) = c_cart._first_ngens(2)# Cartesian coordinates on R^2 >>> D = M.open_subset('D') # the unit open disc >>> c_cart_D = c_cart.restrict(D, x**Integer(2)+y**Integer(2)<Integer(1)) >>> p = M.point((Integer(1)/Integer(2), Integer(0))) >>> p in D True >>> q = M.point((Integer(1), Integer(2))) >>> q in D False
M = Manifold(2, 'R^2', structure='topological') c_cart.<x,y> = M.chart() # Cartesian coordinates on R^2 D = M.open_subset('D') # the unit open disc c_cart_D = c_cart.restrict(D, x^2+y^2<1) p = M.point((1/2, 0)) p in D q = M.point((1, 2)) q in D
Cartesian coordinates on the annulus \(1 < \sqrt{x^2 + y^2} < 2\):
sage: A = M.open_subset('A') sage: c_cart_A = c_cart.restrict(A, [x^2+y^2>1, x^2+y^2<4]) sage: p in A, q in A (False, False) sage: a = M.point((3/2,0)) sage: a in A True
>>> from sage.all import * >>> A = M.open_subset('A') >>> c_cart_A = c_cart.restrict(A, [x**Integer(2)+y**Integer(2)>Integer(1), x**Integer(2)+y**Integer(2)<Integer(4)]) >>> p in A, q in A (False, False) >>> a = M.point((Integer(3)/Integer(2),Integer(0))) >>> a in A True
A = M.open_subset('A') c_cart_A = c_cart.restrict(A, [x^2+y^2>1, x^2+y^2<4]) p in A, q in A a = M.point((3/2,0)) a in A
- valid_coordinates(*coordinates, **kwds)[source]¶
Check whether a tuple of coordinates can be the coordinates of a point in the chart domain.
INPUT:
*coordinates
– coordinate values**kwds
– options:tolerance=0
, to set the absolute tolerance in the test of coordinate rangesparameters=None
, to set some numerical values to parameters
OUTPUT:
True
if the coordinate values are admissible in the chart range andFalse
otherwise
EXAMPLES:
Cartesian coordinates on a square interior:
sage: forget() # for doctest only sage: M = Manifold(2, 'M', structure='topological') # the square interior sage: X.<x,y> = M.chart('x:(-2,2) y:(-2,2)') sage: X.valid_coordinates(0,1) True sage: X.valid_coordinates(-3/2,5/4) True sage: X.valid_coordinates(0,3) False
>>> from sage.all import * >>> forget() # for doctest only >>> M = Manifold(Integer(2), 'M', structure='topological') # the square interior >>> X = M.chart('x:(-2,2) y:(-2,2)', names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.valid_coordinates(Integer(0),Integer(1)) True >>> X.valid_coordinates(-Integer(3)/Integer(2),Integer(5)/Integer(4)) True >>> X.valid_coordinates(Integer(0),Integer(3)) False
forget() # for doctest only M = Manifold(2, 'M', structure='topological') # the square interior X.<x,y> = M.chart('x:(-2,2) y:(-2,2)') X.valid_coordinates(0,1) X.valid_coordinates(-3/2,5/4) X.valid_coordinates(0,3)
The unit open disk inside the square:
sage: D = M.open_subset('D', coord_def={X: x^2+y^2<1}) sage: XD = X.restrict(D) sage: XD.valid_coordinates(0,1) False sage: XD.valid_coordinates(-3/2,5/4) False sage: XD.valid_coordinates(-1/2,1/2) True sage: XD.valid_coordinates(0,0) True
>>> from sage.all import * >>> D = M.open_subset('D', coord_def={X: x**Integer(2)+y**Integer(2)<Integer(1)}) >>> XD = X.restrict(D) >>> XD.valid_coordinates(Integer(0),Integer(1)) False >>> XD.valid_coordinates(-Integer(3)/Integer(2),Integer(5)/Integer(4)) False >>> XD.valid_coordinates(-Integer(1)/Integer(2),Integer(1)/Integer(2)) True >>> XD.valid_coordinates(Integer(0),Integer(0)) True
D = M.open_subset('D', coord_def={X: x^2+y^2<1}) XD = X.restrict(D) XD.valid_coordinates(0,1) XD.valid_coordinates(-3/2,5/4) XD.valid_coordinates(-1/2,1/2) XD.valid_coordinates(0,0)
Another open subset of the square, defined by \(x^2+y^2<1\) or (\(x>0\) and \(|y|<1\)):
sage: B = M.open_subset('B', ....: coord_def={X: (x^2+y^2<1, ....: [x>0, abs(y)<1])}) sage: XB = X.restrict(B) sage: XB.valid_coordinates(-1/2, 0) True sage: XB.valid_coordinates(-1/2, 3/2) False sage: XB.valid_coordinates(3/2, 1/2) True
>>> from sage.all import * >>> B = M.open_subset('B', ... coord_def={X: (x**Integer(2)+y**Integer(2)<Integer(1), ... [x>Integer(0), abs(y)<Integer(1)])}) >>> XB = X.restrict(B) >>> XB.valid_coordinates(-Integer(1)/Integer(2), Integer(0)) True >>> XB.valid_coordinates(-Integer(1)/Integer(2), Integer(3)/Integer(2)) False >>> XB.valid_coordinates(Integer(3)/Integer(2), Integer(1)/Integer(2)) True
B = M.open_subset('B', coord_def={X: (x^2+y^2<1, [x>0, abs(y)<1])}) XB = X.restrict(B) XB.valid_coordinates(-1/2, 0) XB.valid_coordinates(-1/2, 3/2) XB.valid_coordinates(3/2, 1/2)
- valid_coordinates_numerical(*coordinates)[source]¶
Check whether a tuple of float coordinates can be the coordinates of a point in the chart domain.
This version is optimized for float numbers, and cannot accept parameters nor tolerance. The chart restriction must also be specified in CNF (i.e. a list of tuples).
INPUT:
*coordinates
– coordinate values
OUTPUT:
True
if the coordinate values are admissible in the chart range andFalse
otherwise
EXAMPLES:
Cartesian coordinates on a square interior:
sage: forget() # for doctest only sage: M = Manifold(2, 'M', structure='topological') # the square interior sage: X.<x,y> = M.chart('x:(-2,2) y:(-2,2)') sage: X.valid_coordinates_numerical(0,1) True sage: X.valid_coordinates_numerical(-3/2,5/4) True sage: X.valid_coordinates_numerical(0,3) False
>>> from sage.all import * >>> forget() # for doctest only >>> M = Manifold(Integer(2), 'M', structure='topological') # the square interior >>> X = M.chart('x:(-2,2) y:(-2,2)', names=('x', 'y',)); (x, y,) = X._first_ngens(2) >>> X.valid_coordinates_numerical(Integer(0),Integer(1)) True >>> X.valid_coordinates_numerical(-Integer(3)/Integer(2),Integer(5)/Integer(4)) True >>> X.valid_coordinates_numerical(Integer(0),Integer(3)) False
forget() # for doctest only M = Manifold(2, 'M', structure='topological') # the square interior X.<x,y> = M.chart('x:(-2,2) y:(-2,2)') X.valid_coordinates_numerical(0,1) X.valid_coordinates_numerical(-3/2,5/4) X.valid_coordinates_numerical(0,3)
The unit open disk inside the square:
sage: D = M.open_subset('D', coord_def={X: x^2+y^2<1}) sage: XD = X.restrict(D) sage: XD.valid_coordinates_numerical(0,1) False sage: XD.valid_coordinates_numerical(-3/2,5/4) False sage: XD.valid_coordinates_numerical(-1/2,1/2) True sage: XD.valid_coordinates_numerical(0,0) True
>>> from sage.all import * >>> D = M.open_subset('D', coord_def={X: x**Integer(2)+y**Integer(2)<Integer(1)}) >>> XD = X.restrict(D) >>> XD.valid_coordinates_numerical(Integer(0),Integer(1)) False >>> XD.valid_coordinates_numerical(-Integer(3)/Integer(2),Integer(5)/Integer(4)) False >>> XD.valid_coordinates_numerical(-Integer(1)/Integer(2),Integer(1)/Integer(2)) True >>> XD.valid_coordinates_numerical(Integer(0),Integer(0)) True
D = M.open_subset('D', coord_def={X: x^2+y^2<1}) XD = X.restrict(D) XD.valid_coordinates_numerical(0,1) XD.valid_coordinates_numerical(-3/2,5/4) XD.valid_coordinates_numerical(-1/2,1/2) XD.valid_coordinates_numerical(0,0)
Another open subset of the square, defined by \(x^2 + y^2 < 1\) or (\(x > 0\) and \(|y| < 1\)):
sage: B = M.open_subset('B',coord_def={X: [(x^2+y^2<1, x>0), ....: (x^2+y^2<1, abs(y)<1)]}) sage: XB = X.restrict(B) sage: XB.valid_coordinates_numerical(-1/2, 0) True sage: XB.valid_coordinates_numerical(-1/2, 3/2) False sage: XB.valid_coordinates_numerical(3/2, 1/2) True
>>> from sage.all import * >>> B = M.open_subset('B',coord_def={X: [(x**Integer(2)+y**Integer(2)<Integer(1), x>Integer(0)), ... (x**Integer(2)+y**Integer(2)<Integer(1), abs(y)<Integer(1))]}) >>> XB = X.restrict(B) >>> XB.valid_coordinates_numerical(-Integer(1)/Integer(2), Integer(0)) True >>> XB.valid_coordinates_numerical(-Integer(1)/Integer(2), Integer(3)/Integer(2)) False >>> XB.valid_coordinates_numerical(Integer(3)/Integer(2), Integer(1)/Integer(2)) True
B = M.open_subset('B',coord_def={X: [(x^2+y^2<1, x>0), (x^2+y^2<1, abs(y)<1)]}) XB = X.restrict(B) XB.valid_coordinates_numerical(-1/2, 0) XB.valid_coordinates_numerical(-1/2, 3/2) XB.valid_coordinates_numerical(3/2, 1/2)