Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/schemes/generic/notes/inverse_image.txt
4108 views
1
Let X = V((F_1(X_i),...,F_n(X_i))) and Y = V((G_1(Y_j),...,G_m(Y_j))),
2
and suppose that X -> Y is defined by (H_1(X_i),...,h_r(X_i)).
3
Then the preimage scheme of a point (y_1,...,y_r) in the affine setting
4
is just generated by H_k(X_i)-y_k (together with the F_j(X_i)), or in
5
the projective (over a field) setting by cross products to define the
6
homogeneous submodules, so y_j H_k(X_i) - y_k H_j(X_i).
7
8
To find the preimage of a general subscheme Z of Y, just evaluate the
9
defining polynomials for Z at the point (H_1(X_i),...,H_r(X_i)).
10
11
In Magma one can't form subschemes T/S of X/R where S->R. The morphism
12
structures would have to handle phi: T/S -> X/R, but otherwise it is
13
well-defined (provided the morphism S->R on base schemes is defined).
14
This would let one form the preimage scheme of a point in X(S), for
15
which we give an error.
16
17
Note that the preimage of a point under any morphism is defined to be
18
the preimage scheme (of the closed point as a scheme). If this seems
19
to be an abuse of notation, then one could define phi.preimage_scheme(P);
20
Magma just uses existing notation @@ and it had to be decided what the
21
meaning would be in the context of scheme maps.
22
23
(David Kohel, 27/01/2006)
24
25
Alternatively, note that the preimage_scheme of Z under pi is the base
26
extension of pi: X -> Y by i: Z -> Y, and is constructed as a fiber
27
product of X \times_Y Z.
28
29
(David Kohel, 30/01/2006)
30