Algebraic and Analytic Geometry WIT A Structured and Comprehensive Package for Computations in Intersection Theory

Size: px
Start display at page:

Download "Algebraic and Analytic Geometry WIT A Structured and Comprehensive Package for Computations in Intersection Theory"

Transcription

1 AMS SPECIAL SESSION Computational Algebraic and Analytic Geometry for Low dimensional Varieties WIT A Structured and Comprehensive Package for Computations in Intersection Theory SEBASTIAN XAMBÓ DESCAMPS FACULTAT DE MATEMÀTIQUES I ESTADÍSTICA UNIVERSITAT POLITÈCNICA DE CATALUNYA BARCELONA (SPAIN)

2 2 CREDITS JOINT WORK WITH: Josep M Miret for the geometrical aspects Francesc Massanés for the Java interfaces to the WIT system THANKS TO THE ORGANIZERS M. Seppälä, T. Shaska, E. Volcheck

3 3 MAIN POINTS The WIT approach to computational IT Enumerative geometry problems Algebraic geometry foundations (IT) Intersection rings Chern classes Vanishing locus of a vector bundle section The method of degenerations Enumerative significance Archetypal examples Some new Schubert tables Results Methods Concluding remarks

4 4 The Wit approach to computational IT Java interface ( ) Help page and User s guide Select, load and run file example Save a session Note. There is a similar interface for error correcting codes ( ) and for the plain mathematical engine ( )

5 5 Examples # Bernoulli polynomials -- after Shafarevich { bernoulli_polynomial(k,x) with k in 1..3 }# k=100; bernoulli_polynomial(k,x) - bernoulli_polynomial(k,x-1)# # should be x^k

6 6 # Bernoulli polynomials -- after Shafarevich u> { bernoulli_polynomial(k,x) with k in 1..3 }# > {1/2*x2+1/2*x, 1/3*x3+1/2*x2+1/6*x, 1/4*x4+1/2*x3+1/4*x2} u> k=100; u> bernoulli_polynomial(k,x) - bernoulli_polynomial(k,x-1)# > x^100 # should be x^k

7 # Examples: Intersection multiplicity of two plane # curves at a point obtained by Fulton's algorithm 7 # 0. Conventions # For simplicity, here a plane curve is represented # by a polynomial in the variables x and y. # 1. Reduction to the point {0,0} mult(f,g,{a,b}):= mult(eval(f,{x+a,y+b}),eval(g,{x+a,y+b})); # 2. The function mult(f,g) mult(f,g):= begin local f, g, r, s, a, b # it is assumed that the variables are {x,y} if not(subset?(variables(f),{x,y}) & subset?(variables(g),{x,y}) ) then return 0 end

8 8 # mult is 0 if one of the curves does not pass # through the origin if ( eval(f,{0,0})!=0 eval(g,{0,0})!= 0 ) then return 0 end #.. and it is if one of the equations is 0 if F==0 G==0 then return Infinity end # Otherwise continue with Fulton's algorithm f=collect(f,y).0 g=collect(g,y).0 r=degree(f) s=degree(g)

9 if f==0 then if g==0 then Infinity # y is a common factor else trailing_degree(g)+mult(f/y,g) end else # f!=0 if g==0 then trailing_degree(f)+mult(f,g/y) else # g!=0 a=leading_coefficient(f) b=leading_coefficient(g) if r<=s then mult(f,a*g-b*x^(s-r)*f) else mult(b*f-a*x^(r-s)*g,g) end end end end; 9

10 # Examples F=(x^2+y^2)^3-4*x^2*y^2; G=(x^2+y^2)^2+3*x^2*y-y^3; mult(f,g)# # should be 14 f=collect(f,y); g=collect(g,y); resultant(f,g)# 80*x^ *x^ *x^18 10 K=Zmod(5); A=K[x,y]; F=F:A; G=G:A; mult(f,g)# # should be 18

11 11 Structure wit h wit power wit types wit sheaves wit varieties wit chow wit morphism Credits. The WIT system is inspired on the Schubert package (programmed in MAPLE) of S. Katz and S. A. Str mme. A twofold recognition of SCHUBERT as the soul of WIT.

12 12 Types (a sample) Variety. This class, also called Manifold, or VAR, is intended to capture the structural details of the algebraic varieties appearing in intersection theory, and it is defined as follows: Variety ={ # Name of field dim : Integer # dimension kind : Identifier gcs : Vector # generating classes degs : Vector # degrees of gcs monomials : List monomial_values : Relation pt : Polynomial # point relations : Vector basis : List dual_basis : List tan_bundle : Sheaf # tangent bundle todd_class : Vector # Todd class }

13 Grassmannian. This class, also called GRASS, is an extension of Variety that allows us to handle Grassmannian varieties. It is defined as follows: Grassmannian = Variety { tautological_bundle : Sheaf tautological_quotient : Sheaf } Thus Grassmannian is a Variety with two additional fields, both of type Sheaf. As suggested by their identifiers, these fields will hold the tautological bundle and the tautological quotient of a given instance of the class. 13

14 14 Morphism. This class, also called MOR, is defined follows: Morphism = { source : Variety target : Variety dim : Integer upperstardata : Rule kind : Identifier }

15 Projective_bundle. This class, also called PROJ_BUNDLE, is defined as follows: Projective_Bundle = Variety { base_variety : Variety vector_bundle : Sheaf fiber_dim : Integer base_dim : Integer lowerdata : Rule section : Alg } Thus we see that a Projective_bundle is a Variety with six additional fields. 15

16 16 Blowup. This class, also called BLOWUP, is defined follows: Blowup = Variety { exceptional_class : Alg blowup_map : Morphism blowup_locus : Variety locus_inclusion : Morphism } Thus we see that a Blowup is an extension of the class Variety with four additional fields.

17 17 Constructors (a sample) projective_space(n,h) constructs a Variety that implements the notion of projective space of dimension with hypeplane class. Its fields have, letting c = [binomial(n+1,j) h j with j in 1..n], the following values: dim = n gcs = [h:polynomial] degs = [1] relations = [h^(n+1)] monomials = { {h^j} with j in 1..n} monomial_values = {h^n->1} pt = h^n tan_bundle = sheaf(n,c) todd_class = todd_vector(sheaf(n,c)) grassmannian(k, n, c) constructs a Variety that implements the notion of the Grassmannian variety of planes in the dimensional projective space and with = [c1, c2,... ] = vector(c,k+1) the vector of Chern classes of the tautological bundle on G. Its fields have, letting

18 S = bundle(k+1,c), T = trivial_bundle(n+1), M = { monomial_list ( C, [1..(k+1)], j) with j in 1..(k+1) (n k) }, and Q = T / dual(s), the following values: dim = (k+1) (n-k) kind = _grassmannian_ gcs = C degs = [1..(k+1)] relations = take(invert(c,n+1),-k-1) pt = (C.(k+1))^(n-k) monomials = M monomial_values = find_monomial_values( (k+1) (n-k), C, [1..(k+1)], R, pt ) tautological_bundle = S tautological_quotient = dual(s) tan_bundle = hom(q,dual(s)) todd_class = todd_vector(hom(q,dual(s))) 18

19 blowup(i,e,f) constructs, if is a Morphism, and we let =target( ) and =source( ), the blowup, say, of along in such a way that is the exceptional class and : the projection map. 19

20 20 Enumerative geometry problems lines meeting 4 lines in lines meeting 6 planes in lines contained in a cubic in conics in meeting 8 lines conics tangent to 5 conics in the plane lines contained in 5ic in conics contained in a 5ic in

21 21 Nodal cubics in whose plane passes through a point, whose node lies on a plane, and which meets 6 lines and is tangent to 3 planes. Symbolically: to find. b

22 22 Why are these problems interesting? They have stimulated the development of modern IT. Verifying and completing Schubert s (an others) computations. Understanding why many numbers could not be computed by Schubert s symbolic calculus. They lead to interesting geometry (parameter spaces of the figures, and of their degenerate forms). It is an excellent ground for testing mathematical engines.

23 23 Algebraic geometry foundations Intersections. Let be a smooth algebraic variety of dimension and let denote the group of cycles on ( 0,1,, ). If,, be positive integers such that, then we have a map given by the intersection product. If is complete, and / 0, then there is induced map. Moreover, the degree map deg: induces a map.

24 24 deg deg,

25 25 Algebraic geometry foundations Chern classes. Given a rank vector bundle on, there are classes ( 0,1,, ) that satisfy the following properties, where we write : Normalization. If is the line bundle associated to a divisor, then 1. Functoriality. If : is a map of smooth varieties, and a vector bundle on,. Additivity. If 0 0 is an exact sequence of vector bundles on, then.

26 26 Algebraic geometry foundations Vanishing locus of a vector bundle section. If has rank, its top Chern class is. This is justified by the fact that 0 for. This class has a direct geometric interpretation: if is a section of such that has codimension, then Thus. if. deg

27 27 Algebraic geometry foundations The method of degenerations. Let be the space parameterizing the objects we are interested in (say nodal cubics in ). This space is smooth, but rarely complete. In order to be able to apply the machinery of intersection theory to solve the enumerative problem deg, suppose we are able to construct a smooth complete variey containing such that, a hypersurface of, and with the property that, where we let be the closure of in. Then we clearly have ( ). deg deg

28 28 Algebraic geometry foundations Enumerative significance. When the cycles are defined by specifying relations to other objects (data), such as meeting a line, or being tangent to a plane, Kleiman s transversality theorem guarantees that if the data are in general position then the intersection is proper and with (in characteristic 0) multiplicities 1. Therefore, in such cases the method of degenerations provides numbers with enumerative significance, in the sense that indeed are the number of (non degenerate) figures that satisfy the conditions. Terminology. The irreducible components of are usually called (first order) degenerations (of the figures parameterized by ).

29 29 Archetypal examples Chasles space of complete conics. The space is formed by the smooth conics (an open set in ). There is a compactificacion of such that the degenerations are as indicated in the picture. If is the hypersurface in of conics E tangent to a given smooth conic, then it turns out that D 6 2, where, a hyperplane in, and. Therefore, 6 2 is the number of conics tangent to 5 smooth conics in general position. Remark: can be obtained as the blow up on along the surface of double lines.

30 30 Lines meeting 4 lines in or 6 planes in # Number of lines in P^n meeting # 2*n-2 (n-2)-planes. # It is known to be binomial(2n-2,n)/(n-1) L(n):=binomial(2n-2,n)/(n-1); {L(n) with n in 3..10} # # Lines in P^3 meeting 4 lines n=3; d=2*(n-1); G=grassmannian(1,n,s); integral(g,s1^d) # Wit> 4

31 31 # Lines in P^4 meeting 6 planes n=4; d=2*(n-1); G=grassmannian(1,n,s); integral(g,s1^d) # Wit> 5

32 32 Lines contained in a cubic in # Examples: integral # 27 lines on a cubic surface in P^3 G=grassmannian(1,3,c); S=tautological_bundle\G; F=symm(3,dual(S)); c4=chern(rk\f,f) # integral(g,c4) # Wit> 27

33 33 Conics meeting 8 lines in # Planes in P^3 and the rank 3 tautological # bundle. The class c1 represents that the # plane goes through a point G=grassmannian(2,3,c); S=tautological_bundle\G; # Rank 6 bundle on G of conic equations and the # the space of conics in P^3, with tautological # class e E=symm(2,S); P=projective_bundle(G, E, e); # As 2*c1+e represents that the conic meets a # line, the number sought is given by integral(g,lowerstar(p,(2*c1+e)^8)) : ZZ # Wit> 92

34 34 Conics tangent to 5 conics in # Examples: blowup # Chasles space of complete conics P5=projective_space(5,H); S =projective_space(2,h); i=morphism(s,p5,[2*h]); X=blowup(i,e,f); integral(x,(6*h-2e)^5) # Wit> 3264

35 35 Lines contained in a 5ic in G=grassmannian(G,1,4,c); S=tautological_bundle\G; F=symm(5,dual(S)); c6=chern(rk\f,f) # integral(g,c6) # Wit> 2875

36 36 Conics contained in a 5ic in G=grassmannian(2,4,c); # Planes in P^4 S=tautological_bundle\G; # has rank 3 Q=symm(2,dual(S)); # 2ic forms, rk=6 # The projective bundle of conics P=projective_bundle(G,Q,z); S5=symm(5,dual(S)); # 5ic forms, rk=21 S3=symm(3,dual(S)); # 3ic forms, rk=10 # The rank 11 bundle of quintics restricted # to the universal conic F= S5 / ( S3 * o_(-z,p) ) ; C=chern(rk\F,F); # Top Chern class of F c=lowerstar(p,c) # pushforward of C to G # The number of conics on a quintic integral(g,c) : ZZ # Wit>

37 37 Some new Schubert tables Results for nodal cubics in Numbers Example: 6080 Numbers Example: 53772

38 38 Numbers Example: Numbers Example: 4556 Remark. The numbers in blue were determined by Schubert. Those in red read are new.w.

39 39 Some new Schubert tables Degenerations used u p x b π π x b u p Degenerations and

40 40 x b π u p Degeneration

41 41 x b u z π u p Degeneration

42 42 x b u z π u s u p Degeneration

43 43 x b x v u p = u z = u s π Degeneration

44 44 x b x v π u p = u z = u s Degeneration Remark. In this degeneration the point cubic is a triple line and there are 8 point on it: the node, ; the 3 inflections, ; and four foci that determine the dual curve. These points are not free (dimension count) and understanding the relation of each to the other 7 is a crucial step for the determination of the intersection ring, which in turn is needed for finding the numbers about nodal cubics.

45 45 References Fulton, W. Intersection Theory, 2 nd ed. Ergebnisse der Math., 3. Folge, Band 2, Springer Verlag, Hernández, X., Miret, J., Xambó, S. Computing the characteristic numbers of the variety of nodal cubics in. Journal of Symbolic Computation, 42, no. 1 2, , Kleiman, S., The transversality of a general translate. Compositio Math. 38, , Kleiman, S., Str mme, S. A. and Xambó, S. Sketch of a verification of Schubert's number of twisted cubics. Springer LNM 1266, , Miret, J., Xamb\'o, S. On the geometry of nodal cubics: the condition. Contemporary Mathematics, 123, AMS, 1991.

46 46 Miret, J., Xambó, S., Hernández, X. Completing H. Schubert's work on the enumerative geometry of cuspidal cubics in. Comm. in Algebra, 31(8), , Pandharipande, R. Intersections on divisors on Kontsevich's moduli space,, and enumerative geometry. Transactions of the American Mathematical Society, 351 (4), , Schubert, H. Kalkül der abzählenden Geometrie. Teubner, Reprint by~springer, 1879 (with a preface by S. Kleiman). Xambó Descamps, S. Using Intersection Theory. Aportaciones matemáticas, serie textos, 7. Sociedad Matemática Mexicana, 1996.

47 47 Concluding remarks Computations in intersection theory are a wonderful ground for testing the expressiveness and power of computational mathematics systems. WIT is a structured package of functions (WiP) that allows the user to express intersection theory computations in a rather compact way and with a syntax that is quite close to the mathematics involved. We have seen illustrations of its working in some archetypal examples and also in completing Schubert s tables for nodal cubics in (work to appear in the JSC: Computing some fundamental numbers of the variety of nodal cubics in. WIT is intended to be freely accessed with any one of the familiar navigators at The plain engine can be accessed at The companion system for computations in block error correction codes at

48 48 Brevity is the soul of wit (Shakespeare)

Computing the characteristic numbers of the variety of nodal plane cubics in P 3

Computing the characteristic numbers of the variety of nodal plane cubics in P 3 Journal of Symbolic Computation 42 (2007) 192 202 www.elsevier.com/locate/jsc Computing the characteristic numbers of the variety of nodal plane cubics in P 3 Xavier Hernández a, Josep M. Miret a, Sebastià

More information

The characteristic numbers of the variety of nodal plane cubics of P 3

The characteristic numbers of the variety of nodal plane cubics of P 3 The characteristic numbers of the variety of nodal plane cubics of P 3 Xavier Hernández a Josep M. Miret a Sebastià Xambó-Descamps b a Dept. Matemàtica, Univ. de Lleida, Spain b Dept. Matemàtica Aplicada

More information

Journal of Symbolic Computation. Computing some fundamental numbers of the variety of nodal cubics in P 3

Journal of Symbolic Computation. Computing some fundamental numbers of the variety of nodal cubics in P 3 Journal of Symbolic Computation 44 (2009) 1425 1447 Contents lists available at ScienceDirect Journal of Symbolic Computation journal homepage: www.elsevier.com/locate/jsc Computing some fundamental numbers

More information

PROBLEMS FOR VIASM MINICOURSE: GEOMETRY OF MODULI SPACES LAST UPDATED: DEC 25, 2013

PROBLEMS FOR VIASM MINICOURSE: GEOMETRY OF MODULI SPACES LAST UPDATED: DEC 25, 2013 PROBLEMS FOR VIASM MINICOURSE: GEOMETRY OF MODULI SPACES LAST UPDATED: DEC 25, 2013 1. Problems on moduli spaces The main text for this material is Harris & Morrison Moduli of curves. (There are djvu files

More information

Intersection Theory course notes

Intersection Theory course notes Intersection Theory course notes Valentina Kiritchenko Fall 2013, Faculty of Mathematics, NRU HSE 1. Lectures 1-2: examples and tools 1.1. Motivation. Intersection theory had been developed in order to

More information

Vector bundles in Algebraic Geometry Enrique Arrondo. 1. The notion of vector bundle

Vector bundles in Algebraic Geometry Enrique Arrondo. 1. The notion of vector bundle Vector bundles in Algebraic Geometry Enrique Arrondo Notes(* prepared for the First Summer School on Complex Geometry (Villarrica, Chile 7-9 December 2010 1 The notion of vector bundle In affine geometry,

More information

Numbers for reducible cubic scrolls

Numbers for reducible cubic scrolls Anais da Academia Brasileira de Ciências (2004) 76(4): 645-650 (Annals of the Brazilian Academy of Sciences) ISSN 0001-3765 www.scielo.br/aabc Numbers for reducible cubic scrolls ISRAEL VAINSENCHER 1 and

More information

where m is the maximal ideal of O X,p. Note that m/m 2 is a vector space. Suppose that we are given a morphism

where m is the maximal ideal of O X,p. Note that m/m 2 is a vector space. Suppose that we are given a morphism 8. Smoothness and the Zariski tangent space We want to give an algebraic notion of the tangent space. In differential geometry, tangent vectors are equivalence classes of maps of intervals in R into the

More information

Resolution of Singularities in Algebraic Varieties

Resolution of Singularities in Algebraic Varieties Resolution of Singularities in Algebraic Varieties Emma Whitten Summer 28 Introduction Recall that algebraic geometry is the study of objects which are or locally resemble solution sets of polynomial equations.

More information

arxiv: v1 [math.ag] 28 Sep 2016

arxiv: v1 [math.ag] 28 Sep 2016 LEFSCHETZ CLASSES ON PROJECTIVE VARIETIES JUNE HUH AND BOTONG WANG arxiv:1609.08808v1 [math.ag] 28 Sep 2016 ABSTRACT. The Lefschetz algebra L X of a smooth complex projective variety X is the subalgebra

More information

Enumerative geometry of hyperplane arrangements

Enumerative geometry of hyperplane arrangements Enumerative geometry of hyperplane Max Department of Mathematics US Naval Academy Joint work with Will Traves and Thomas Paul Partially supported by the Simons Foundation and the Office of Naval Research.

More information

The tangent space to an enumerative problem

The tangent space to an enumerative problem The tangent space to an enumerative problem Prakash Belkale Department of Mathematics University of North Carolina at Chapel Hill North Carolina, USA belkale@email.unc.edu ICM, Hyderabad 2010. Enumerative

More information

ON THE USE OF PARAMETER AND MODULI SPACES IN CURVE COUNTING

ON THE USE OF PARAMETER AND MODULI SPACES IN CURVE COUNTING ON THE USE OF PARAMETER AND MODULI SPACES IN CURVE COUNTING RAGNI PIENE In order to solve problems in enumerative algebraic geometry, one works with various kinds of parameter or moduli spaces:chow varieties,

More information

MODULI SPACES OF CURVES

MODULI SPACES OF CURVES MODULI SPACES OF CURVES SCOTT NOLLET Abstract. My goal is to introduce vocabulary and present examples that will help graduate students to better follow lectures at TAGS 2018. Assuming some background

More information

Porteous s Formula for Maps between Coherent Sheaves

Porteous s Formula for Maps between Coherent Sheaves Michigan Math. J. 52 (2004) Porteous s Formula for Maps between Coherent Sheaves Steven P. Diaz 1. Introduction Recall what the Thom Porteous formula for vector bundles tells us (see [2, Sec. 14.4] for

More information

Curve counting and generating functions

Curve counting and generating functions Curve counting and generating functions Ragni Piene Università di Roma Tor Vergata February 26, 2010 Count partitions Let n be an integer. How many ways can you write n as a sum of two positive integers?

More information

Counting curves on a surface

Counting curves on a surface Counting curves on a surface Ragni Piene Centre of Mathematics for Applications and Department of Mathematics, University of Oslo University of Pennsylvania, May 6, 2005 Enumerative geometry Specialization

More information

arxiv:math/ v1 [math.ag] 2 Dec 1998

arxiv:math/ v1 [math.ag] 2 Dec 1998 THE CHARACTERISTIC NUMBERS OF QUARTIC PLANE CURVES RAVI VAKIL arxiv:math/9812018v1 [math.ag] 2 Dec 1998 Abstract. The characteristic numbers of smooth plane quartics are computed using intersection theory

More information

David Eklund. May 12, 2017

David Eklund. May 12, 2017 KTH Stockholm May 12, 2017 1 / 44 Isolated roots of polynomial systems Let f 1,..., f n C[x 0,..., x n ] be homogeneous and consider the subscheme X P n defined by the ideal (f 1,..., f n ). 2 / 44 Isolated

More information

STABLE BASE LOCUS DECOMPOSITIONS OF KONTSEVICH MODULI SPACES

STABLE BASE LOCUS DECOMPOSITIONS OF KONTSEVICH MODULI SPACES STABLE BASE LOCUS DECOMPOSITIONS OF KONTSEVICH MODULI SPACES DAWEI CHEN AND IZZET COSKUN Abstract. In this paper, we determine the stable base locus decomposition of the Kontsevich moduli spaces of degree

More information

SPACES OF RATIONAL CURVES ON COMPLETE INTERSECTIONS

SPACES OF RATIONAL CURVES ON COMPLETE INTERSECTIONS SPACES OF RATIONAL CURVES ON COMPLETE INTERSECTIONS ROYA BEHESHTI AND N. MOHAN KUMAR Abstract. We prove that the space of smooth rational curves of degree e on a general complete intersection of multidegree

More information

SPACES OF RATIONAL CURVES IN COMPLETE INTERSECTIONS

SPACES OF RATIONAL CURVES IN COMPLETE INTERSECTIONS SPACES OF RATIONAL CURVES IN COMPLETE INTERSECTIONS ROYA BEHESHTI AND N. MOHAN KUMAR Abstract. We prove that the space of smooth rational curves of degree e in a general complete intersection of multidegree

More information

MT845: INTERSECTION THEORY, MODULI SPACE AND ENUMERATIVE GEOMETRY

MT845: INTERSECTION THEORY, MODULI SPACE AND ENUMERATIVE GEOMETRY MT845: INTERSECTION THEORY, MODULI SPACE AND ENUMERATIVE GEOMETRY DAWEI CHEN Contents 1. Chow ring 1 2. Chern class 14 3. Grassmannians 20 4. Fano scheme 26 5. Singular hypersurfaces 32 6. Stable maps

More information

Enumerative Geometry: from Classical to Modern

Enumerative Geometry: from Classical to Modern : from Classical to Modern February 28, 2008 Summary Classical enumerative geometry: examples Modern tools: Gromov-Witten invariants counts of holomorphic maps Insights from string theory: quantum cohomology:

More information

Chern classes à la Grothendieck

Chern classes à la Grothendieck Chern classes à la Grothendieck Theo Raedschelders October 16, 2014 Abstract In this note we introduce Chern classes based on Grothendieck s 1958 paper [4]. His approach is completely formal and he deduces

More information

arxiv: v1 [math.ag] 14 Dec 2016

arxiv: v1 [math.ag] 14 Dec 2016 Some elementary remarks on lci algebraic cycles arxiv:1612.04570v1 [math.ag] 14 Dec 2016 M. Maggesi and G. Vezzosi Dipartimento di Matematica ed Informatica Università di Firenze - Italy Notes for students

More information

SEPARABLE RATIONAL CONNECTEDNESS AND STABILITY

SEPARABLE RATIONAL CONNECTEDNESS AND STABILITY SEPARABLE RATIONAL CONNECTEDNESS AND STABILIT ZHIU TIAN Abstract. In this short note we prove that in many cases the failure of a variety to be separably rationally connected is caused by the instability

More information

STABLE BASE LOCUS DECOMPOSITIONS OF KONTSEVICH MODULI SPACES

STABLE BASE LOCUS DECOMPOSITIONS OF KONTSEVICH MODULI SPACES STABLE BASE LOCUS DECOMPOSITIONS OF KONTSEVICH MODULI SPACES DAWEI CHEN AND IZZET COSKUN Contents 1. Introduction 1 2. Preliminary definitions and background 3 3. Degree two maps to Grassmannians 4 4.

More information

ON THE INTERSECTION THEORY OF QUOT SCHEMES AND MODULI OF BUNDLES WITH SECTIONS

ON THE INTERSECTION THEORY OF QUOT SCHEMES AND MODULI OF BUNDLES WITH SECTIONS ON THE INTERSECTION THEORY OF QUOT SCHEMES AND MODULI OF BUNDLES WITH SECTIONS ALINA MARIAN Abstract. We consider a class of tautological top intersection products on the moduli space of stable pairs consisting

More information

Corollary. Let X Y be a dominant map of varieties, with general fiber F. If Y and F are rationally connected, then X is.

Corollary. Let X Y be a dominant map of varieties, with general fiber F. If Y and F are rationally connected, then X is. 1 Theorem. Let π : X B be a proper morphism of varieties, with B a smooth curve. If the general fiber F of f is rationally connected, then f has a section. Corollary. Let X Y be a dominant map of varieties,

More information

the complete linear series of D. Notice that D = PH 0 (X; O X (D)). Given any subvectorspace V H 0 (X; O X (D)) there is a rational map given by V : X

the complete linear series of D. Notice that D = PH 0 (X; O X (D)). Given any subvectorspace V H 0 (X; O X (D)) there is a rational map given by V : X 2. Preliminaries 2.1. Divisors and line bundles. Let X be an irreducible complex variety of dimension n. The group of k-cycles on X is Z k (X) = fz linear combinations of subvarieties of dimension kg:

More information

Introduction to Arithmetic Geometry Fall 2013 Lecture #17 11/05/2013

Introduction to Arithmetic Geometry Fall 2013 Lecture #17 11/05/2013 18.782 Introduction to Arithmetic Geometry Fall 2013 Lecture #17 11/05/2013 Throughout this lecture k denotes an algebraically closed field. 17.1 Tangent spaces and hypersurfaces For any polynomial f k[x

More information

Enumerative Geometry Steven Finch. February 24, 2014

Enumerative Geometry Steven Finch. February 24, 2014 Enumerative Geometry Steven Finch February 24, 204 Given a complex projective variety V (as defined in []), we wish to count the curves in V that satisfy certain prescribed conditions. Let C f denote complex

More information

GRASSMANNIANS: THE FIRST EXAMPLE OF A MODULI SPACE

GRASSMANNIANS: THE FIRST EXAMPLE OF A MODULI SPACE GRASSMANNIANS: THE FIRST EXAMPLE OF A MODULI SPACE 1. What is this course about? Many objects of algebraic geometry, such as subspaces of a linear space, smooth curves of genus g, or stable vector bundles

More information

MA 206 notes: introduction to resolution of singularities

MA 206 notes: introduction to resolution of singularities MA 206 notes: introduction to resolution of singularities Dan Abramovich Brown University March 4, 2018 Abramovich Introduction to resolution of singularities 1 / 31 Resolution of singularities Let k be

More information

version corrected on 21/9/12

version corrected on 21/9/12 ( ) version corrected on 21/9/12 Degrees of Noether-Lefschetz loci Israel Vainsencher joint with Fernando Cukierman, Angelo Lopez, José Alberto Maia & Adriana Rodrigues partially supported by The Noether-Lefschetz

More information

Igor R. Shafarevich: Basic Algebraic Geometry 2

Igor R. Shafarevich: Basic Algebraic Geometry 2 Igor R. Shafarevich: Basic Algebraic Geometry 2 Igor R. Shafarevich Basic Algebraic Geometry 2 Second, Revised and Expanded Edition Springer-Verlag Berlin Heidelberg GmbH Igor R. Shafarevich Steklov Mathematical

More information

The Cone Theorem. Stefano Filipazzi. February 10, 2016

The Cone Theorem. Stefano Filipazzi. February 10, 2016 The Cone Theorem Stefano Filipazzi February 10, 2016 These notes are supposed to be a handout for the student seminar in algebraic geometry at the University of Utah. In this seminar, we will give an overview

More information

INDRANIL BISWAS AND GEORG HEIN

INDRANIL BISWAS AND GEORG HEIN GENERALIZATION OF A CRITERION FOR SEMISTABLE VECTOR BUNDLES INDRANIL BISWAS AND GEORG HEIN Abstract. It is known that a vector bundle E on a smooth projective curve Y defined over an algebraically closed

More information

Algebraic Cobordism. 2nd German-Chinese Conference on Complex Geometry East China Normal University Shanghai-September 11-16, 2006.

Algebraic Cobordism. 2nd German-Chinese Conference on Complex Geometry East China Normal University Shanghai-September 11-16, 2006. Algebraic Cobordism 2nd German-Chinese Conference on Complex Geometry East China Normal University Shanghai-September 11-16, 2006 Marc Levine Outline: Describe the setting of oriented cohomology over a

More information

THE ENVELOPE OF LINES MEETING A FIXED LINE AND TANGENT TO TWO SPHERES

THE ENVELOPE OF LINES MEETING A FIXED LINE AND TANGENT TO TWO SPHERES 6 September 2004 THE ENVELOPE OF LINES MEETING A FIXED LINE AND TANGENT TO TWO SPHERES Abstract. We study the set of lines that meet a fixed line and are tangent to two spheres and classify the configurations

More information

AN INFORMAL INTRODUCTION TO COMPUTING WITH CHERN CLASSES IN ALGEBRAIC GEOMETRY

AN INFORMAL INTRODUCTION TO COMPUTING WITH CHERN CLASSES IN ALGEBRAIC GEOMETRY AN INFORMAL INTRODUCTION TO COMPUTING WITH CHERN CLASSES IN ALGEBRAIC GEOMETRY ZACH TEITLER This is a draft version of these notes. 1. Introduction Chern classes are objects associated to vector bundles.

More information

LECTURE 6: THE ARTIN-MUMFORD EXAMPLE

LECTURE 6: THE ARTIN-MUMFORD EXAMPLE LECTURE 6: THE ARTIN-MUMFORD EXAMPLE In this chapter we discuss the example of Artin and Mumford [AM72] of a complex unirational 3-fold which is not rational in fact, it is not even stably rational). As

More information

ON A THEOREM OF CAMPANA AND PĂUN

ON A THEOREM OF CAMPANA AND PĂUN ON A THEOREM OF CAMPANA AND PĂUN CHRISTIAN SCHNELL Abstract. Let X be a smooth projective variety over the complex numbers, and X a reduced divisor with normal crossings. We present a slightly simplified

More information

Oral exam practice problems: Algebraic Geometry

Oral exam practice problems: Algebraic Geometry Oral exam practice problems: Algebraic Geometry Alberto García Raboso TP1. Let Q 1 and Q 2 be the quadric hypersurfaces in P n given by the equations f 1 x 2 0 + + x 2 n = 0 f 2 a 0 x 2 0 + + a n x 2 n

More information

12. Hilbert Polynomials and Bézout s Theorem

12. Hilbert Polynomials and Bézout s Theorem 12. Hilbert Polynomials and Bézout s Theorem 95 12. Hilbert Polynomials and Bézout s Theorem After our study of smooth cubic surfaces in the last chapter, let us now come back to the general theory of

More information

Pacific Journal of Mathematics

Pacific Journal of Mathematics Pacific Journal of Mathematics STABLE REFLEXIVE SHEAVES ON SMOOTH PROJECTIVE 3-FOLDS PETER VERMEIRE Volume 219 No. 2 April 2005 PACIFIC JOURNAL OF MATHEMATICS Vol. 219, No. 2, 2005 STABLE REFLEXIVE SHEAVES

More information

ALGEBRAIC HYPERBOLICITY OF THE VERY GENERAL QUINTIC SURFACE IN P 3

ALGEBRAIC HYPERBOLICITY OF THE VERY GENERAL QUINTIC SURFACE IN P 3 ALGEBRAIC HYPERBOLICITY OF THE VERY GENERAL QUINTIC SURFACE IN P 3 IZZET COSKUN AND ERIC RIEDL Abstract. We prove that a curve of degree dk on a very general surface of degree d 5 in P 3 has geometric

More information

On Severi varieties of nodal curves on K3 surfaces

On Severi varieties of nodal curves on K3 surfaces Università di Roma Tor Vergata, Italy (joint work with Th. Dedieu, University of Toulouse) Trento, September, 2010 K3 surfaces In this talk I will present some irreducibility result concerning Severi varieties

More information

BRILL-NOETHER THEORY. This article follows the paper of Griffiths and Harris, "On the variety of special linear systems on a general algebraic curve.

BRILL-NOETHER THEORY. This article follows the paper of Griffiths and Harris, On the variety of special linear systems on a general algebraic curve. BRILL-NOETHER THEORY TONY FENG This article follows the paper of Griffiths and Harris, "On the variety of special linear systems on a general algebraic curve." 1. INTRODUCTION Brill-Noether theory is concerned

More information

Plane quartics and Fano threefolds of genus twelve

Plane quartics and Fano threefolds of genus twelve Plane quartics and Fano threefolds of genus twelve Shigeru MUKAI 288 triangles are strictly biscribed by a plane quartic curve C P 2 = P 2 (C). Two computations of this number will be presented. This number

More information

9. Birational Maps and Blowing Up

9. Birational Maps and Blowing Up 72 Andreas Gathmann 9. Birational Maps and Blowing Up In the course of this class we have already seen many examples of varieties that are almost the same in the sense that they contain isomorphic dense

More information

COMPLEX ALGEBRAIC SURFACES CLASS 15

COMPLEX ALGEBRAIC SURFACES CLASS 15 COMPLEX ALGEBRAIC SURFACES CLASS 15 RAVI VAKIL CONTENTS 1. Every smooth cubic has 27 lines, and is the blow-up of P 2 at 6 points 1 1.1. An alternate approach 4 2. Castelnuovo s Theorem 5 We now know that

More information

The geometry of Landau-Ginzburg models

The geometry of Landau-Ginzburg models Motivation Toric degeneration Hodge theory CY3s The Geometry of Landau-Ginzburg Models January 19, 2016 Motivation Toric degeneration Hodge theory CY3s Plan of talk 1. Landau-Ginzburg models and mirror

More information

The Reducibility and Dimension of Hilbert Schemes of Complex Projective Curves

The Reducibility and Dimension of Hilbert Schemes of Complex Projective Curves The Reducibility and Dimension of Hilbert Schemes of Complex Projective Curves Krishna Dasaratha dasaratha@college.harvard.edu Advisor: Joe Harris Submitted to the Department of Mathematics in partial

More information

Introduction Curves Surfaces Curves on surfaces. Curves and surfaces. Ragni Piene Centre of Mathematics for Applications, University of Oslo, Norway

Introduction Curves Surfaces Curves on surfaces. Curves and surfaces. Ragni Piene Centre of Mathematics for Applications, University of Oslo, Norway Curves and surfaces Ragni Piene Centre of Mathematics for Applications, University of Oslo, Norway What is algebraic geometry? IMA, April 13, 2007 Outline Introduction Curves Surfaces Curves on surfaces

More information

Ordinary Flops. CHIN-LUNG WANG (NCU and NCTS) (Joint work with H.-W. Lin)

Ordinary Flops. CHIN-LUNG WANG (NCU and NCTS) (Joint work with H.-W. Lin) Ordinary Flops CHIN-LUNG WANG (NCU and NCTS) (Joint work with H.-W. Lin) September 6, 2004 CONTENTS 1. Ordinary flips/flops and local models 2. Chow motives and Poincaré pairing 3. Ordinary/quantum product

More information

APPENDIX 3: AN OVERVIEW OF CHOW GROUPS

APPENDIX 3: AN OVERVIEW OF CHOW GROUPS APPENDIX 3: AN OVERVIEW OF CHOW GROUPS We review in this appendix some basic definitions and results that we need about Chow groups. For details and proofs we refer to [Ful98]. In particular, we discuss

More information

The Grothendieck Ring of Varieties

The Grothendieck Ring of Varieties The Grothendieck Ring of Varieties Ziwen Zhu University of Utah October 25, 2016 These are supposed to be the notes for a talk of the student seminar in algebraic geometry. In the talk, We will first define

More information

Basic Algebraic Geometry 1

Basic Algebraic Geometry 1 Igor R. Shafarevich Basic Algebraic Geometry 1 Second, Revised and Expanded Edition Springer-Verlag Berlin Heidelberg New York London Paris Tokyo HongKong Barcelona Budapest Table of Contents Volume 1

More information

From de Jonquières Counts to Cohomological Field Theories

From de Jonquières Counts to Cohomological Field Theories From de Jonquières Counts to Cohomological Field Theories Mara Ungureanu Women at the Intersection of Mathematics and High Energy Physics 9 March 2017 What is Enumerative Geometry? How many geometric structures

More information

ABEL-JACOBI MAPS ASSOCIATED TO SMOOTH CUBIC THREEFOLDS. Contents. 1. Introduction

ABEL-JACOBI MAPS ASSOCIATED TO SMOOTH CUBIC THREEFOLDS. Contents. 1. Introduction ABEL-JACOBI MAPS ASSOCIATED TO SMOOTH CUBIC THREEFOLDS JOE HARRIS, MIKE ROTH, AND JASON STARR Contents 1. Introduction 1 2. Review of the Abel-Jacobi Map 3 3. Lines, Conics and Plane Cubics 4 4. Twisted

More information

Generating functions and enumerative geometry

Generating functions and enumerative geometry Generating functions and enumerative geometry Ragni Piene Centre of Mathematics for Applications and Department of Mathematics, University of Oslo October 26, 2005 KTH, Stockholm Generating functions Enumerative

More information

Rational curves on general type hypersurfaces

Rational curves on general type hypersurfaces Rational curves on general type hypersurfaces Eric Riedl and David Yang May 5, 01 Abstract We develop a technique that allows us to prove results about subvarieties of general type hypersurfaces. As an

More information

arxiv: v1 [math.ag] 11 Nov 2009

arxiv: v1 [math.ag] 11 Nov 2009 REALITY AND TRANSVERSALITY FOR SCHUBERT CALCULUS IN OG(n, 2n+1) arxiv:0911.2039v1 [math.ag] 11 Nov 2009 KEVIN PURBHOO Abstract. We prove an analogue of the Mukhin-Tarasov-Varchenko theorem (formerly the

More information

BRILL-NOETHER THEORY, II

BRILL-NOETHER THEORY, II This article follows the paper of Griffiths and Harris, "On the variety of special linear systems on a general algebraic curve" 1 WARMUP ON DEGENERATIONS The classic first problem in Schubert calculus

More information

Special cubic fourfolds

Special cubic fourfolds Special cubic fourfolds 1 Hodge diamonds Let X be a cubic fourfold, h H 2 (X, Z) be the (Poincaré dual to the) hyperplane class. We have h 4 = deg(x) = 3. By the Lefschetz hyperplane theorem, one knows

More information

INTERSECTION THEORY CLASS 6

INTERSECTION THEORY CLASS 6 INTERSECTION THEORY CLASS 6 RAVI VAKIL CONTENTS 1. Divisors 2 1.1. Crash course in Cartier divisors and invertible sheaves (aka line bundles) 3 1.2. Pseudo-divisors 3 2. Intersecting with divisors 4 2.1.

More information

GRASSMANNIANS: THE FIRST EXAMPLE OF A MODULI SPACE

GRASSMANNIANS: THE FIRST EXAMPLE OF A MODULI SPACE GRASSMANNIANS: THE FIRST EXAMPLE OF A MODULI SPACE 1. What is a moduli problem? Many objects in algebraic geometry vary in algebraically defined families. For example, a conic in P 2 has an equation of

More information

Preliminary Exam Topics Sarah Mayes

Preliminary Exam Topics Sarah Mayes Preliminary Exam Topics Sarah Mayes 1. Sheaves Definition of a sheaf Definition of stalks of a sheaf Definition and universal property of sheaf associated to a presheaf [Hartshorne, II.1.2] Definition

More information

Non-uniruledness results for spaces of rational curves in hypersurfaces

Non-uniruledness results for spaces of rational curves in hypersurfaces Non-uniruledness results for spaces of rational curves in hypersurfaces Roya Beheshti Abstract We prove that the sweeping components of the space of smooth rational curves in a smooth hypersurface of degree

More information

Lecture 1. Renzo Cavalieri

Lecture 1. Renzo Cavalieri Lecture 1 Renzo Cavalieri Enumerative Geometry Enumerative geometry is an ancient branch of mathematics that is concerned with counting geometric objects that satisfy a certain number of geometric conditions.

More information

COUNTING ELLIPTIC PLANE CURVES

COUNTING ELLIPTIC PLANE CURVES PROCEEDINGS OF THE AMERICAN MATHEMATICAL SOCIETY Volume 125, Number 12, December 1997, Pages 3471 3479 S 0002-9939(97)04136-1 COUNTING ELLIPTIC PLANE CURVES WITH FIXED j-invariant RAHUL PANDHARIPANDE (Communicated

More information

FREE DIVISORS IN A PENCIL OF CURVES

FREE DIVISORS IN A PENCIL OF CURVES Journal of Singularities Volume 11 (2015), 190-197 received: 17 February 2015 in revised form: 26 June 2015 DOI: 10.5427/jsing.2015.11h FREE DIVISORS IN A PENCIL OF CURVES JEAN VALLÈS Abstract. A plane

More information

Euclidean projective geometry: reciprocal polar varieties and focal loci

Euclidean projective geometry: reciprocal polar varieties and focal loci Euclidean projective geometry: reciprocal polar varieties and focal loci Ragni Piene Boris 60 Stockholm University June 1, 2017 Pole and polars in the plane Let Q be a conic section. Let P be a point in

More information

A TASTE OF TWO-DIMENSIONAL COMPLEX ALGEBRAIC GEOMETRY. We also have an isomorphism of holomorphic vector bundles

A TASTE OF TWO-DIMENSIONAL COMPLEX ALGEBRAIC GEOMETRY. We also have an isomorphism of holomorphic vector bundles A TASTE OF TWO-DIMENSIONAL COMPLEX ALGEBRAIC GEOMETRY LIVIU I. NICOLAESCU ABSTRACT. These are notes for a talk at a topology seminar at ND.. GENERAL FACTS In the sequel, for simplicity we denote the complex

More information

ELLIPTIC CURVES BJORN POONEN

ELLIPTIC CURVES BJORN POONEN ELLIPTIC CURVES BJORN POONEN 1. Introduction The theme of this lecture is to show how geometry can be used to understand the rational number solutions to a polynomial equation. We will illustrate this

More information

12. Linear systems Theorem Let X be a scheme over a ring A. (1) If φ: X P n A is an A-morphism then L = φ O P n

12. Linear systems Theorem Let X be a scheme over a ring A. (1) If φ: X P n A is an A-morphism then L = φ O P n 12. Linear systems Theorem 12.1. Let X be a scheme over a ring A. (1) If φ: X P n A is an A-morphism then L = φ O P n A (1) is an invertible sheaf on X, which is generated by the global sections s 0, s

More information

INTERPOLATION PROBLEMS: DEL PEZZO SURFACES

INTERPOLATION PROBLEMS: DEL PEZZO SURFACES INTERPOLATION PROBLEMS: DEL PEZZO SURFACES AARON LANDESMAN AND ANAND PATEL Abstract. We consider the problem of interpolating projective varieties through points and linear spaces. After proving general

More information

Examples of numerics in commutative algebra and algebraic geo

Examples of numerics in commutative algebra and algebraic geo Examples of numerics in commutative algebra and algebraic geometry MCAAG - JuanFest Colorado State University May 16, 2016 Portions of this talk include joint work with: Sandra Di Rocco David Eklund Michael

More information

FROBENIUS MORPHISM AND VECTOR BUNDLES ON CYCLES OF PROJECTIVE LINES

FROBENIUS MORPHISM AND VECTOR BUNDLES ON CYCLES OF PROJECTIVE LINES FROBENIUS MORPHISM AND VECTOR BUNDLES ON CYCLES OF PROJECTIVE LINES IGOR BURBAN Abstract. In this paper we describe the action of the Frobenius morphism on the indecomposable vector bundles on cycles of

More information

arxiv:alg-geom/ v1 21 Mar 1996

arxiv:alg-geom/ v1 21 Mar 1996 AN INTERSECTION NUMBER FOR THE PUNCTUAL HILBERT SCHEME OF A SURFACE arxiv:alg-geom/960305v 2 Mar 996 GEIR ELLINGSRUD AND STEIN ARILD STRØMME. Introduction Let S be a smooth projective surface over an algebraically

More information

On the Virtual Fundamental Class

On the Virtual Fundamental Class On the Virtual Fundamental Class Kai Behrend The University of British Columbia Seoul, August 14, 2014 http://www.math.ubc.ca/~behrend/talks/seoul14.pdf Overview Donaldson-Thomas theory: counting invariants

More information

Paolo Aluffi Mathematics Department, Florida State University

Paolo Aluffi Mathematics Department, Florida State University SINGULAR SCHEMES OF HYPERSURFACES Paolo Aluffi Mathematics Department, Florida State University June 1996 Contents 0. Introduction 1. The µ-class of the singularity of a hypersurface 2. Relations with

More information

FOUNDATIONS OF ALGEBRAIC GEOMETRY CLASS 37

FOUNDATIONS OF ALGEBRAIC GEOMETRY CLASS 37 FOUNDATIONS OF ALGEBRAIC GEOMETRY CLASS 37 RAVI VAKIL CONTENTS 1. Application of cohomology: Hilbert polynomials and functions, Riemann- Roch, degrees, and arithmetic genus 1 1. APPLICATION OF COHOMOLOGY:

More information

Characteristic classes in the Chow ring

Characteristic classes in the Chow ring arxiv:alg-geom/9412008v1 10 Dec 1994 Characteristic classes in the Chow ring Dan Edidin and William Graham Department of Mathematics University of Chicago Chicago IL 60637 Let G be a reductive algebraic

More information

April 20, 2006 ALGEBRAIC VARIETIES OVER PAC FIELDS

April 20, 2006 ALGEBRAIC VARIETIES OVER PAC FIELDS April 20, 2006 ALGEBRAIC VARIETIES OVER PAC FIELDS A field is called PAC (pseudo algebraically closed) if every geometrically integral k-variety has a k-point. (A k-variety X is called geometrically integral

More information

Semistability of certain bundles on a quintic Calabi-Yau threefold.

Semistability of certain bundles on a quintic Calabi-Yau threefold. Semistability of certain bundles on a quintic Calabi-Yau threefold. Maria Chiara Brambilla Dipartimento di Matematica e Applicazioni per l Architettura, Università di Firenze, piazza Ghiberti, 27, 50122

More information

TWO LECTURES ON APOLARITY AND THE VARIETY OF SUMS OF POWERS

TWO LECTURES ON APOLARITY AND THE VARIETY OF SUMS OF POWERS TWO LECTURES ON APOLARITY AND THE VARIETY OF SUMS OF POWERS KRISTIAN RANESTAD (OSLO), LUKECIN, 5.-6.SEPT 2013 1. Apolarity, Artinian Gorenstein rings and Arithmetic Gorenstein Varieties 1.1. Motivating

More information

Algebraic Geometry. Andreas Gathmann. Class Notes TU Kaiserslautern 2014

Algebraic Geometry. Andreas Gathmann. Class Notes TU Kaiserslautern 2014 Algebraic Geometry Andreas Gathmann Class Notes TU Kaiserslautern 2014 Contents 0. Introduction......................... 3 1. Affine Varieties........................ 9 2. The Zariski Topology......................

More information

Characteristic Classes, Chern Classes and Applications to Intersection Theory

Characteristic Classes, Chern Classes and Applications to Intersection Theory Characteristic Classes, Chern Classes and Applications to Intersection Theory HUANG, Yifeng Aug. 19, 2014 Contents 1 Introduction 2 2 Cohomology 2 2.1 Preliminaries................................... 2

More information

ROST S DEGREE FORMULA

ROST S DEGREE FORMULA ROST S DEGREE FORMULA ALEXANDER MERKURJEV Some parts of algebraic quadratic form theory and theory of simple algebras with involutions) can be translated into the language of algebraic geometry. Example

More information

Local properties of plane algebraic curves

Local properties of plane algebraic curves Chapter 7 Local properties of plane algebraic curves Throughout this chapter let K be an algebraically closed field of characteristic zero, and as usual let A (K) be embedded into P (K) by identifying

More information

Splitting criterion for reflexive sheaves

Splitting criterion for reflexive sheaves Splitting criterion for reflexive sheaves TAKURO ABE MASAHIKO YOSHINAGA April 6, 2005 Abstract The purpose of this paper is to study the structure of reflexive sheaves over projective spaces through hyperplane

More information

I. Why Quantum K-theory?

I. Why Quantum K-theory? Quantum groups and Quantum K-theory Andrei Okounkov in collaboration with M. Aganagic, D. Maulik, N. Nekrasov, A. Smirnov,... I. Why Quantum K-theory? mathematical physics mathematics algebraic geometry

More information

LINKED ALTERNATING FORMS AND LINKED SYMPLECTIC GRASSMANNIANS

LINKED ALTERNATING FORMS AND LINKED SYMPLECTIC GRASSMANNIANS LINKED ALTERNATING FORMS AND LINKED SYMPLECTIC GRASSMANNIANS BRIAN OSSERMAN AND MONTSERRAT TEIXIDOR I BIGAS Abstract. Motivated by applications to higher-rank Brill-Noether theory and the Bertram-Feinberg-Mukai

More information

LECTURE 5, FRIDAY

LECTURE 5, FRIDAY LECTURE 5, FRIDAY 20.02.04 FRANZ LEMMERMEYER Before we start with the arithmetic of elliptic curves, let us talk a little bit about multiplicities, tangents, and singular points. 1. Tangents How do we

More information

On the tautological ring of M g,n

On the tautological ring of M g,n Proceedings of 7 th Gökova Geometry-Topology Conference, pp, 1 7 On the tautological ring of M g,n Tom Graber and Ravi Vakil 1. Introduction The purpose of this note is to prove: Theorem 1.1. R 0 (M g,n

More information

Hodge Theory of Maps

Hodge Theory of Maps Hodge Theory of Maps Migliorini and de Cataldo June 24, 2010 1 Migliorini 1 - Hodge Theory of Maps The existence of a Kähler form give strong topological constraints via Hodge theory. Can we get similar

More information

Intersection Theory I

Intersection Theory I Jessica Sidman Mount Holyoke College Partial support from NSF grant DMS-0600471 Clare Boothe Luce Program April 15, 2007 Systems of polynomial equations: varieties A homogeneous system of linear equations:

More information