<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vivatsgasse 7</title>
	<atom:link href="http://vivatsgasse7.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vivatsgasse7.wordpress.com</link>
	<description>Comments on arithmetic algebraic geometry by four PhD students at the Max-Planck-Institute for Mathematics, Bonn</description>
	<lastBuildDate>Wed, 14 Dec 2011 08:55:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vivatsgasse7.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vivatsgasse 7</title>
		<link>http://vivatsgasse7.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vivatsgasse7.wordpress.com/osd.xml" title="Vivatsgasse 7" />
	<atom:link rel='hub' href='http://vivatsgasse7.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tricks using PARI</title>
		<link>http://vivatsgasse7.wordpress.com/2007/11/10/tricks-using-pari/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/11/10/tricks-using-pari/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 12:40:18 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[PARI]]></category>
		<category><![CDATA[gp]]></category>
		<category><![CDATA[math]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/11/10/tricks-using-pari/</guid>
		<description><![CDATA[I always use PARI when I need to do computations and I am a big fan of this little program. I believe that it is possible to do in PARI everything you can do with such big programs as Maple and Mathematica. Well&#8230; almost everything. Here I&#8217;d like to present some tricks to do things [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=31&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I always use <a href="http://pari.math.u-bordeaux.fr/" target="_blank">PARI</a> when I need to do computations and I am a big fan of this little program. I believe that it is possible to do in PARI everything you can do with such big programs as Maple and Mathematica. Well&#8230; almost everything. Here I&#8217;d like to present some tricks to do things in PARI that seem impossible from first sight, or just convenient hints. Readers are very welcome to publish their own tricks in comments. This way we may create something like a library of tricks.</p>
<h4><span id="more-31"></span>Weird functions</h4>
<p>Ok, which kind of functions you can use in PARI? Polynomials in several variables, rational functions in several variables are o.k., power series (in several variables also!). There is one thing you can do in one variable and cannot do with several. It is</p>
<h4>Factoring polynomials.</h4>
<p>Suppose you want to factor something like this:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=x%5E2%2B2+x+y+%2B+y%5E2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x^2+2 x y + y^2' title='x^2+2 x y + y^2' class='latex' /></p>
<p>Here is a solution, which I heard from Don Zagier. You substitute in place of y some big number. I think he prefers to use some big prime numbers, but to me any big number will do the job. Then factor the resulting polynomial as a polynomial in x, then if it does not factor you know it is irreducible. If it factors you try to guess the factors as polynomials in x and y:</p>
<pre>(11:22) gp &gt; x^2+2*x*y+y^2
%1 = x^2 + 2*y*x + y^2
(11:23) gp &gt; factor(%)
  *** factor: sorry, factor for general polynomials is not yet implemented.
(11:23) gp &gt; subst(%,y,100000000)
%2 = x^2 + 200000000*x + 10000000000000000
(11:23) gp &gt; factor(%)
%3 =
[x + 100000000 2]

(11:23) gp &gt; %1/(x+y)
%4 = x + y</pre>
<h4>Algebraic functions.</h4>
<p>Sometimes you need to use functions like <img src='http://s0.wp.com/latex.php?latex=%5Csqrt%7B1%2Bx%5E2%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;sqrt{1+x^2}' title='&#92;sqrt{1+x^2}' class='latex' />. In PARI you have Mods. Mod is an object in a finite extension of something. Their primary use, I guess, is for number fields, so that Mod(x, x^2+x+2) means <img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B-1%2B%5Csqrt%7B-7%7D%7D2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{-1+&#92;sqrt{-7}}2' title='&#92;frac{-1+&#92;sqrt{-7}}2' class='latex' />. But nobody stops us from using it like Mod(y, y^2-x^2-1). So let us try:</p>
<pre>(11:24) gp &gt; y0=Mod(y,y^2-x^2-1)
%5 = Mod(y, -x^2 + (y^2 - 1))
(12:12) gp &gt; y0^2
%6 = Mod(y^2, -x^2 + (y^2 - 1))</pre>
<p>Oops. We expected to get <img src='http://s0.wp.com/latex.php?latex=x%5E2%2B1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x^2+1' title='x^2+1' class='latex' />. This is the problem which everyone working with PARI should know about.</p>
<h4>Side note: priority of variables</h4>
<p>It is variable order. All variables are arranged in the order according to the time of first usage. Since x was used before y, it has &#8216;bigger priority&#8217; than y. Therefore every expression in x and y is considered in first place as an expression in x, so the equation <img src='http://s0.wp.com/latex.php?latex=y%5E2-x%5E2-1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y^2-x^2-1' title='y^2-x^2-1' class='latex' /> is treated like <img src='http://s0.wp.com/latex.php?latex=x%5E2+-+%28y%5E2-1%29+%3D+0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x^2 - (y^2-1) = 0' title='x^2 - (y^2-1) = 0' class='latex' /> where <img src='http://s0.wp.com/latex.php?latex=y%5E2-1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y^2-1' title='y^2-1' class='latex' /> is a kind of parameter. So this corresponds to <img src='http://s0.wp.com/latex.php?latex=x+%3D+%5Csqrt%7By%5E2-1%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x = &#92;sqrt{y^2-1}' title='x = &#92;sqrt{y^2-1}' class='latex' />. Therefore we should do it in a slightly different way:</p>
<pre>(12:12) gp &gt; y0=Mod(y,y^2-x0^2-1)
%7 = Mod(y, y^2 + (-x0^2 - 1))
(12:19) gp &gt; y0^2
%8 = Mod(x0^2 + 1, y^2 + (-x0^2 - 1))</pre>
<p>Don&#8217;t forget to use &#8216;<em>lift</em>&#8216; when you want to get your final answer in a readable form.</p>
<h4>Transcendental functions</h4>
<p>In general: what can we do with transcendental functions? Since they are transcendental you cannot get any algebraic statements about them, so there is nothing to ask. There are, of course, exceptions to this. For example sometimes one transcendental function algebraically depends on another transcendental function. Like sine and cosine. Therefore the previous approach works perfectly well. You should encode sine and cosine in the following way:</p>
<pre>(12:19) gp &gt; Cos
%9 = Cos
(12:26) gp &gt; Sin
%10 = Sin
(12:26) gp &gt; Cos0=Mod(Cos, Cos^2+Sin^2-1)
%11 = Mod(Cos, Cos^2 + (Sin^2 - 1))</pre>
<p>Another exception is when you are expanding a transcendental function into a power series. This goes without problems:</p>
<pre>(12:26) gp &gt; sin(x)
%12 = x - 1/6*x^3 + 1/120*x^5 - 1/5040*x^7 + 1/362880*x^9 - 1/39916800*x^11 + 1/6227020800*x^13 - 1/307674368000*x^15 + O(x^17)</pre>
<p>Another thing you may want to do with a transcendental function is to differentiate it. Well, we come back to our example with Sin and Cos.</p>
<pre>(12:28) gp &gt; D(f)=subst(deriv(lift(f),Sin)*Cos-deriv(lift(f),Cos)*Sin, Cos, Cos0)
(12:30) gp &gt; D(Sin)
%13 = Mod(Cos, Cos^2 + (Sin^2 - 1))
(12:31) gp &gt; D(Cos0)
%14 = -Sin</pre>
<p>Now you can differentiate any combination of sine and cosine.</p>
<h4>Differential equations</h4>
<p>If you have a differential equation, like <img src='http://s0.wp.com/latex.php?latex=y%27%27%3Dy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y&#039;&#039;=y' title='y&#039;&#039;=y' class='latex' />, you can encode it using variables y, dy and defining a differentiation operation like above which sends y to dy and dy to y:</p>
<pre>(12:31) gp &gt; D(f)=deriv(f,y)*dy+deriv(f,dy)*y</pre>
<h4>Numbers</h4>
<p>There are several ways of dealing with algebraic numbers.</p>
<p>1. Using &#8216;Mod&#8217;. Just type Mod(x, x^2+x+2) when you need <img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B-1%2B%5Csqrt%7B-7%7D%7D2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{-1+&#92;sqrt{-7}}2' title='&#92;frac{-1+&#92;sqrt{-7}}2' class='latex' />.<br />
2. Using approximation. Simple approach: use (-1+sqrt(-7))/2 and in the end use very powerful algdep or lindep functions if you need the minimal equation:</p>
<pre>(12:35) gp &gt; (-1+sqrt(-7))/2
%15 = -1/2 + 1.322875655532295295250807877*I
(12:41) gp &gt; algdep(%,2)
%16 = x^2 + x + 2</pre>
<p>3. Using approximation, but with several embeddings of your number field in C.</p>
<h4>Intersection theory</h4>
<p>I have some experience computing some intersections of algebraic varieties. The approach is to use Mods to define algebraic varieties. Say, elliptic curve is Mod(y, x0^3+a*x0+b-y^2). For higher dimensional varieties one can use Mods with Mods inside. Then if you need to intersect something you simply get more equations. In the end you probably want to get points. Then the coordinates of these points will be some mods which give them as algebraic numbers. To find multiplicities solve all the equations in power series and look at the exponent of the main term. In the process of writing my thesis I was finding some points which are defined over some field of high degree (I think it was 12). If you try to use this approach don&#8217;t forget about the function &#8216;<em>polcompositum</em>&#8216;, which helps, if you have numbers in different fields, to pass to the composite field.</p>
<h4>Final remarks</h4>
<p>The only thing that I not-so-like in PARI is its programming abilities. I think it is better to use some carefully designed standard scripting language for programming. That&#8217;s why I am working on integration of PARI with Python. This is still work in progress (look at some screenshots <a href="http://mellit.wordpress.com/2007/10/28/pari-python/" target="_blank">here</a>).</p>
<p>If you know some other not-so-obvious tricks for PARI, you are very welcome to post them below.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=31&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/11/10/tricks-using-pari/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b30ccefffb41cf228d8d5e0ab45ed58?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Anton Mellit</media:title>
		</media:content>
	</item>
		<item>
		<title>Something truly outrageous!</title>
		<link>http://vivatsgasse7.wordpress.com/2007/08/08/some-truly-outrageous/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/08/08/some-truly-outrageous/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 10:45:02 +0000</pubDate>
		<dc:creator>Abhijnan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/08/08/some-truly-outrageous/</guid>
		<description><![CDATA[Faithful readers of Vivastgasse 7 may have noticed that we haven&#8217;t posted anything in a while now- the reasons are numerous, but it mostly boils down to the fact that two of us (Anton and I) are in the middle of resolving several quasi-bureaucratic/ quasi-academic things: Anton is right now in Ukraine, finishing up his [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=27&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Faithful readers of Vivastgasse 7 may have noticed that we haven&#8217;t posted anything in a while now- the reasons are numerous, but it mostly boils down to the fact that two of us (Anton and I) are in the middle of resolving several quasi-bureaucratic/ quasi-academic things: Anton is right now in Ukraine, finishing up his thesis and busy planning his move to Paris in a couple of months for his first postdoc. I&#8217;m busy planning a move as well- off to <a href="http://www.dur.ac.uk/mathematical.sciences/pure/">Durham</a> next month for five months. So both of us are sort of &#8216;out-of-commission&#8217; right now. However, I do intend to post something soon (maybe this weekend?) either on schemes over the mysterious &#8220;field with one element&#8221; or better yet, an unpacking of our guest-blogger <a href="http://vivatsgasse7.wordpress.com/2007/07/26/some-remarks-on-cfts/">Sniggy Mahanta&#8217;s post on conformal field theories</a>. (Thanks goes to AJ Tolland for pointing out some gross inaccuracies in that post!)</p>
<p>But here is the main reason for this (non-mathematical) post- to vent!</p>
<p><span id="more-27"></span> It turns out that some very well-meaning people (lead by <a href="http://www.alinesin.org/">Ali Nesin</a>) started a mathematical summer camp in Sirince, Turkey- the idea of the camp was to provide motivated undergrads with exposure to mathematics beyond what is usually taught at the universities.  I personally like these sorts of camps very much. I doubt it that I would have become a research mathematician had I not been exposed to such camps and REUs while I was an undergrad. (The summer of 2002 is particularly memorable- I attended the <a href="http://pcmi.ias.edu/2002/">IAS/PCMI summer program on automorphic forms</a>; I&#8217;ve been smitten by number theory since.) Our American colleagues will also look appreciate summer camps for high school students such as the Ross program at Ohio State and PROMYS at Boston University.</p>
<p>Anyway, coming back to the summer school in Turkey something really bizarre happened (almost Kafkaesque in nature) towards the middle of the program (which was to last till the end of this month)- it was shut down by the authorities for providing &#8220;education without permission&#8221;!!! (A complete account of the whole story is to be found in <a href="http://www.maths.manchester.ac.uk/%7Eavb/micromathematics/2007/08/blackboard-under-arrest.html">Alexandre Borovik&#8217;s blog)</a></p>
<p>This is simply unacceptable! While I have some guesses as to why such a thing may have happened, the academic nature of this blog prevents me from making conjectures of a political nature here.  I will only say this:  such behavior will only hurt the Turkish scientific aspirations in the long run, not to mention the fact that it puts Turkish political and educational authorities in a very bad light in the West.  On behalf of all like-minded mathematicians and educators, I call on the Turkish authorities to immediately allow the reopening of the camp as well as issuing a public statement as to why they closed the camp in the first place. (Sorry, the oh-so-glib &#8220;educating without permission&#8221; simply doesn&#8217;t cut it!  I also ask the readers of this blog to visit <a href="http://savesummerschool.blogspot.com">Save Mathematical Summer School blog</a> (explicitly devoted to this issue) to sign a petition to the Turkish premier asking him to intervene.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=27&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/08/08/some-truly-outrageous/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7600307ed3dfc3c3376ad96bbb5fa5fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ganita</media:title>
		</media:content>
	</item>
		<item>
		<title>Some remarks on CFTs.</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/26/some-remarks-on-cfts/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/26/some-remarks-on-cfts/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 17:44:29 +0000</pubDate>
		<dc:creator>smahanta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/26/some-remarks-on-cfts/</guid>
		<description><![CDATA[Readers should be warned that the author is not an expert of CFT and, in fact, not even a novice in physics. What follows should be taken with a hefty pinch of salt. Given any Riemann surface (as a target manifold) one is able to associate to it an or a super conformal field theory. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=24&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Readers should be warned that the author is not an expert of CFT and, in fact, not even a novice in physics. What follows should be taken with a hefty pinch of salt.</p>
<p>Given any Riemann surface <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> (as a target manifold) one is able to associate to it an <img src='http://s0.wp.com/latex.php?latex=SCFT%28X%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='SCFT(X)' title='SCFT(X)' class='latex' /> or a super conformal field theory. The word super can just be construed as a <img src='http://s0.wp.com/latex.php?latex=%5Cmathbb%7BZ%7D_2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathbb{Z}_2' title='&#92;mathbb{Z}_2' class='latex' />-grading of the theory. This is a simplistic version as normally one should also take into account several other parameters like a B-field and so on. Within an SCFT there is a topological sector called a TQFT (topological quantum field theory) which is insensitive to the metric on the target space. There are axiomatic descriptions of this theory due to Atiyah and Segal and in its latest version possibly due to Costello. Roughly an <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' />-dimensional TQFT is a functor satisfying a lot of axioms from <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' />-manifolds with labelled boundaries (incoming and outgoing) to symmetric monoidal DG (differential graded) categories with some twisting.</p>
<p><span id="more-24"></span>Now people with a background on derived categories would like to see the triangulated structure of <img src='http://s0.wp.com/latex.php?latex=SCFT%28X%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='SCFT(X)' title='SCFT(X)' class='latex' />. Indeed, the homotopy category of a DG category resembles a triangulated category. It seems at this point it is possible to associate two models, namely, <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=B&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='B' title='B' class='latex' /> to the theory after Witten. The <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> model leads to a complicated Fukaya category (possibly as an <img src='http://s0.wp.com/latex.php?latex=A_%5Cinfty&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_&#92;infty' title='A_&#92;infty' class='latex' />-category) and the <img src='http://s0.wp.com/latex.php?latex=B&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='B' title='B' class='latex' /> model leads to the derived (or DG) category of coherent sheaves on <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' />. There is a chiral ring that can be associated to each of these two categories. On the <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> side it is the quantum cohomology ring and on the <img src='http://s0.wp.com/latex.php?latex=B&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='B' title='B' class='latex' /> side it is its Hochschild homology <img src='http://s0.wp.com/latex.php?latex=HH%28X%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='HH(X)' title='HH(X)' class='latex' />. There is a Frobenius algebra structure on them; on <img src='http://s0.wp.com/latex.php?latex=HH%28X%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='HH(X)' title='HH(X)' class='latex' /> at least when <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> is Calabi-Yau.</p>
<p>The homological mirror symmetry conjecture by Kontsevich would predict the existence of an equivalence between the two categories arising out of the <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=B&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='B' title='B' class='latex' /> models.  This should naturally give rise to an isomorphism of Frobenius algebras after passing on to their chiral rings.</p>
<p>The construction of CFTs   is a hard problem in general. Sometimes it is possible to get one&#8217;s hands on to the (possibly local) symmetries of a CFT, which are called chiral algebras and then one might be tempted to construct the CFT out of it.  The chiral algebras as mathematical objects have the structure of a VOA (vertex operator algebra) . The construction of CFT from its chiral algebra seems to be possible if the representation category of the chiral algebra has finitely many irreducible objects (communicated by Liang Kong). This can also be phrased in the language of the partition function of the CFT as Gukov and Vafa do. Such a CFT is called <em>rational (abbreviated RCFT).</em> They enjoy some other very desirable properties, which make them particularly interesting. When the target space is a complex torus Gukov and Vafa argue that rationality of the CFT is related to the complex torus having complex multiplication. So in this case the RCFTs are plentiful but in higher dimensions they are supposed to be rather sparse (not dense in the moduli space).</p>
<p>Meng Chen studied the higher dimensional case of the same in her thesis and came up with her own geometric definition of the rationality of a CFT and related it to abelian varieties with large endomorphism rings. It is not clear if her geometric definition of rationality of a CFT is related to the,  rather algebraic, notion of rationality presented above.</p>
<p>This is an intriguing connection between physics and number theory. In which direction the information would flow remains to be seen.  There are some more interesting connections of this sort relating generating functions of some counting problems of (arithmetic) algebro-geometric nature to the partition functions of CFTs. If the author can weather this storm more postings on them will follow.</p>
<p>Sincere apologies for the inaccuracies and for straying from the main theme of the blog which is arithmetic algebraic geometry. The author just stumbled upon the thesis of Meng Chen recently, got fascinated and wanted to share this new-found knowledge.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=24&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/26/some-remarks-on-cfts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b592485e7d8eec97584528017e81b001?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smahanta</media:title>
		</media:content>
	</item>
		<item>
		<title>Modular forms</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/23/modular-forms/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/23/modular-forms/#comments</comments>
		<pubDate>Mon, 23 Jul 2007 14:02:59 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[elliptic curves]]></category>
		<category><![CDATA[modular forms]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/23/modular-forms/</guid>
		<description><![CDATA[It seems when people talk about modular forms they tend to forget that they are very related to families of elliptic curves. Here I want to explain some simple way to understand the connection. We will consider modular forms for the full modular group . So consider the simplest family of elliptic curves, the Weierstrass [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=22&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems when people talk about modular forms they tend to forget that they are very related to families of elliptic curves. Here I want to explain some simple way to understand the connection. We will consider modular forms for the full modular group <img src='http://s0.wp.com/latex.php?latex=SL%282%2C+%5Cmathbf+Z%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='SL(2, &#92;mathbf Z)' title='SL(2, &#92;mathbf Z)' class='latex' />.</p>
<p>So consider the simplest family of elliptic curves, the Weierstrass family:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y%5E2%3Dx%5E3%2Bax%2Bb.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y^2=x^3+ax+b.' title='y^2=x^3+ax+b.' class='latex' /></p>
<p><span id="more-22"></span> Here <img src='http://s0.wp.com/latex.php?latex=a&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a' title='a' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b' title='b' class='latex' /> are meant to be some formal parameters. This indeed defines and elliptic curve over the ring  <img src='http://s0.wp.com/latex.php?latex=k%5Ba%2Cb%2C%5CDelta%5E%7B-1%7D%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k[a,b,&#92;Delta^{-1}]' title='k[a,b,&#92;Delta^{-1}]' class='latex' />, where <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' /> is the base field, which is supposed to be of characteristic <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' />, and <img src='http://s0.wp.com/latex.php?latex=%5CDelta&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta' title='&#92;Delta' class='latex' /> is the discriminant:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5CDelta%3D-16%284+a%5E3+%2B+27+b%5E2%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta=-16(4 a^3 + 27 b^2).' title='&#92;Delta=-16(4 a^3 + 27 b^2).' class='latex' /></p>
<p align="left">When we write <img src='http://s0.wp.com/latex.php?latex=y%5E2%3Dx%5E3%2Bax%2Bb&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y^2=x^3+ax+b' title='y^2=x^3+ax+b' class='latex' /> we in fact mean the corresponding projective variety <img src='http://s0.wp.com/latex.php?latex=E&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E' title='E' class='latex' /> over <img src='http://s0.wp.com/latex.php?latex=Spec%5C%3B+k%5Ba%2Cb%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='Spec&#92;; k[a,b]' title='Spec&#92;; k[a,b]' class='latex' /> with equation</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cbar+y%5E2+%5Cbar+z+%3D+%5Cbar+x%5E3+%2B+a+%5Cbar+x%5E2+%5Cbar+z+%2B+b+%5Cbar+z%5E3.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;bar y^2 &#92;bar z = &#92;bar x^3 + a &#92;bar x^2 &#92;bar z + b &#92;bar z^3.' title='&#92;bar y^2 &#92;bar z = &#92;bar x^3 + a &#92;bar x^2 &#92;bar z + b &#92;bar z^3.' class='latex' /></p>
<p align="left">Let us denote the affine chart with coordinate functions <img src='http://s0.wp.com/latex.php?latex=x%2C+y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x, y' title='x, y' class='latex' /> by <img src='http://s0.wp.com/latex.php?latex=U+%3D+E%5Csetminus+%5C%7B0%5C%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='U = E&#92;setminus &#92;{0&#92;}' title='U = E&#92;setminus &#92;{0&#92;}' class='latex' /> and the point at infinity by <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' /> since it is the zero point for the addition on the curve.</p>
<p align="left">Now we are going to compute some Laurent series expansions at <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' />. First we choose local parameter <img src='http://s0.wp.com/latex.php?latex=t%3D-x%2Fy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='t=-x/y' title='t=-x/y' class='latex' />. Indeed, <img src='http://s0.wp.com/latex.php?latex=x&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x' title='x' class='latex' /> has pole of order <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y' title='y' class='latex' /> has pole of order <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' /> at <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' />, therefore <img src='http://s0.wp.com/latex.php?latex=t&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='t' title='t' class='latex' /> has simple zero there. To find expansion of $x$ we solve the following equation in Laurent series:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7Bx%5E2%7D%7Bt%5E2%7D+%3D+x%5E3+%2B+a+x+%2B+b.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{x^2}{t^2} = x^3 + a x + b.' title='&#92;frac{x^2}{t^2} = x^3 + a x + b.' class='latex' /></p>
<p>Rewriting it as</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%28x+t%5E2%29%5E3+-+%28x+t%5E2%29%5E2+%2B+a+t%5E4+%28x+t%5E2%29+%2B+b+t%5E6%3D0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(x t^2)^3 - (x t^2)^2 + a t^4 (x t^2) + b t^6=0' title='(x t^2)^3 - (x t^2)^2 + a t^4 (x t^2) + b t^6=0' class='latex' /></p>
<p align="left">we obtain a polynomial equation in <img src='http://s0.wp.com/latex.php?latex=x+t%5E2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x t^2' title='x t^2' class='latex' /> which can be solved by Newton&#8217;s method starting with <img src='http://s0.wp.com/latex.php?latex=x+t%5E2+%3D+1+%2B+O%28t%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x t^2 = 1 + O(t)' title='x t^2 = 1 + O(t)' class='latex' />. We obtain</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=x+%3D+t%5E%7B-2%7D-a+t%5E2-b+t%5E4-a%5E2t%5E6+-+3+a+b+t%5E8%2BO%28t%5E%7B10%7D%29%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x = t^{-2}-a t^2-b t^4-a^2t^6 - 3 a b t^8+O(t^{10}),' title='x = t^{-2}-a t^2-b t^4-a^2t^6 - 3 a b t^8+O(t^{10}),' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y%3D+-t%5E%7B-3%7D%2Ba+t+%2B+b+t%5E3+%2B+a%5E2+t%5E5+%2B+3+a+b+t%5E7%2BO%28t%5E9%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y= -t^{-3}+a t + b t^3 + a^2 t^5 + 3 a b t^7+O(t^9).' title='y= -t^{-3}+a t + b t^3 + a^2 t^5 + 3 a b t^7+O(t^9).' class='latex' /></p>
<p align="left"> Let us compute the expansion of the invariant differential <img src='http://s0.wp.com/latex.php?latex=%5Comega+%3D+%5Cfrac%7Bdx%7D%7B2y%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega = &#92;frac{dx}{2y}' title='&#92;omega = &#92;frac{dx}{2y}' class='latex' />:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7Bdx%7D%7B2y%7D+%3D+%281%2B2a+t%5E4%2B3b+t%5E6%2B6+a%5E2+t%5E8%2B20+a+b+t%5E%7B10%7D%2BO%28t%5E%7B12%7D%29%29+dt.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{dx}{2y} = (1+2a t^4+3b t^6+6 a^2 t^8+20 a b t^{10}+O(t^{12})) dt.' title='&#92;frac{dx}{2y} = (1+2a t^4+3b t^6+6 a^2 t^8+20 a b t^{10}+O(t^{12})) dt.' class='latex' /></p>
<p> We see that it is possible to integrate this series formally and make it the new local parameter:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=z+%3D+%5Cint+%5Cfrac%7Bdx%7D%7B2y%7D+%3D+t%2B+%5Cfrac%7B2a%7D5+t%5E5%2B%5Cfrac%7B3b%7D7+t%5E7%2B%5Cfrac%7B2+a%5E2%7D3+t%5E9%2B%5Cfrac%7B20+a+b%7D%7B11%7D+t%5E%7B11%7D%2BO%28t%5E%7B13%7D%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z = &#92;int &#92;frac{dx}{2y} = t+ &#92;frac{2a}5 t^5+&#92;frac{3b}7 t^7+&#92;frac{2 a^2}3 t^9+&#92;frac{20 a b}{11} t^{11}+O(t^{13}).' title='z = &#92;int &#92;frac{dx}{2y} = t+ &#92;frac{2a}5 t^5+&#92;frac{3b}7 t^7+&#92;frac{2 a^2}3 t^9+&#92;frac{20 a b}{11} t^{11}+O(t^{13}).' class='latex' /></p>
<p align="left">Then the expansions of $x$ and $y$ with respect to the new local parameter are:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=x+%3D+z%5E%7B-2%7D-%5Cfrac%7Ba%7D5+z%5E2-%5Cfrac%7Bb%7D7+z%5E4%2B%5Cfrac%7Ba%5E2%7D%7B75%7Dz%5E6+%2B+%5Cfrac%7B3+ab%7D%7B385%7Dz%5E8%2BO%28z%5E%7B10%7D%29%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x = z^{-2}-&#92;frac{a}5 z^2-&#92;frac{b}7 z^4+&#92;frac{a^2}{75}z^6 + &#92;frac{3 ab}{385}z^8+O(z^{10}),' title='x = z^{-2}-&#92;frac{a}5 z^2-&#92;frac{b}7 z^4+&#92;frac{a^2}{75}z^6 + &#92;frac{3 ab}{385}z^8+O(z^{10}),' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y+%3D+%5Cfrac%7B%5Cpartial%7D%7B2%5Cpartial+z%7Dx+%3D+-z%5E%7B-3%7D-%5Cfrac%7Ba%7D5+z+-%5Cfrac%7B2b%7D7+z%5E3+%2B+%5Cfrac%7Ba%5E2%7D%7B25%7D+z%5E5+%2B+%5Cfrac%7B12+a+b%7D%7B385%7D+z%5E7%2BO%28z%5E9%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y = &#92;frac{&#92;partial}{2&#92;partial z}x = -z^{-3}-&#92;frac{a}5 z -&#92;frac{2b}7 z^3 + &#92;frac{a^2}{25} z^5 + &#92;frac{12 a b}{385} z^7+O(z^9).' title='y = &#92;frac{&#92;partial}{2&#92;partial z}x = -z^{-3}-&#92;frac{a}5 z -&#92;frac{2b}7 z^3 + &#92;frac{a^2}{25} z^5 + &#92;frac{12 a b}{385} z^7+O(z^9).' class='latex' /></p>
<p align="left">We also consider the formal integral of <img src='http://s0.wp.com/latex.php?latex=-x+dz&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='-x dz' title='-x dz' class='latex' />:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=v_0%3A%3D-%5Cint+x+dz+%3D++z%5E%7B-1%7D+%2B%5Cfrac%7Ba%7D%7B15%7Dz%5E3+%2B%5Cfrac%7Bb%7D%7B35%7D+z%5E5+-+%5Cfrac%7Ba%5E2%7D%7B525%7Dz%5E7+-+%5Cfrac%7Bab%7D%7B1155%7D+z%5E9+%2B+O%28z%5E11%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='v_0:=-&#92;int x dz =  z^{-1} +&#92;frac{a}{15}z^3 +&#92;frac{b}{35} z^5 - &#92;frac{a^2}{525}z^7 - &#92;frac{ab}{1155} z^9 + O(z^11).' title='v_0:=-&#92;int x dz =  z^{-1} +&#92;frac{a}{15}z^3 +&#92;frac{b}{35} z^5 - &#92;frac{a^2}{525}z^7 - &#92;frac{ab}{1155} z^9 + O(z^11).' class='latex' /></p>
<p align="left">Consider the power series</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B1%7D%7Be%5E%7Bz%7D-1%7D+%2B+%5Cfrac%7B1%7D%7B2%7D-%5Cfrac%7Bz%7D%7B12%7D%3D+z%5E%7B-1%7D+%2B+%5Csum_%7Bk%5Cgeq+2%7D%5Cfrac%7BB_%7B2k%7D%7D%7B%282k%29%21%7Dz%5E%7B2k-1%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{1}{e^{z}-1} + &#92;frac{1}{2}-&#92;frac{z}{12}= z^{-1} + &#92;sum_{k&#92;geq 2}&#92;frac{B_{2k}}{(2k)!}z^{2k-1}.' title='&#92;frac{1}{e^{z}-1} + &#92;frac{1}{2}-&#92;frac{z}{12}= z^{-1} + &#92;sum_{k&#92;geq 2}&#92;frac{B_{2k}}{(2k)!}z^{2k-1}.' class='latex' /></p>
<p align="left">If we substitute this power series in place of <img src='http://s0.wp.com/latex.php?latex=v_0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='v_0' title='v_0' class='latex' /> and find</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=x+%3D+-%5Cfrac%7B%5Cpartial+v_0%7D%7B%5Cpartial+z%7D+%3D+%5Cfrac%7B1%7D%7B%28e%5Ez-1%29%5E2%7D+%2B+%5Cfrac%7B1%7D%7Be%5Ez-1%7D+%2B+%5Cfrac%7B1%7D%7B12%7D%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x = -&#92;frac{&#92;partial v_0}{&#92;partial z} = &#92;frac{1}{(e^z-1)^2} + &#92;frac{1}{e^z-1} + &#92;frac{1}{12},' title='x = -&#92;frac{&#92;partial v_0}{&#92;partial z} = &#92;frac{1}{(e^z-1)^2} + &#92;frac{1}{e^z-1} + &#92;frac{1}{12},' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y+%3D+%5Cfrac%7B%5Cpartial+x%7D%7B2+%5Cpartial+z%7D+%3D+-%5Cfrac%7B1%7D%7B%28e%5Ez-1%29%5E3%7D+-+%5Cfrac%7B3%7D%7B2%28e%5Ez-1%29%5E2%7D+-+%5Cfrac%7B1%7D%7B2%28e%5Ez-1%29%7D%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y = &#92;frac{&#92;partial x}{2 &#92;partial z} = -&#92;frac{1}{(e^z-1)^3} - &#92;frac{3}{2(e^z-1)^2} - &#92;frac{1}{2(e^z-1)},' title='y = &#92;frac{&#92;partial x}{2 &#92;partial z} = -&#92;frac{1}{(e^z-1)^3} - &#92;frac{3}{2(e^z-1)^2} - &#92;frac{1}{2(e^z-1)},' class='latex' /></p>
<p align="left">then we can easily verify that</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y%5E2%3Dx%5E3+-+%5Cfrac%7Bx%7D%7B48%7D+%2B+%5Cfrac%7B1%7D%7B864%7D%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y^2=x^3 - &#92;frac{x}{48} + &#92;frac{1}{864},' title='y^2=x^3 - &#92;frac{x}{48} + &#92;frac{1}{864},' class='latex' /></p>
<p>i.e. we have found a solution for <img src='http://s0.wp.com/latex.php?latex=a%3D-%5Cfrac%7B1%7D%7B48%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a=-&#92;frac{1}{48}' title='a=-&#92;frac{1}{48}' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=b%3D%5Cfrac%7B1%7D%7B864%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b=&#92;frac{1}{864}' title='b=&#92;frac{1}{864}' class='latex' />.</p>
<p>This explains that we should in general put</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=a+%3D+-%5Cfrac%7BE_4%7D%7B48%7D+%5Cqquad+b%3D%5Cfrac%7BE_6%7D%7B864%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a = -&#92;frac{E_4}{48} &#92;qquad b=&#92;frac{E_6}{864}' title='a = -&#92;frac{E_4}{48} &#92;qquad b=&#92;frac{E_6}{864}' class='latex' /></p>
<p> and define <img src='http://s0.wp.com/latex.php?latex=E_%7B2k%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E_{2k}' title='E_{2k}' class='latex' /> in such a way that</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=v_0+%3D+z%5E%7B-1%7D+%2B+%5Csum_%7Bk%5Cgeq+2%7D%5Cfrac%7BB_%7B2k%7D+E_%7B2k%7D%7D%7B%282k%29%21%7Dz%5E%7B2k-1%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='v_0 = z^{-1} + &#92;sum_{k&#92;geq 2}&#92;frac{B_{2k} E_{2k}}{(2k)!}z^{2k-1}.' title='v_0 = z^{-1} + &#92;sum_{k&#92;geq 2}&#92;frac{B_{2k} E_{2k}}{(2k)!}z^{2k-1}.' class='latex' /></p>
<p align="left">In this way we obtain <img src='http://s0.wp.com/latex.php?latex=E_%7B2k%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E_{2k}' title='E_{2k}' class='latex' /> as a polynomial of <img src='http://s0.wp.com/latex.php?latex=E_4&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E_4' title='E_4' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=E_6&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E_6' title='E_6' class='latex' />, but in fact it is true that this polynomial is the same polynomial that expresses the Eisenstein series of weight <img src='http://s0.wp.com/latex.php?latex=2k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2k' title='2k' class='latex' /> in terms of the Eisenstein series of weights <img src='http://s0.wp.com/latex.php?latex=4&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='4' title='4' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=6&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='6' title='6' class='latex' />. So for us <em>modular forms</em> will be homogeneous polynomials of <img src='http://s0.wp.com/latex.php?latex=a&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a' title='a' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b' title='b' class='latex' /> where weight of <img src='http://s0.wp.com/latex.php?latex=a&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a' title='a' class='latex' /> is <img src='http://s0.wp.com/latex.php?latex=4&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='4' title='4' class='latex' /> and weight of <img src='http://s0.wp.com/latex.php?latex=b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b' title='b' class='latex' /> is <img src='http://s0.wp.com/latex.php?latex=6&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='6' title='6' class='latex' />.</p>
<p align="left">To define the weight more geometrically let us consider the action of the multiplicative group on <img src='http://s0.wp.com/latex.php?latex=E&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E' title='E' class='latex' />:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%28a%2Cb%2Cx%2Cy%29%5Clongrightarrow+%28%5Clambda%5E4+a%2C+%5Clambda%5E6+b%2C+%5Clambda%5E2+x%2C+%5Clambda%5E3+y%29%2C+%5Cqquad+%28%5Clambda%5Cin+k%5E%5Ctimes%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(a,b,x,y)&#92;longrightarrow (&#92;lambda^4 a, &#92;lambda^6 b, &#92;lambda^2 x, &#92;lambda^3 y), &#92;qquad (&#92;lambda&#92;in k^&#92;times).' title='(a,b,x,y)&#92;longrightarrow (&#92;lambda^4 a, &#92;lambda^6 b, &#92;lambda^2 x, &#92;lambda^3 y), &#92;qquad (&#92;lambda&#92;in k^&#92;times).' class='latex' /></p>
<p align="left">Then a modular form <img src='http://s0.wp.com/latex.php?latex=f&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f' title='f' class='latex' /> of weight <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' /> is a function of <img src='http://s0.wp.com/latex.php?latex=a%2C+b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a, b' title='a, b' class='latex' /> which transforms like</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=f+%5Clongrightarrow+%5Clambda%5Ek+f.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f &#92;longrightarrow &#92;lambda^k f.' title='f &#92;longrightarrow &#92;lambda^k f.' class='latex' /></p>
<p align="left">If we consider not only functions of <img src='http://s0.wp.com/latex.php?latex=a%2C+b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a, b' title='a, b' class='latex' />, but functions of <img src='http://s0.wp.com/latex.php?latex=a%2C+b%2C+x%2C+y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a, b, x, y' title='a, b, x, y' class='latex' /> then we obtain<em> Jacobi forms of index</em> <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' />.</p>
<p align="left"><strong>Derivatives of modular forms</strong></p>
<p align="left">We want to apply this language to understand some natural operations on modular forms. The first operation is the Euler derivative <img src='http://s0.wp.com/latex.php?latex=%5Cdelta_e&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;delta_e' title='&#92;delta_e' class='latex' />. This simply takes a modular form <img src='http://s0.wp.com/latex.php?latex=f&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f' title='f' class='latex' /> of weight <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' /> and sends it to <img src='http://s0.wp.com/latex.php?latex=kf&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='kf' title='kf' class='latex' />. It is easy to see that this is exactly the action of the Lie algebra of the multiplicative group. Next we want to reconstruct the Serre derivative.</p>
<p align="left">Suppose we have a derivation <img src='http://s0.wp.com/latex.php?latex=%5Cpartial&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial' title='&#92;partial' class='latex' /> on <img src='http://s0.wp.com/latex.php?latex=k%5Ba%2Cb%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k[a,b]' title='k[a,b]' class='latex' />. Let us try to lift it to obtain a derivation of the ring of functions on <img src='http://s0.wp.com/latex.php?latex=U&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='U' title='U' class='latex' /> (which is generated by <img src='http://s0.wp.com/latex.php?latex=a%2Cb%2Cx%2Cy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a,b,x,y' title='a,b,x,y' class='latex' />). We would have <img src='http://s0.wp.com/latex.php?latex=%5Cpartial%5E%2A+x&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial^* x' title='&#92;partial^* x' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=%5Cpartial%5E%2A+y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial^* y' title='&#92;partial^* y' class='latex' /> satisfying a relation</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=2+y+%5Cpartial%5E%2A+y+%3D+%283+x%5E2+%2B+a%29+%5Cpartial%5E%2A+x+%2B+x+%5Cpartial+a+%2B+%5Cpartial+b.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2 y &#92;partial^* y = (3 x^2 + a) &#92;partial^* x + x &#92;partial a + &#92;partial b.' title='2 y &#92;partial^* y = (3 x^2 + a) &#92;partial^* x + x &#92;partial a + &#92;partial b.' class='latex' /></p>
<p align="left">But note that we could simply apply <img src='http://s0.wp.com/latex.php?latex=%5Cpartial&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial' title='&#92;partial' class='latex' /> to the Laurent series expansions of <img src='http://s0.wp.com/latex.php?latex=x%2Cy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x,y' title='x,y' class='latex' /> term by term (denote it by <img src='http://s0.wp.com/latex.php?latex=%5Cpartial+x%2C+%5Cpartial+y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial x, &#92;partial y' title='&#92;partial x, &#92;partial y' class='latex' />) and get  a solution to the relation above. Therefore the difference must satisfy</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=2y+%28%5Cpartial+y-%5Cpartial%5E%2A+y%29+%3D+%283+x%5E2++%2B+a%29+%28%5Cpartial+x+-+%5Cpartial%5E%2A+x%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2y (&#92;partial y-&#92;partial^* y) = (3 x^2  + a) (&#92;partial x - &#92;partial^* x).' title='2y (&#92;partial y-&#92;partial^* y) = (3 x^2  + a) (&#92;partial x - &#92;partial^* x).' class='latex' /></p>
<p align="left">But we also have a solution to the equation above! Namely it is the operator <img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7Bd%7D%7Bdz%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{d}{dz}' title='&#92;frac{d}{dz}' class='latex' /> which will be denoted simply by <img src='http://s0.wp.com/latex.php?latex=%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#039;' title='&#039;' class='latex' />. Therefore we must have a Laurent series <img src='http://s0.wp.com/latex.php?latex=%5Calpha&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha' title='&#92;alpha' class='latex' /> which satisfies</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cpartial+y+%3D+%5Cpartial%5E%2A+y+%2B+%5Calpha+y%27%2C%5Cqquad+%5Cpartial+x+%3D+%5Cpartial%5E%2A+x%2B+%5Calpha+x%27.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial y = &#92;partial^* y + &#92;alpha y&#039;,&#92;qquad &#92;partial x = &#92;partial^* x+ &#92;alpha x&#039;.' title='&#92;partial y = &#92;partial^* y + &#92;alpha y&#039;,&#92;qquad &#92;partial x = &#92;partial^* x+ &#92;alpha x&#039;.' class='latex' /></p>
<p align="left">Using the fact that <img src='http://s0.wp.com/latex.php?latex=%27%2C+%5Cpartial&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#039;, &#92;partial' title='&#039;, &#92;partial' class='latex' /> commute it is easy to obtain</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Calpha%27+x%27%3D2%5Cpartial%5E%2A+y+-+%28%5Cpartial%5E%2A+x%29%27.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha&#039; x&#039;=2&#92;partial^* y - (&#92;partial^* x)&#039;.' title='&#92;alpha&#039; x&#039;=2&#92;partial^* y - (&#92;partial^* x)&#039;.' class='latex' /></p>
<p> We expect <img src='http://s0.wp.com/latex.php?latex=%5Cpartial%5E%2A+x%2C+%5Cpartial%5E%2A+y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial^* x, &#92;partial^* y' title='&#92;partial^* x, &#92;partial^* y' class='latex' /> to be regular functions on <img src='http://s0.wp.com/latex.php?latex=U&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='U' title='U' class='latex' />. Clearly one can assume <img src='http://s0.wp.com/latex.php?latex=%5Cpartial%5E%2A+x&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial^* x' title='&#92;partial^* x' class='latex' /> to contain only even powers of <img src='http://s0.wp.com/latex.php?latex=z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z' title='z' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=%5Cpartial%5E%2A+y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial^* y' title='&#92;partial^* y' class='latex' /> to contain only odd powers of <img src='http://s0.wp.com/latex.php?latex=z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z' title='z' class='latex' /> &#8211; this corresponds to <img src='http://s0.wp.com/latex.php?latex=%5Cpartial%5E%2A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial^*' title='&#92;partial^*' class='latex' /> being invariant under the involution <img src='http://s0.wp.com/latex.php?latex=%28x%2Cy%29%5Clongrightarrow+%28x%2C-y%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(x,y)&#92;longrightarrow (x,-y)' title='(x,y)&#92;longrightarrow (x,-y)' class='latex' />. We see that the right hand side is a regular function on <img src='http://s0.wp.com/latex.php?latex=U&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='U' title='U' class='latex' /> which contains only odd powers of <img src='http://s0.wp.com/latex.php?latex=z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z' title='z' class='latex' />. Therefore it is a product of <img src='http://s0.wp.com/latex.php?latex=y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y' title='y' class='latex' /> and a polynomial in <img src='http://s0.wp.com/latex.php?latex=x%2C+a%2C+b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x, a, b' title='x, a, b' class='latex' />. So we write</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Calpha%27+x%27+%3D+2+y+P%28x%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha&#039; x&#039; = 2 y P(x).' title='&#92;alpha&#039; x&#039; = 2 y P(x).' class='latex' /></p>
<p align="left">Noting that <img src='http://s0.wp.com/latex.php?latex=x%27+%3D+2y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x&#039; = 2y' title='x&#039; = 2y' class='latex' /> gives</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Calpha%27+%3D++P%28x%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha&#039; =  P(x)' title='&#92;alpha&#039; =  P(x)' class='latex' />.</p>
<p align="left">Next observation is that for any polynomial in <img src='http://s0.wp.com/latex.php?latex=x&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x' title='x' class='latex' /> we can express it as a derivative of an expression of the form</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y+Q%28x%29++%2B++A++z++%2B+B+v_0+%5Cqquad+%28Q%5Cin+k%5Ba%2Cb%5D%5Bx%5D%2C+%5C%3B+A%5Cin+k%5Ba%2Cb%5D%2C%5C%3B+B%5Cin+k%5Ba%2Cb%5D.%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y Q(x)  +  A  z  + B v_0 &#92;qquad (Q&#92;in k[a,b][x], &#92;; A&#92;in k[a,b],&#92;; B&#92;in k[a,b].)' title='y Q(x)  +  A  z  + B v_0 &#92;qquad (Q&#92;in k[a,b][x], &#92;; A&#92;in k[a,b],&#92;; B&#92;in k[a,b].)' class='latex' /></p>
<p align="left">In fact <img src='http://s0.wp.com/latex.php?latex=z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z' title='z' class='latex' /> is the formal integral of <img src='http://s0.wp.com/latex.php?latex=%5Comega%3Ddz&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega=dz' title='&#92;omega=dz' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=v_0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='v_0' title='v_0' class='latex' /> is the formal integral of <img src='http://s0.wp.com/latex.php?latex=-%5Ceta+%3D+-%5Cfrac%7Bx+dx%7D%7B2y%7D+%3D+-x+dz&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='-&#92;eta = -&#92;frac{x dx}{2y} = -x dz' title='-&#92;eta = -&#92;frac{x dx}{2y} = -x dz' class='latex' /> and these forms generate the first cohomology of <img src='http://s0.wp.com/latex.php?latex=E&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='E' title='E' class='latex' />. So,</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Calpha+%3D+y+Q%28x%29+%2B+A+z+%2B+B+v_0.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha = y Q(x) + A z + B v_0.' title='&#92;alpha = y Q(x) + A z + B v_0.' class='latex' /></p>
<p align="left">It implies that</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cpartial+x+%3D+R%28x%29+%2B+%28A+z+%2B+B+v_0%29+x%27+%5Cqquad+%28R%5Cin+k%5Ba%2Cb%5D%5Bx%5D%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial x = R(x) + (A z + B v_0) x&#039; &#92;qquad (R&#92;in k[a,b][x]).' title='&#92;partial x = R(x) + (A z + B v_0) x&#039; &#92;qquad (R&#92;in k[a,b][x]).' class='latex' /></p>
<p align="left">But we know that</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cpartial+x+%3D+-%5Cfrac%7B%5Cpartial+a%7D%7B5%7D+z%5E2+-+%5Cfrac%7B%5Cpartial+b%7D%7B7%7D+z%5E4+%2B+O%28z%5E6%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial x = -&#92;frac{&#92;partial a}{5} z^2 - &#92;frac{&#92;partial b}{7} z^4 + O(z^6).' title='&#92;partial x = -&#92;frac{&#92;partial a}{5} z^2 - &#92;frac{&#92;partial b}{7} z^4 + O(z^6).' class='latex' /></p>
<p align="left"> Looking at the power series expansions we conclude that</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cpartial+x+%3D+A%28+z+x%27%2B+2x%29+%2B+B%28v_0+x%27+%2B+2+x%5E2+%2B+%5Cfrac+%7B4a%7D3%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;partial x = A( z x&#039;+ 2x) + B(v_0 x&#039; + 2 x^2 + &#92;frac {4a}3).' title='&#92;partial x = A( z x&#039;+ 2x) + B(v_0 x&#039; + 2 x^2 + &#92;frac {4a}3).' class='latex' /></p>
<p align="left">So it is natural to consider a derivation for which <img src='http://s0.wp.com/latex.php?latex=%28A%2CB%29%3D%281%2C0%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(A,B)=(1,0)' title='(A,B)=(1,0)' class='latex' /> and a derivation for which <img src='http://s0.wp.com/latex.php?latex=%28A%2CB%29+%3D+%280%2C1%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(A,B) = (0,1)' title='(A,B) = (0,1)' class='latex' />. In the former case we obtain</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Calpha+%3D+z%2C%5C%3B+%5Cpartial+a+%3D+4+a%2C++%5C%3B+%5Cpartial+b+%3D+6b%2C%5C%3B+%5Cpartial%5E%2Ax+%3D+2x%2C%5C%3B+%5Cpartial%5E%2A+y%3D3y.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha = z,&#92;; &#92;partial a = 4 a,  &#92;; &#92;partial b = 6b,&#92;; &#92;partial^*x = 2x,&#92;; &#92;partial^* y=3y.' title='&#92;alpha = z,&#92;; &#92;partial a = 4 a,  &#92;; &#92;partial b = 6b,&#92;; &#92;partial^*x = 2x,&#92;; &#92;partial^* y=3y.' class='latex' /></p>
<p align="left">It is easy to see that we have got the Euler operator. In the latter case we obtain</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Calpha+%3D+v_0%2C%5C%3B+%5Cpartial+a+%3D+6+b%2C%5C%3B+%5Cpartial+b+%3D+-+%5Cfrac%7B4+a%5E2%7D%7B3%7D%2C%5C%3B+%5Cpartial%5E%2A+x+%3D+2+x%5E2+%2B+%5Cfrac%7B4a%7D3%2C%5C%3B+%5Cpartial%5E%2A+y+%3D+3xy.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha = v_0,&#92;; &#92;partial a = 6 b,&#92;; &#92;partial b = - &#92;frac{4 a^2}{3},&#92;; &#92;partial^* x = 2 x^2 + &#92;frac{4a}3,&#92;; &#92;partial^* y = 3xy.' title='&#92;alpha = v_0,&#92;; &#92;partial a = 6 b,&#92;; &#92;partial b = - &#92;frac{4 a^2}{3},&#92;; &#92;partial^* x = 2 x^2 + &#92;frac{4a}3,&#92;; &#92;partial^* y = 3xy.' class='latex' /></p>
<p align="left">Using our convention <img src='http://s0.wp.com/latex.php?latex=a+%3D+-%5Cfrac%7BE_4%7D%7B48%7D+%5C%3B+b%3D%5Cfrac%7BE_6%7D%7B864%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a = -&#92;frac{E_4}{48} &#92;; b=&#92;frac{E_6}{864}' title='a = -&#92;frac{E_4}{48} &#92;; b=&#92;frac{E_6}{864}' class='latex' /> one can see that this is the Serre derivative <img src='http://s0.wp.com/latex.php?latex=%5Cdelta_s&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;delta_s' title='&#92;delta_s' class='latex' />:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Cdelta_s+E_4+%3D+-%5Cfrac%7BE_6%7D%7B3%7D%2C%5Cqquad+%5Cdelta_s+E_6+%3D+-%5Cfrac%7BE_4%5E2%7D%7B2%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;delta_s E_4 = -&#92;frac{E_6}{3},&#92;qquad &#92;delta_s E_6 = -&#92;frac{E_4^2}{2}.' title='&#92;delta_s E_4 = -&#92;frac{E_6}{3},&#92;qquad &#92;delta_s E_6 = -&#92;frac{E_4^2}{2}.' class='latex' /></p>
<p align="left">It is important that we did not only obtain <img src='http://s0.wp.com/latex.php?latex=%5Cdelta_s&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;delta_s' title='&#92;delta_s' class='latex' /> as a certain canonical derivation which lifts to a derivation on <img src='http://s0.wp.com/latex.php?latex=k%5BU%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k[U]' title='k[U]' class='latex' />, but we also computed <img src='http://s0.wp.com/latex.php?latex=%5Cdelta_s+x&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;delta_s x' title='&#92;delta_s x' class='latex' /> which can be interpreted as a formula which gives the Serre derivatives of all the Eisenstein series.</p>
<p align="left">&nbsp;</p>
<p>In the end I would like to mention that using this approach and studying the Gauss-Manin connection one can explain some other things which appear in the theory of modular and quasi-modular forms and seem mysterious, like Bol&#8217;s identity and Rankin-Cohen brackets.</p>
<p>The main idea is: &#8220;<em>the ring of modular forms, or the ring of quasi-modular forms come naturally equipped with an elliptic curve over it.</em>&#8220;</p>
<p>Also here is a useful formula for values of modular forms. If <img src='http://s0.wp.com/latex.php?latex=f&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f' title='f' class='latex' /> is a modular form of weight <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' /> and a curve <img src='http://s0.wp.com/latex.php?latex=y%5E2+%3D+x%5E3+%2B+a_0+x+%2B+b_0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y^2 = x^3 + a_0 x + b_0' title='y^2 = x^3 + a_0 x + b_0' class='latex' /> has periods <img src='http://s0.wp.com/latex.php?latex=%5Comega_1%2C+%5Comega_2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega_1, &#92;omega_2' title='&#92;omega_1, &#92;omega_2' class='latex' />, then</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=f%28a_0%2Cb_0%29+%3D+f%28%5Cfrac%7B%5Comega_1%7D%7B%5Comega_2%7D%29+%5Cleft%28%5Cfrac%7B%5Comega_2%7D%7B2%5Cpi+i%7D%5Cright%29%5E%7B-k%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f(a_0,b_0) = f(&#92;frac{&#92;omega_1}{&#92;omega_2}) &#92;left(&#92;frac{&#92;omega_2}{2&#92;pi i}&#92;right)^{-k}' title='f(a_0,b_0) = f(&#92;frac{&#92;omega_1}{&#92;omega_2}) &#92;left(&#92;frac{&#92;omega_2}{2&#92;pi i}&#92;right)^{-k}' class='latex' />.</p>
<p align="left">On the left we have the values of <img src='http://s0.wp.com/latex.php?latex=f&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f' title='f' class='latex' /> as a polynomial of <img src='http://s0.wp.com/latex.php?latex=a%2C+b&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a, b' title='a, b' class='latex' /> and on the right we have its value as a function on the upper half plane. There is a corresponding formula relating values of quasi-modular forms and periods of differentials of second kind.</p>
<p align="left">&nbsp;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=22&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/23/modular-forms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b30ccefffb41cf228d8d5e0ab45ed58?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Anton Mellit</media:title>
		</media:content>
	</item>
		<item>
		<title>Ring-theoretic description of the norm-residue homomorphism</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/12/ring-theoretic-description-of-the-norm-residue-homomorphism/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/12/ring-theoretic-description-of-the-norm-residue-homomorphism/#comments</comments>
		<pubDate>Thu, 12 Jul 2007 17:35:20 +0000</pubDate>
		<dc:creator>Mehran</dc:creator>
				<category><![CDATA[k-theory]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/12/ring-theoretic-description-of-the-norm-residue-homomorphism/</guid>
		<description><![CDATA[Recently, the norm-residue homomorphism has been the subject of intense discussions in the K-theoretic community following the proof of the Bloch-Kato conjecture by Voevodsky, Suslin and Rost (see Rost&#8217;s lecture at this year&#8217;s Arbeitstagung.) The goal of this post is to explain the norm-residue homomorphism in a down to earth ring-theoretic language. Recall that the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=15&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, the norm-residue homomorphism has been the subject of intense discussions in the K-theoretic community following the proof of the Bloch-Kato conjecture by Voevodsky, Suslin and Rost (see Rost&#8217;s lecture at this year&#8217;s Arbeitstagung.) The goal of this post is to explain the norm-residue homomorphism in a down to earth ring-theoretic language.</p>
<p><span id="more-15"></span>Recall that the description of <img src='http://s0.wp.com/latex.php?latex=K_2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='K_2' title='K_2' class='latex' /> of fields is given by the following theorem.</p>
<p><em><strong>Matsumoto&#8217;s Theorem.</strong></em><br />
For any field <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=K_%7B2%7D%28F%29%3D+%5Cfrac%7BF%5E%7B%2A%7D%5Cotimes_%7B%5Cmathbb%7BZ%7D%7D+F%5E%7B%2A%7D%7D%7B+%3Ca+%5Cotimes+%281-a%29%7E%7C%7E+a%5Cneq+1%3E%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='K_{2}(F)= &#92;frac{F^{*}&#92;otimes_{&#92;mathbb{Z}} F^{*}}{ &lt;a &#92;otimes (1-a)~|~ a&#92;neq 1&gt;}' title='K_{2}(F)= &#92;frac{F^{*}&#92;otimes_{&#92;mathbb{Z}} F^{*}}{ &lt;a &#92;otimes (1-a)~|~ a&#92;neq 1&gt;}' class='latex' /></p>
<p>or equivalently in the context of presentations of groups, <img src='http://s0.wp.com/latex.php?latex=K_%7B2%7DF&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='K_{2}F' title='K_{2}F' class='latex' /> is the Abelian group with<br />
<strong>Generators:</strong> <img src='http://s0.wp.com/latex.php?latex=%5C%7Bx%2Cy%5C%7D%5Cquad++x%2Cy++%5Cin+F%5E%7B%2A%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;{x,y&#92;}&#92;quad  x,y  &#92;in F^{*}' title='&#92;{x,y&#92;}&#92;quad  x,y  &#92;in F^{*}' class='latex' /><br />
<strong>Relations:</strong></p>
<ol>
<li><img src='http://s0.wp.com/latex.php?latex=%5C%7Bx%2C+1-x%5C%7D+%3D0%5C%3B+++++%5Cforall+x+%5Cin+F%5E%7B%2A%7D+++x+%5Cneq+0+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;{x, 1-x&#92;} =0&#92;;     &#92;forall x &#92;in F^{*}   x &#92;neq 0 ' title='&#92;{x, 1-x&#92;} =0&#92;;     &#92;forall x &#92;in F^{*}   x &#92;neq 0 ' class='latex' />   (The Steinberg relation)</li>
<li><img src='http://s0.wp.com/latex.php?latex=%5C%7Bxy%2Cz%5C%7D+%3D+%5C%7Bx%2Cz%5C%7D+%2B%5C%7By%2Cz%5C%7D%5C%3B+%5Cforall+x%2Cy%2C+z+%5Cin+F%5E%7B%2A%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;{xy,z&#92;} = &#92;{x,z&#92;} +&#92;{y,z&#92;}&#92;; &#92;forall x,y, z &#92;in F^{*}' title='&#92;{xy,z&#92;} = &#92;{x,z&#92;} +&#92;{y,z&#92;}&#92;; &#92;forall x,y, z &#92;in F^{*}' class='latex' /></li>
<li><img src='http://s0.wp.com/latex.php?latex=%5C%7Bx%2C+yz%5C%7D+%3D%5C%7Bx%2Cy%5C%7D+%2B%5C%7Bx%2Cz%5C%7D%5C%3B+%5Cforall+x%2Cy%2C+z+%5Cin+F%5E%7B%2A%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;{x, yz&#92;} =&#92;{x,y&#92;} +&#92;{x,z&#92;}&#92;; &#92;forall x,y, z &#92;in F^{*}.' title='&#92;{x, yz&#92;} =&#92;{x,y&#92;} +&#92;{x,z&#92;}&#92;; &#92;forall x,y, z &#92;in F^{*}.' class='latex' /></li>
</ol>
<p><strong>Definition.</strong> Let <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> be a field and <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> be an Abelian group. A Steinberg symbol on <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> (with coefficients in <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' />) is a <img src='http://s0.wp.com/latex.php?latex=%5Cmathbb%7BZ%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathbb{Z}' title='&#92;mathbb{Z}' class='latex' />-bilinear map <img src='http://s0.wp.com/latex.php?latex=s%3AF%5E%7B%2A%7D%5Ctimes+F%5E%7B%2A%7D%5Clongrightarrow+A+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s:F^{*}&#92;times F^{*}&#92;longrightarrow A ' title='s:F^{*}&#92;times F^{*}&#92;longrightarrow A ' class='latex' /> such that</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=s%5C%7Bx%2C1-x%5C%7D%3D0%5Cquad+%5Cforall+x%5Cin+F%5E%7B%2A%7D+%5Cquad++x+%5Cneq+1.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s&#92;{x,1-x&#92;}=0&#92;quad &#92;forall x&#92;in F^{*} &#92;quad  x &#92;neq 1.' title='s&#92;{x,1-x&#92;}=0&#92;quad &#92;forall x&#92;in F^{*} &#92;quad  x &#92;neq 1.' class='latex' /></p>
<p>By  Matsumoto&#8217;s theorem any Steinberg  symbol <img src='http://s0.wp.com/latex.php?latex=s%3AF%5E%7B%2A%7D+%5Ctimes+F%5E%7B%2A%7D+%5Clongrightarrow+A+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s:F^{*} &#92;times F^{*} &#92;longrightarrow A ' title='s:F^{*} &#92;times F^{*} &#92;longrightarrow A ' class='latex' /> gives a unique group homomorphism <img src='http://s0.wp.com/latex.php?latex=%5Ctilde%7Bs%7D%3AK_2%28F%29+%5Clongrightarrow+A+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;tilde{s}:K_2(F) &#92;longrightarrow A ' title='&#92;tilde{s}:K_2(F) &#92;longrightarrow A ' class='latex' /> such that <img src='http://s0.wp.com/latex.php?latex=s%28x%2Cy%29%3D%5Ctilde%7Bs%7D%5C%7Bx%2Cy%5C%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s(x,y)=&#92;tilde{s}&#92;{x,y&#92;}.' title='s(x,y)=&#92;tilde{s}&#92;{x,y&#92;}.' class='latex' /></p>
<p><em><strong>Norm Residue Algebras.</strong></em></p>
<p>Let <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> be a field which contains a primitive <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' />-th root of unity <img src='http://s0.wp.com/latex.php?latex=%5Comega&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega' title='&#92;omega' class='latex' /> and let <img src='http://s0.wp.com/latex.php?latex=%5Calpha%2C%5Cbeta+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha,&#92;beta ' title='&#92;alpha,&#92;beta ' class='latex' /> be two given elements in <img src='http://s0.wp.com/latex.php?latex=F%5E%7B%2A%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F^{*}' title='F^{*}' class='latex' />. The <img src='http://s0.wp.com/latex.php?latex=n%5E%7B2%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n^{2}' title='n^{2}' class='latex' /> dimensional <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> vector space</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%3A%3D+%5Cbigoplus%5Climits_%7B0%5Cleq+i%2Cj+%3Cn%7D+F+x%5E%7Bi%7Dy%5E%7Bj%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,&#92;beta):= &#92;bigoplus&#92;limits_{0&#92;leq i,j &lt;n} F x^{i}y^{j}' title='A_{&#92;omega}(&#92;alpha,&#92;beta):= &#92;bigoplus&#92;limits_{0&#92;leq i,j &lt;n} F x^{i}y^{j}' class='latex' /></p>
<p>with the following rules of multiplication:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=x%5E%7Bn%7D%3D%5Calpha+%5Cquad+y%5E%7Bn%7D%3D%5Cbeta+%5Cquad+yx%3D%5Comega+yx+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x^{n}=&#92;alpha &#92;quad y^{n}=&#92;beta &#92;quad yx=&#92;omega yx ' title='x^{n}=&#92;alpha &#92;quad y^{n}=&#92;beta &#92;quad yx=&#92;omega yx ' class='latex' /></p>
<p>is a central simple <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' />-algebra and it is called the norm residue algebra.</p>
<p><strong>Theorem 1.</strong> Let <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> be a central simple algebra of degree <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' /> and let</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=f%28x%29%3Dx%5E%7Bn%7D%2Ba_%7Bn-1%7Dx%5E%7Bn-1%7D%2B%5Cdots+%2Ba_%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f(x)=x^{n}+a_{n-1}x^{n-1}+&#92;dots +a_{0}' title='f(x)=x^{n}+a_{n-1}x^{n-1}+&#92;dots +a_{0}' class='latex' /></p>
<p>be the minimal polynomial of <img src='http://s0.wp.com/latex.php?latex=x%5Cin+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x&#92;in A' title='x&#92;in A' class='latex' /> over <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' />. If <img src='http://s0.wp.com/latex.php?latex=f&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f' title='f' class='latex' /> splits into distinct linear factors over <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' />, then <img src='http://s0.wp.com/latex.php?latex=A%5Csimeq+M_n%28F%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A&#92;simeq M_n(F).' title='A&#92;simeq M_n(F).' class='latex' /></p>
<p><strong>Corollary. </strong>Let <img src='http://s0.wp.com/latex.php?latex=%5Calpha%2C%5Cbeta+%5Cin+F%5E%7B%2A%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha,&#92;beta &#92;in F^{*}' title='&#92;alpha,&#92;beta &#92;in F^{*}' class='latex' />. If either <img src='http://s0.wp.com/latex.php?latex=%5Calpha&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha' title='&#92;alpha' class='latex' /> or <img src='http://s0.wp.com/latex.php?latex=%5Cbeta&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;beta' title='&#92;beta' class='latex' /> has an <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' />-th root in <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' />, then</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5Csimeq+M_n%28F%29.++++++++&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,&#92;beta)&#92;simeq M_n(F).        ' title='A_{&#92;omega}(&#92;alpha,&#92;beta)&#92;simeq M_n(F).        ' class='latex' /></p>
<p>As a special case of the above statement we have</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C1%29%5Csimeq+M_n%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,1)&#92;simeq M_n(F)' title='A_{&#92;omega}(&#92;alpha,1)&#92;simeq M_n(F)' class='latex' />.</p>
<p><strong>Theorem 2</strong>. <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C1-%5Calpha%29%5Csimeq+M_n%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,1-&#92;alpha)&#92;simeq M_n(F)' title='A_{&#92;omega}(&#92;alpha,1-&#92;alpha)&#92;simeq M_n(F)' class='latex' /></p>
<p><strong>Proof.</strong><br />
We define the non-commutative binomial coefficients</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=b_%7Bi%7D%5E%7Bn%7D%3A%3D%5Cfrac%7Bf_n%28c%29%7D++++++%7Bf_i%28c%29f_%7Bn-i%7D%28c%29%7D%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b_{i}^{n}:=&#92;frac{f_n(c)}      {f_i(c)f_{n-i}(c)},' title='b_{i}^{n}:=&#92;frac{f_n(c)}      {f_i(c)f_{n-i}(c)},' class='latex' /></p>
<p>where</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=f_n%28c%29%3D%5Cprod%5Climits_%7Bj%3D1%7D%5E%7Bn%7D%28c%5E%7Bj%7D-1%29++++.+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='f_n(c)=&#92;prod&#92;limits_{j=1}^{n}(c^{j}-1)    . ' title='f_n(c)=&#92;prod&#92;limits_{j=1}^{n}(c^{j}-1)    . ' class='latex' /></p>
<p> It can be easily checked that <img src='http://s0.wp.com/latex.php?latex=b_%7Bi%7D%5E%7Bn%7D%28c%29%5Cin+%5Cmathbb%7BZ%7D%5Bc%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b_{i}^{n}(c)&#92;in &#92;mathbb{Z}[c]' title='b_{i}^{n}(c)&#92;in &#92;mathbb{Z}[c]' class='latex' />. Now suppose that <img src='http://s0.wp.com/latex.php?latex=x%2Cy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x,y' title='x,y' class='latex' /> are elements of an arbitrary ring <img src='http://s0.wp.com/latex.php?latex=R&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='R' title='R' class='latex' /> such that <img src='http://s0.wp.com/latex.php?latex=yx%3Dcxy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='yx=cxy' title='yx=cxy' class='latex' /> for some <img src='http://s0.wp.com/latex.php?latex=c&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='c' title='c' class='latex' /> in the center of <img src='http://s0.wp.com/latex.php?latex=R&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='R' title='R' class='latex' />. Induction on <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' /> shows that</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%28x%2By%29%5E%7Bn%7D%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7Db_%7Bi%7D%5E%7Bn%7D%28c%29x%5E%7Bi%7Dy%5E%7Bn-i%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(x+y)^{n}= &#92;sum_{i=0}^{n}b_{i}^{n}(c)x^{i}y^{n-i}' title='(x+y)^{n}= &#92;sum_{i=0}^{n}b_{i}^{n}(c)x^{i}y^{n-i}' class='latex' />.</p>
<p> In particular, for the generators <img src='http://s0.wp.com/latex.php?latex=x&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x' title='x' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=y&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y' title='y' class='latex' /> of <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C1-%5Calpha%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,1-&#92;alpha)' title='A_{&#92;omega}(&#92;alpha,1-&#92;alpha)' class='latex' />, since <img src='http://s0.wp.com/latex.php?latex=b_%7B0%7D%5E%7Bn%7D%28%5Comega%29%3Db_%7Bn%7D%5E%7Bn%7D%28%5Comega%29%3D1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b_{0}^{n}(&#92;omega)=b_{n}^{n}(&#92;omega)=1' title='b_{0}^{n}(&#92;omega)=b_{n}^{n}(&#92;omega)=1' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=b_%7Bi%7D%5E%7Bn%7D%28%5Comega%29%3D0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b_{i}^{n}(&#92;omega)=0' title='b_{i}^{n}(&#92;omega)=0' class='latex' /> for all <img src='http://s0.wp.com/latex.php?latex=0%3Ci%3Cn&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='0&lt;i&lt;n' title='0&lt;i&lt;n' class='latex' />, we obtain that</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=%28x%2By%29%5E%7Bn%7D%3Dx%5E%7Bn%7D%2By%5E%7Bn%7D%3D%5Calpha%2B%281-%5Calpha%29%3D1.+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(x+y)^{n}=x^{n}+y^{n}=&#92;alpha+(1-&#92;alpha)=1. ' title='(x+y)^{n}=x^{n}+y^{n}=&#92;alpha+(1-&#92;alpha)=1. ' class='latex' /></p>
<p>Now by the same reason as the previous corollary we have</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C1-%5Calpha%29%5Csimeq+M_n%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,1-&#92;alpha)&#92;simeq M_n(F)' title='A_{&#92;omega}(&#92;alpha,1-&#92;alpha)&#92;simeq M_n(F)' class='latex' />.</p>
<p><strong>Theorem 3</strong>. Let <img src='http://s0.wp.com/latex.php?latex=%5Calpha%2C+%5Cbeta%2C+%5Cgamma&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;alpha, &#92;beta, &#92;gamma' title='&#92;alpha, &#92;beta, &#92;gamma' class='latex' /> be in <img src='http://s0.wp.com/latex.php?latex=F%5E%7B%2A%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F^{*}' title='F^{*}' class='latex' />. Then</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5Cotimes_F+A_%7B%5Comega%7D%28%5Calpha%2C%5Cgamma%29%5Csimeq+A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta+%5Cgamma%29%5Cotimes_F+A_%7B%5Comega%7D%281%2C%5Cgamma%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,&#92;beta)&#92;otimes_F A_{&#92;omega}(&#92;alpha,&#92;gamma)&#92;simeq A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)&#92;otimes_F A_{&#92;omega}(1,&#92;gamma).' title='A_{&#92;omega}(&#92;alpha,&#92;beta)&#92;otimes_F A_{&#92;omega}(&#92;alpha,&#92;gamma)&#92;simeq A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)&#92;otimes_F A_{&#92;omega}(1,&#92;gamma).' class='latex' /></p>
<p><strong>Proof.</strong><br />
Let <img src='http://s0.wp.com/latex.php?latex=x_1%2C+y_1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_1, y_1' title='x_1, y_1' class='latex' /> be the generators for <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,&#92;beta)' title='A_{&#92;omega}(&#92;alpha,&#92;beta)' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=x_2%2C+y_2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_2, y_2' title='x_2, y_2' class='latex' /> be the generators for <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C%5Cgamma%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,&#92;gamma)' title='A_{&#92;omega}(&#92;alpha,&#92;gamma)' class='latex' />. Define</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=x_3%3Dx_1%5Cotimes+1+%5Cquad+y_3%3Dy_1%5Cotimes+y_2+%5Cquad+x_4%3Dx_%7B1%7D%5E%7B-1%7D%5Cotimes+x_2+%5Cquad+y_4%3D1%5Cotimes+y_2.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_3=x_1&#92;otimes 1 &#92;quad y_3=y_1&#92;otimes y_2 &#92;quad x_4=x_{1}^{-1}&#92;otimes x_2 &#92;quad y_4=1&#92;otimes y_2.' title='x_3=x_1&#92;otimes 1 &#92;quad y_3=y_1&#92;otimes y_2 &#92;quad x_4=x_{1}^{-1}&#92;otimes x_2 &#92;quad y_4=1&#92;otimes y_2.' class='latex' /></p>
<p>Let <img src='http://s0.wp.com/latex.php?latex=A%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A&#039;' title='A&#039;' class='latex' /> be the algebra generated by <img src='http://s0.wp.com/latex.php?latex=x_3%2C+y_3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_3, y_3' title='x_3, y_3' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=A%27%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A&#039;&#039;' title='A&#039;&#039;' class='latex' /> be the algebra generated by <img src='http://s0.wp.com/latex.php?latex=x_4%2C+y_4&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_4, y_4' title='x_4, y_4' class='latex' />. Now <img src='http://s0.wp.com/latex.php?latex=x_%7B3%7D%5E%7Bn%7D%3D%5Calpha%5Cotimes+1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_{3}^{n}=&#92;alpha&#92;otimes 1' title='x_{3}^{n}=&#92;alpha&#92;otimes 1' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=y_%7B3%7D%5E%7Bn%7D%3D%5Cbeta%5Cgamma%5Cotimes+1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y_{3}^{n}=&#92;beta&#92;gamma&#92;otimes 1' title='y_{3}^{n}=&#92;beta&#92;gamma&#92;otimes 1' class='latex' /> and</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=y_3x_3%3Dy_1x_1%5Cotimes+y_2%3D%5Comega+%28x_1y_1%5Cotimes+y_2%29%3D%5Comega+x_3y_3.+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y_3x_3=y_1x_1&#92;otimes y_2=&#92;omega (x_1y_1&#92;otimes y_2)=&#92;omega x_3y_3. ' title='y_3x_3=y_1x_1&#92;otimes y_2=&#92;omega (x_1y_1&#92;otimes y_2)=&#92;omega x_3y_3. ' class='latex' /></p>
<p>So <img src='http://s0.wp.com/latex.php?latex=x_3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_3' title='x_3' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=y_3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y_3' title='y_3' class='latex' /> satisfy the relations for <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta+%5Cgamma%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)' title='A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)' class='latex' />, thus  <img src='http://s0.wp.com/latex.php?latex=A%27%5Csimeq+A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta+%5Cgamma%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A&#039;&#92;simeq A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)' title='A&#039;&#92;simeq A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)' class='latex' />. Similarly <img src='http://s0.wp.com/latex.php?latex=A%27%27%5Csimeq+A_%7B%5Comega%7D%281%2C%5Cgamma%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A&#039;&#039;&#92;simeq A_{&#92;omega}(1,&#92;gamma)' title='A&#039;&#039;&#92;simeq A_{&#92;omega}(1,&#92;gamma)' class='latex' />. Notice that <img src='http://s0.wp.com/latex.php?latex=x_3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_3' title='x_3' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=y_3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y_3' title='y_3' class='latex' /> commute with <img src='http://s0.wp.com/latex.php?latex=x_4&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_4' title='x_4' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=y_4&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='y_4' title='y_4' class='latex' />, hence we have a natural  <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' />-algebra homomorphism</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=%5Cvarphi%3A++++++A%27%5Cotimes_F+A%27%27%5Clongrightarrow+A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5Cotimes_F+A_%7B%5Comega%7D%28%5Calpha%2C%5Cgamma%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;varphi:      A&#039;&#92;otimes_F A&#039;&#039;&#92;longrightarrow A_{&#92;omega}(&#92;alpha,&#92;beta)&#92;otimes_F A_{&#92;omega}(&#92;alpha,&#92;gamma)' title='&#92;varphi:      A&#039;&#92;otimes_F A&#039;&#039;&#92;longrightarrow A_{&#92;omega}(&#92;alpha,&#92;beta)&#92;otimes_F A_{&#92;omega}(&#92;alpha,&#92;gamma)' class='latex' />.</p>
<p>Since <img src='http://s0.wp.com/latex.php?latex=A%27%5Cotimes_F+A%27%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A&#039;&#92;otimes_F A&#039;&#039;' title='A&#039;&#92;otimes_F A&#039;&#039;' class='latex' /> is simple, <img src='http://s0.wp.com/latex.php?latex=%5Cvarphi&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;varphi' title='&#92;varphi' class='latex' /> is injective. Since the dimensions of two sides are equal  <img src='http://s0.wp.com/latex.php?latex=n%5E%7B4%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n^{4}' title='n^{4}' class='latex' /> it must be an isomorphism.<br />
<strong><br />
Remark. </strong>We have already seen that <img src='http://s0.wp.com/latex.php?latex=A_%7B%5Comega%7D%28%5Calpha%2C1%29%5Csimeq+M_n%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A_{&#92;omega}(&#92;alpha,1)&#92;simeq M_n(F)' title='A_{&#92;omega}(&#92;alpha,1)&#92;simeq M_n(F)' class='latex' />. So by the above theorem we have</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5BA_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta+%5Cgamma%29%5D%3D%5B+A_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5D+%5BA_%7B%5Comega%7D%28%5Calpha%2C%5Cgamma%29%5D%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='[A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)]=[ A_{&#92;omega}(&#92;alpha,&#92;beta)] [A_{&#92;omega}(&#92;alpha,&#92;gamma)],' title='[A_{&#92;omega}(&#92;alpha,&#92;beta &#92;gamma)]=[ A_{&#92;omega}(&#92;alpha,&#92;beta)] [A_{&#92;omega}(&#92;alpha,&#92;gamma)],' class='latex' /> similarly</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5BA_%7B%5Comega%7D%28%5Calpha%5Cbeta%2C+%5Cgamma%29%5D%3D%5B+A_%7B%5Comega%7D%28%5Calpha%2C%5Cgamma%29%5D%5BA_%7B%5Comega%7D%28%5Cbeta%2C%5Cgamma%5D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='[A_{&#92;omega}(&#92;alpha&#92;beta, &#92;gamma)]=[ A_{&#92;omega}(&#92;alpha,&#92;gamma)][A_{&#92;omega}(&#92;beta,&#92;gamma].' title='[A_{&#92;omega}(&#92;alpha&#92;beta, &#92;gamma)]=[ A_{&#92;omega}(&#92;alpha,&#92;gamma)][A_{&#92;omega}(&#92;beta,&#92;gamma].' class='latex' /></p>
<p>Here  <img src='http://s0.wp.com/latex.php?latex=%5BA%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='[A]' title='[A]' class='latex' /> denotes the equivalence class of <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> in the Brauer Group.</p>
<p>Define</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=s+%3A+F%5E%7B%2A%7D%5Ctimes+F%5E%7B%2A%7D+%5Clongrightarrow+Br%28F%29+%5Cquad+s%28%5Calpha%2C+%5Cbeta%29%3A%3D+%5BA_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s : F^{*}&#92;times F^{*} &#92;longrightarrow Br(F) &#92;quad s(&#92;alpha, &#92;beta):= [A_{&#92;omega}(&#92;alpha,&#92;beta)].' title='s : F^{*}&#92;times F^{*} &#92;longrightarrow Br(F) &#92;quad s(&#92;alpha, &#92;beta):= [A_{&#92;omega}(&#92;alpha,&#92;beta)].' class='latex' /></p>
<p>The above remark says that <img src='http://s0.wp.com/latex.php?latex=s&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s' title='s' class='latex' /> is <img src='http://s0.wp.com/latex.php?latex=%5Cmathbb%7BZ%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathbb{Z}' title='&#92;mathbb{Z}' class='latex' />-bilinear. By Theorem 3  we observe that <img src='http://s0.wp.com/latex.php?latex=s&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='s' title='s' class='latex' /> is a Steinberg symbol, hence we get a homomorphism</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Ctilde%7Bs%7D%3A+K_2%28F%29%5Clongrightarrow+Br+%28F%29+%5Cquad+%5Ctilde%7Bs%7D%5C%7B%5Calpha%2C%5Cbeta%5C%7D%3D+%5BA_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;tilde{s}: K_2(F)&#92;longrightarrow Br (F) &#92;quad &#92;tilde{s}&#92;{&#92;alpha,&#92;beta&#92;}= [A_{&#92;omega}(&#92;alpha,&#92;beta)].' title='&#92;tilde{s}: K_2(F)&#92;longrightarrow Br (F) &#92;quad &#92;tilde{s}&#92;{&#92;alpha,&#92;beta&#92;}= [A_{&#92;omega}(&#92;alpha,&#92;beta)].' class='latex' /></p>
<p>From Corollary it follows that</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=%5BA_%7B%5Comega%7D%28%5Calpha%2C%5Cbeta%29%5D%5E%7Bn%7D%3D%5BA_%7B%5Comega%7D%28%5Calpha%5E%7Bn%7D%2C%5Cbeta%29%5D%3D1%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='[A_{&#92;omega}(&#92;alpha,&#92;beta)]^{n}=[A_{&#92;omega}(&#92;alpha^{n},&#92;beta)]=1,' title='[A_{&#92;omega}(&#92;alpha,&#92;beta)]^{n}=[A_{&#92;omega}(&#92;alpha^{n},&#92;beta)]=1,' class='latex' /></p>
<p> which shows that the image of <img src='http://s0.wp.com/latex.php?latex=%5Ctilde%7Bs%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;tilde{s}' title='&#92;tilde{s}' class='latex' /> is contained in</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=%7B_n%7DBr%28F%29%3A%3D%5C%7B%5BA%5D%5Cin+Br%28F%29%7E%7C%7E%5BA%5D%5E%7Bn%7D%3D1%5C%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{_n}Br(F):=&#92;{[A]&#92;in Br(F)~|~[A]^{n}=1&#92;}.' title='{_n}Br(F):=&#92;{[A]&#92;in Br(F)~|~[A]^{n}=1&#92;}.' class='latex' /></p>
<p> Since <img src='http://s0.wp.com/latex.php?latex=n%5C%7B%5Calpha%2C%5Cbeta%5C%7D%3D%5C%7B%5Calpha%5E%7Bn%7D%2C%5Cbeta%5C%7D+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n&#92;{&#92;alpha,&#92;beta&#92;}=&#92;{&#92;alpha^{n},&#92;beta&#92;} ' title='n&#92;{&#92;alpha,&#92;beta&#92;}=&#92;{&#92;alpha^{n},&#92;beta&#92;} ' class='latex' />, the homomorphism <img src='http://s0.wp.com/latex.php?latex=%5Ctilde%7Bs%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;tilde{s}' title='&#92;tilde{s}' class='latex' /> annihilates <img src='http://s0.wp.com/latex.php?latex=nK_2%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='nK_2(F)' title='nK_2(F)' class='latex' />, therefore it induces a homomorphism</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=R_%7Bn%2CF%7D%3A+K_2%28F%29%2Fn+K_2%28F%29+%5Clongrightarrow_n+Br%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='R_{n,F}: K_2(F)/n K_2(F) &#92;longrightarrow_n Br(F)' title='R_{n,F}: K_2(F)/n K_2(F) &#92;longrightarrow_n Br(F)' class='latex' /></p>
<p>which is called the norm residue homomorphism.</p>
<p>The following surprising theorem was proved by A. Merkurjev and<br />
A. Suslin in 1982.</p>
<p><em><strong>The Merkurjev-Suslin Theorem.</strong></em> Let <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> be a field which contains an <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' />-th primitive root of unity. Then</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=R_%7Bn%2CF%7D%3A+K_2%28F%29%2FnK_2%28F%29%5Clongrightarrow++%7B_n%7DBr%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='R_{n,F}: K_2(F)/nK_2(F)&#92;longrightarrow  {_n}Br(F)' title='R_{n,F}: K_2(F)/nK_2(F)&#92;longrightarrow  {_n}Br(F)' class='latex' /></p>
<p>is an isomorphism.</p>
<p><em><strong>Norm Residue Homomorphism via Galois Cohomology.</strong></em></p>
<p>The norm residue homomorphism can be described in terms of Galois cohomology. As a preliminary we need to recall  the notion of the cup product in the cohomology of groups.</p>
<p>Let <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> be a field and let <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' /> be an integer coprime to  char <img src='http://s0.wp.com/latex.php?latex=%28F%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(F).' title='(F).' class='latex' /> Set</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D%3D%5C%7B+x%5Cin+F_%7Bsp%7D+%7C%5Cquad+x%5E%7Bn%7D%3D1+%5C%7D+++.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}=&#92;{ x&#92;in F_{sp} |&#92;quad x^{n}=1 &#92;}   .' title='&#92;mu_{n}=&#92;{ x&#92;in F_{sp} |&#92;quad x^{n}=1 &#92;}   .' class='latex' /></p>
<p> The condition <img src='http://s0.wp.com/latex.php?latex=%28n%2Cchar+F%29%3D1+++&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(n,char F)=1   ' title='(n,char F)=1   ' class='latex' /> implies that <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}' title='&#92;mu_{n}' class='latex' /> has exactly <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' /> elements. Assume that <img src='http://s0.wp.com/latex.php?latex=F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F' title='F' class='latex' /> has an <img src='http://s0.wp.com/latex.php?latex=n&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='n' title='n' class='latex' />-th primitive root of unity, i.e. <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D+++%5Csubset+F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}   &#92;subset F' title='&#92;mu_{n}   &#92;subset F' class='latex' />. Set <img src='http://s0.wp.com/latex.php?latex=G%3A%3D+Gal%28F_%7Bsp%7D%2FF%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='G:= Gal(F_{sp}/F)' title='G:= Gal(F_{sp}/F)' class='latex' /> and consider the following exact sequence of <img src='http://s0.wp.com/latex.php?latex=G&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='G' title='G' class='latex' />-modules:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=1+%5Cstackrel%7B%5Cmu_%7Bn%7D%7D%7B%5Crightarrow%7D+%5Crightarrow+F_%7Bsp%7D%5E%7B%2A%7D+%5Cstackrel%7B%5Ctext%7Bn%7D%7D%7B%5Crightarrow%7D+F_%7Bsp%7D%5E%7B%2A%7D+%5Crightarrow1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='1 &#92;stackrel{&#92;mu_{n}}{&#92;rightarrow} &#92;rightarrow F_{sp}^{*} &#92;stackrel{&#92;text{n}}{&#92;rightarrow} F_{sp}^{*} &#92;rightarrow1' title='1 &#92;stackrel{&#92;mu_{n}}{&#92;rightarrow} &#92;rightarrow F_{sp}^{*} &#92;stackrel{&#92;text{n}}{&#92;rightarrow} F_{sp}^{*} &#92;rightarrow1' class='latex' /></p>
<p>The associated exact cohomology sequence is</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=1++%5Crightarrow+H%5E%7B0%7D+%28G+%2C%5Cmu_%7Bn%7D%29+%5Crightarrow++H%5E%7B0%7D+%28+G+%2CF_%7Bsp%7D%5E%7B%2A%7D%29+%5Cstackrel%7B%5Ctext%7Bn%7D%7D%7B%5Crightarrow%7D++H%5E%7B0%7D%28G%2C+F_%7Bsp%7D%5E%7B%2A%7D%29+%5Crightarrow+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='1  &#92;rightarrow H^{0} (G ,&#92;mu_{n}) &#92;rightarrow  H^{0} ( G ,F_{sp}^{*}) &#92;stackrel{&#92;text{n}}{&#92;rightarrow}  H^{0}(G, F_{sp}^{*}) &#92;rightarrow ' title='1  &#92;rightarrow H^{0} (G ,&#92;mu_{n}) &#92;rightarrow  H^{0} ( G ,F_{sp}^{*}) &#92;stackrel{&#92;text{n}}{&#92;rightarrow}  H^{0}(G, F_{sp}^{*}) &#92;rightarrow ' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=H%5E%7B1%7D+%28G+%2C+%5Cmu_%7Bn%7D%29+%5Crightarrow++H%5E%7B1%7D+%28G+%2CF_%7Bsp%7D%5E%7B%2A%7D%29+%5Cstackrel%7B%5Ctext%7B+n%7D%7D%7B%5Crightarrow%7D+H%5E%7B1%7D%28G%2C+F_%7Bsp%7D%5E%7B%2A%7D%29+%5Crightarrow&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{1} (G , &#92;mu_{n}) &#92;rightarrow  H^{1} (G ,F_{sp}^{*}) &#92;stackrel{&#92;text{ n}}{&#92;rightarrow} H^{1}(G, F_{sp}^{*}) &#92;rightarrow' title='H^{1} (G , &#92;mu_{n}) &#92;rightarrow  H^{1} (G ,F_{sp}^{*}) &#92;stackrel{&#92;text{ n}}{&#92;rightarrow} H^{1}(G, F_{sp}^{*}) &#92;rightarrow' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=H%5E%7B2%7D+%28+G+%2C%5Cmu_%7Bn%7D%29+%5Crightarrow++H%5E%7B2%7D+%28+G+%2CF_%7Bsp%7D%5E%7B%2A%7D%29+%5Cstackrel%7B%5Ctext%7Bn%7D%7D%7B%5Crightarrow%7D++H%5E%7B2%7D%28G+%2C+F_%7Bsp%7D%5E%7B%2A%7D%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{2} ( G ,&#92;mu_{n}) &#92;rightarrow  H^{2} ( G ,F_{sp}^{*}) &#92;stackrel{&#92;text{n}}{&#92;rightarrow}  H^{2}(G , F_{sp}^{*}).' title='H^{2} ( G ,&#92;mu_{n}) &#92;rightarrow  H^{2} ( G ,F_{sp}^{*}) &#92;stackrel{&#92;text{n}}{&#92;rightarrow}  H^{2}(G , F_{sp}^{*}).' class='latex' /></p>
<p>As <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D+%5Csubset+F&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n} &#92;subset F' title='&#92;mu_{n} &#92;subset F' class='latex' />, the action of <img src='http://s0.wp.com/latex.php?latex=G&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='G' title='G' class='latex' /> on <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}' title='&#92;mu_{n}' class='latex' /> is trivial, so  <img src='http://s0.wp.com/latex.php?latex=H%5E%7B0%7D+%28G+%2C%5Cmu_%7Bn%7D%29%3D%5Cmu_%7Bn%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{0} (G ,&#92;mu_{n})=&#92;mu_{n}' title='H^{0} (G ,&#92;mu_{n})=&#92;mu_{n}' class='latex' /> . By Hilbert&#8217;s Satz <img src='http://s0.wp.com/latex.php?latex=90&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='90' title='90' class='latex' /> we have <img src='http://s0.wp.com/latex.php?latex=H%5E%7B1%7D+%28+G+%2CF_%7Bsp%7D%5E%7B%2A%7D%29%3D1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{1} ( G ,F_{sp}^{*})=1' title='H^{1} ( G ,F_{sp}^{*})=1' class='latex' />, so the above sequence breaks up to the following exact sequences:</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=1+%5Crightarrow+%5Cmu_%7Bn%7D+%5Crightarrow+F%5E%7B%2A%7D+%5Cstackrel%7B%5Ctext%7Bn%7D%7D+%7B%5Crightarrow%7D+F%5E%7B%2A%7D+%5Cstackrel%7B%5Cdelta%7D%7B%5Crightarrow%7D+H%5E%7B1%7D%28G%2C%5Cmu_%7Bn%7D%29+%5Crightarrow+1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='1 &#92;rightarrow &#92;mu_{n} &#92;rightarrow F^{*} &#92;stackrel{&#92;text{n}} {&#92;rightarrow} F^{*} &#92;stackrel{&#92;delta}{&#92;rightarrow} H^{1}(G,&#92;mu_{n}) &#92;rightarrow 1' title='1 &#92;rightarrow &#92;mu_{n} &#92;rightarrow F^{*} &#92;stackrel{&#92;text{n}} {&#92;rightarrow} F^{*} &#92;stackrel{&#92;delta}{&#92;rightarrow} H^{1}(G,&#92;mu_{n}) &#92;rightarrow 1' class='latex' /></p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=1+%5Crightarrow+H%5E%7B2%7D%28G+%2C+%5Cmu_%7Bn%7D%29+%5Cstackrel%7B%5Clambda%7D+%7B%5Crightarrow%7D+H%5E%7B2%7D%28G+%2C+F_%7Bsp%7D%29+%5Cstackrel%7B%5Ctext%7Bn%7D%7D%7B%5Crightarrow%7D++H%5E%7B2%7D%28G+%2C+F_%7Bsp%7D%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='1 &#92;rightarrow H^{2}(G , &#92;mu_{n}) &#92;stackrel{&#92;lambda} {&#92;rightarrow} H^{2}(G , F_{sp}) &#92;stackrel{&#92;text{n}}{&#92;rightarrow}  H^{2}(G , F_{sp}).' title='1 &#92;rightarrow H^{2}(G , &#92;mu_{n}) &#92;stackrel{&#92;lambda} {&#92;rightarrow} H^{2}(G , F_{sp}) &#92;stackrel{&#92;text{n}}{&#92;rightarrow}  H^{2}(G , F_{sp}).' class='latex' /></p>
<p>Hence the map <img src='http://s0.wp.com/latex.php?latex=%5Cdelta&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;delta' title='&#92;delta' class='latex' /> induces an isomorphism <img src='http://s0.wp.com/latex.php?latex=H%5E%7B1%7D%28G+%2C+%5Cmu_%7Bn%7D%29%5Csimeq+F%5E%7B%2A%7D%2FF%5E%7B%2A%5E%7Bn%7D%7D%29+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{1}(G , &#92;mu_{n})&#92;simeq F^{*}/F^{*^{n}}) ' title='H^{1}(G , &#92;mu_{n})&#92;simeq F^{*}/F^{*^{n}}) ' class='latex' />, and the map <img src='http://s0.wp.com/latex.php?latex=%5Clambda&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;lambda' title='&#92;lambda' class='latex' /> induces an isomorphism between</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=H%5E%7B2%7D%28G+%2C+%5Cmu_%7Bn%7D%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{2}(G , &#92;mu_{n})' title='H^{2}(G , &#92;mu_{n})' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=ker%28+H%5E%7B2%7D%28G+%2C+F_%7Bsp%7D%29+%5Cstackrel%7B%5Ctext%7B+n%7D%7D%7B%5Crightarrow%7D++H%5E%7B2%7D%28G+%2CF_%7Bsp%7D%29%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ker( H^{2}(G , F_{sp}) &#92;stackrel{&#92;text{ n}}{&#92;rightarrow}  H^{2}(G ,F_{sp})).' title='ker( H^{2}(G , F_{sp}) &#92;stackrel{&#92;text{ n}}{&#92;rightarrow}  H^{2}(G ,F_{sp})).' class='latex' /></p>
<p> By using that <img src='http://s0.wp.com/latex.php?latex=Br%28F%29+%5Csimeq++++++H%5E%7B2%7D%28G+%2C+F_%7Bsp%7D%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='Br(F) &#92;simeq      H^{2}(G , F_{sp})' title='Br(F) &#92;simeq      H^{2}(G , F_{sp})' class='latex' /> we obtain that <img src='http://s0.wp.com/latex.php?latex=H%5E%7B2%7D%28G+%2C+%5Cmu_%7Bn%7D%29%5Csimeq+_nBr%28F%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{2}(G , &#92;mu_{n})&#92;simeq _nBr(F).' title='H^{2}(G , &#92;mu_{n})&#92;simeq _nBr(F).' class='latex' /> Since <img src='http://s0.wp.com/latex.php?latex=G&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='G' title='G' class='latex' /> acts trivially on <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}' title='&#92;mu_{n}' class='latex' /> it follows  that <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D%5E%7B%5Cotimes%5E%7B2%7D%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}^{&#92;otimes^{2}}' title='&#92;mu_{n}^{&#92;otimes^{2}}' class='latex' />  is isomorphic to <img src='http://s0.wp.com/latex.php?latex=%5Cmu_%7Bn%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mu_{n}' title='&#92;mu_{n}' class='latex' /> as <img src='http://s0.wp.com/latex.php?latex=G&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='G' title='G' class='latex' />-module, hence</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=H%5E%7B2%7D%28G+%2C++++%5Cmu%5E%7B%5Cotimes%5E%7B2%7D%7D+%29+%5Csimeq+++++++++++++H%5E%7B2%7D%28G+%2C+%5Cmu_%7Bn%7D%29+%5Csimeq%7B_n%7DBr%28F%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H^{2}(G ,    &#92;mu^{&#92;otimes^{2}} ) &#92;simeq             H^{2}(G , &#92;mu_{n}) &#92;simeq{_n}Br(F).' title='H^{2}(G ,    &#92;mu^{&#92;otimes^{2}} ) &#92;simeq             H^{2}(G , &#92;mu_{n}) &#92;simeq{_n}Br(F).' class='latex' /></p>
<p>The composition of the following maps</p>
<p align="center"> <img src='http://s0.wp.com/latex.php?latex=F%5E%7B%2A%7D+%5Ctimes+F%5E%7B%2A%7D+%5Crightarrow+F%5E%7B%2A%7D%2FF%5E%7B%2A%5E%7Bn%7D%7D%5Ctimes+F%5E%7B%2A%7D%2FF%5E%7B%2A%5E%7Bn%7D%7D%5Csimeq+H%5E%7B1%7D%28G%2C%5Cmu_%7Bn%7D%29%5Ctimes+H%5E%7B1%7D%28G%2C%5Cmu_%7Bn%7D%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='F^{*} &#92;times F^{*} &#92;rightarrow F^{*}/F^{*^{n}}&#92;times F^{*}/F^{*^{n}}&#92;simeq H^{1}(G,&#92;mu_{n})&#92;times H^{1}(G,&#92;mu_{n})' title='F^{*} &#92;times F^{*} &#92;rightarrow F^{*}/F^{*^{n}}&#92;times F^{*}/F^{*^{n}}&#92;simeq H^{1}(G,&#92;mu_{n})&#92;times H^{1}(G,&#92;mu_{n})' class='latex' /> <img src='http://s0.wp.com/latex.php?latex=%5Cstackrel%7B%5Ccup%7D%7B%5Crightarrow%7D+H%5E%7B2%7D%28G%2C+%5Cmu_%7Bn%7D%29%5Csimeq++%7B_n%7DBr%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;stackrel{&#92;cup}{&#92;rightarrow} H^{2}(G, &#92;mu_{n})&#92;simeq  {_n}Br(F)' title='&#92;stackrel{&#92;cup}{&#92;rightarrow} H^{2}(G, &#92;mu_{n})&#92;simeq  {_n}Br(F)' class='latex' /></p>
<p>gives a <img src='http://s0.wp.com/latex.php?latex=%5Cmathbb%7BZ%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathbb{Z}' title='&#92;mathbb{Z}' class='latex' />-bilinear map which can be proved to be a Steinberg symbol, and the induced homomorphism <img src='http://s0.wp.com/latex.php?latex=K_2%28F%29%5Clongrightarrow+%7B_n%7DBr%28F%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='K_2(F)&#92;longrightarrow {_n}Br(F)' title='K_2(F)&#92;longrightarrow {_n}Br(F)' class='latex' /> is the norm residue homomorphism.</p>
<p><strong>References: </strong></p>
<p><a href="http://www.ams.org/mathscinet/search/publications.html?pg1=IID&amp;s1=100590">1. Kersten, Ina</a> <span class="title">Brauergruppen von Körpern.</span> (German)  [Brauer groups of fields] <a href="http://www.ams.org/mathscinet/search/series.html?cn=Aspects_of_Mathematics">Aspects of Mathematics, D6.</a><a href="http://www.ams.org/mathscinet/search/publications.html?pg1=IID&amp;s1=125060">1.</a></p>
<p><a href="http://www.ams.org/mathscinet/search/publications.html?pg1=IID&amp;s1=125060">2. Milnor, John</a> <span class="title">Introduction to algebraic $K$-theory.</span> Annals of Mathematics Studies, No. 72.</p>
<p><a href="http://www.mpim-bonn.mpg.de/preprints/retrieve?number=75&amp;year=2007">3. Rost, Markus</a> Arbeitstagung 2007 &#8211; Norm residue homomorphism.<strong>  </strong></p>
<p><a href="http://www.ams.org/mathscinet/search/publications.html?pg1=IID&amp;s1=171020">4. Tate, John</a> <span class="title">Relations between $K\sb{2}$ and Galois cohomology.</span> <a href="http://www.ams.org/mathscinet/search/journaldoc.html?cn=Invent_Math"> <em>Invent. Math.</em></a> <strong> 36 </strong> (1976), 257&#8211;274.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=15&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/12/ring-theoretic-description-of-the-norm-residue-homomorphism/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/22b92b6578078fdcbc9f3392a51081ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mehran</media:title>
		</media:content>
	</item>
		<item>
		<title>Ivanka on Hirzebruch</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/10/ivanka-on-hirzebruch/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/10/ivanka-on-hirzebruch/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 20:29:09 +0000</pubDate>
		<dc:creator>Abhijnan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/10/ivanka-on-hirzebruch/</guid>
		<description><![CDATA[(Via Anton (my fellow-blogger) and his wife Masha- their seven year old daughter Ivanka&#8217;s notes from Hirzebruch&#8217;s opening lecture at the 50th Arbeitstagung here a couple of weeks ago)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=12&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://vivatsgasse7.wordpress.com/2007/07/10/ivanka-on-hirzebruch/14/" rel="attachment wp-att-14" title="ivanka1.png"><img src="http://vivatsgasse7.files.wordpress.com/2007/07/ivanka1.png?w=490" alt="ivanka1.png" /></a></p>
<p>(Via Anton (my fellow-blogger) and his wife Masha- their seven year old daughter Ivanka&#8217;s notes from Hirzebruch&#8217;s opening lecture at the 50th Arbeitstagung here a couple of weeks ago)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=12&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/10/ivanka-on-hirzebruch/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7600307ed3dfc3c3376ad96bbb5fa5fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ganita</media:title>
		</media:content>

		<media:content url="http://vivatsgasse7.files.wordpress.com/2007/07/ivanka1.png" medium="image">
			<media:title type="html">ivanka1.png</media:title>
		</media:content>
	</item>
		<item>
		<title>In case you want to learn (more) Arakelov theory</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/10/in-case-you-want-to-learn-more-arakelov-theory/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/10/in-case-you-want-to-learn-more-arakelov-theory/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 13:32:19 +0000</pubDate>
		<dc:creator>Abhijnan</dc:creator>
				<category><![CDATA[Arakelov theory]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/10/in-case-you-want-to-learn-more-arakelov-theory/</guid>
		<description><![CDATA[Recently I asked Faltings for some references for a self-study of Arakelov theory beyond Lang&#8217;s Arakelov theory. He suggested the following (all revolving around the arithmetic Riemann-Roch theorem): 1. Papers by Gillet and Soule on arithmetic intersection theory 2. Papers by Bismut, Gillet and Soule on determinant of cohomology of an arithmetic variety (towards Riemann-Roch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=11&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I asked Faltings for some references for a self-study of Arakelov theory beyond <a href="http://www.ams.org/mathscinet/search/publdoc.html?arg3=&amp;co4=AND&amp;co5=AND&amp;co6=AND&amp;co7=AND&amp;dr=all&amp;pg4=AUCN&amp;pg5=TI&amp;pg6=PC&amp;pg7=ALLF&amp;pg8=ET&amp;r=1&amp;s4=Lang&amp;s5=Arakelov&amp;s6=&amp;s7=&amp;s8=All&amp;yearRangeFirst=&amp;yearRangeSecond=&amp;yrop=eq">Lang&#8217;s <em>Arakelov theory.</em></a></p>
<p>He suggested the following (all revolving around the arithmetic Riemann-Roch theorem):</p>
<p>1. Papers by Gillet and Soule on arithmetic intersection theory</p>
<p>2. Papers by Bismut, Gillet and Soule on determinant of cohomology of an arithmetic variety  (towards Riemann-Roch for this determinant.)</p>
<p><span id="more-11"></span>It seems that these papers are summarized in <a href="http://www.ams.org/mathscinet/search/publdoc.html?arg3=&amp;co4=AND&amp;co5=AND&amp;co6=AND&amp;co7=AND&amp;dr=all&amp;pg4=AUCN&amp;pg5=TI&amp;pg6=PC&amp;pg7=ALLF&amp;pg8=ET&amp;s4=Soule&amp;s5=Arakelov&amp;s6=&amp;s7=&amp;s8=All&amp;yearRangeFirst=&amp;yearRangeSecond=&amp;yrop=eq&amp;r=3">Soule&#8217;s book</a>. Also there is a nice book by Faltings that modesty prevented him from referring it to me: <a href="http://www.ams.org/mathscinet/search/publdoc.html?arg3=&amp;co4=AND&amp;co5=AND&amp;co6=AND&amp;co7=AND&amp;dr=all&amp;pg4=AUCN&amp;pg5=TI&amp;pg6=PC&amp;pg7=ALLF&amp;pg8=ET&amp;r=1&amp;s4=Faltings&amp;s5=Riemann-Roch&amp;s6=&amp;s7=&amp;s8=All&amp;yearRangeFirst=&amp;yearRangeSecond=&amp;yrop=eq"><em>Lectures on the arithmetic Riemann-Roch theorem.</em></a></p>
<p>Speaking of Arakelov theory, two final comments:</p>
<p>(1) The best place to get into the right frame of mind for these type of questions in an elementary setting is <a href="http://www.ams.org/mathscinet/search/publdoc.html?arg3=&amp;co4=AND&amp;co5=AND&amp;co6=AND&amp;co7=AND&amp;dr=all&amp;pg4=AUCN&amp;pg5=TI&amp;pg6=PC&amp;pg7=ALLF&amp;pg8=ET&amp;s4=&amp;s5=algebraic%20number%20theory&amp;s6=&amp;s7=&amp;s8=All&amp;yearRangeFirst=&amp;yearRangeSecond=&amp;yrop=eq&amp;r=24">Neukirch&#8217;s book <em>Algebraic number theory </em></a></p>
<p>(2) Our fellow student here Nikolai Durov has recently reworked the foundations of the entire theory from the point of view of generalized rings (including exotic objects like the field with one element <img src='http://s0.wp.com/latex.php?latex=%5Cmathbb%7BF%7D_1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathbb{F}_1' title='&#92;mathbb{F}_1' class='latex' />). His thesis is available <a href="http://www.arxiv.org/abs/0704.2030">here</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=11&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/10/in-case-you-want-to-learn-more-arakelov-theory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7600307ed3dfc3c3376ad96bbb5fa5fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ganita</media:title>
		</media:content>
	</item>
		<item>
		<title>Bloch group</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/09/bloch-group/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/09/bloch-group/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 18:49:48 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[k-theory]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/09/bloch-group/</guid>
		<description><![CDATA[Recently I was trying to understand what&#8217;s behind the mysterious condition for elements () to define an element in the Bloch group. It appears that the condition naturally appears if one studies hyperbolic -manifolds. Let be an abelian group. Let be a triangulated oriented -dimensional manifold. Let be an oriented -dimensional simplex of the triangulation. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=9&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I was trying to understand what&#8217;s behind the mysterious condition</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Csum_i+%5Bz_i%5D%5Cwedge%5B1-z_i%5D+%3D+0%5Cin+%5CLambda%5E2+%5Cmathbb+C%5E%5Ctimes&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;sum_i [z_i]&#92;wedge[1-z_i] = 0&#92;in &#92;Lambda^2 &#92;mathbb C^&#92;times' title='&#92;sum_i [z_i]&#92;wedge[1-z_i] = 0&#92;in &#92;Lambda^2 &#92;mathbb C^&#92;times' class='latex' /></p></blockquote>
<p>for elements <img src='http://s0.wp.com/latex.php?latex=z_i%5Cin+%5Cmathbb+C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z_i&#92;in &#92;mathbb C' title='z_i&#92;in &#92;mathbb C' class='latex' /> (<img src='http://s0.wp.com/latex.php?latex=z_i%5Cneq+0%2C+1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z_i&#92;neq 0, 1' title='z_i&#92;neq 0, 1' class='latex' />) to define an element <img src='http://s0.wp.com/latex.php?latex=%5Csum_i%5Bz_i%5D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;sum_i[z_i]' title='&#92;sum_i[z_i]' class='latex' /> in the Bloch group. It appears that the condition naturally appears if one studies hyperbolic <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-manifolds.</p>
<p><span id="more-9"></span>Let <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> be an abelian group. Let <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> be a triangulated oriented <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-dimensional manifold. Let <img src='http://s0.wp.com/latex.php?latex=%5CDelta%3D%28a%2Cb%2Cc%2Cd%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta=(a,b,c,d)' title='&#92;Delta=(a,b,c,d)' class='latex' /> be an oriented <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-dimensional simplex of the triangulation.</p>
<p><strong>Definition</strong><br />
An angle structure on <img src='http://s0.wp.com/latex.php?latex=%5CDelta&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta' title='&#92;Delta' class='latex' /> is a collection of <img src='http://s0.wp.com/latex.php?latex=12&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='12' title='12' class='latex' /> elements of <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> , denoted <img src='http://s0.wp.com/latex.php?latex=k_%7Bxy%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{xy}' title='k_{xy}' class='latex' /> , one for each edge <img src='http://s0.wp.com/latex.php?latex=xy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='xy' title='xy' class='latex' /> satisfying relations:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=k_%7Bxy%7D%3Dk_%7Byx%7D%2C%5C%3B+%5Csum_%7By%7D+k_%7Bxy%7D%3D0+%5C%3B%5Ctext%7Bfor+any+vertex%7D%5C%3B+x.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{xy}=k_{yx},&#92;; &#92;sum_{y} k_{xy}=0 &#92;;&#92;text{for any vertex}&#92;; x.' title='k_{xy}=k_{yx},&#92;; &#92;sum_{y} k_{xy}=0 &#92;;&#92;text{for any vertex}&#92;; x.' class='latex' /></p></blockquote>
<p>We think of <img src='http://s0.wp.com/latex.php?latex=k_%7Bxy%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{xy}' title='k_{xy}' class='latex' /> as the angle between the faces of <img src='http://s0.wp.com/latex.php?latex=%5CDelta&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta' title='&#92;Delta' class='latex' /> meeting at <img src='http://s0.wp.com/latex.php?latex=xy&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='xy' title='xy' class='latex' />.</p>
<p>We have</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=k_%7Bab%7D%2Bk_%7Bac%7D%2Bk_%7Bad%7D%3D0%2C%5C%3B+k_%7Bab%7D%2Bk_%7Bbc%7D%2Bk_%7Bbd%7D%3D0%2C%5C%5C+%5Cindent+k_%7Bac%7D%2Bk_%7Bbc%7D%2Bk_%7Bcd%7D%3D0%2C%5C%3B+k_%7Bad%7D%2Bk_%7Bbd%7D%2Bk_%7Bcd%7D%3D0.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ab}+k_{ac}+k_{ad}=0,&#92;; k_{ab}+k_{bc}+k_{bd}=0,&#92;&#92; &#92;indent k_{ac}+k_{bc}+k_{cd}=0,&#92;; k_{ad}+k_{bd}+k_{cd}=0.' title='k_{ab}+k_{ac}+k_{ad}=0,&#92;; k_{ab}+k_{bc}+k_{bd}=0,&#92;&#92; &#92;indent k_{ac}+k_{bc}+k_{cd}=0,&#92;; k_{ad}+k_{bd}+k_{cd}=0.' class='latex' /></p></blockquote>
<p>This, in particular, implies</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=2%28k_%7Bab%7D-k_%7Bcd%7D%29%3D2%28k_%7Bac%7D-k_%7Bbd%7D%29%3D2%28k_%7Bad%7D-k_%7Bbc%7D%29%3D0.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2(k_{ab}-k_{cd})=2(k_{ac}-k_{bd})=2(k_{ad}-k_{bc})=0.' title='2(k_{ab}-k_{cd})=2(k_{ac}-k_{bd})=2(k_{ad}-k_{bc})=0.' class='latex' /></p></blockquote>
<p>Suppose each tetrahedron of the triangulation has an angle structure. The corresponding angles will be denoted <img src='http://s0.wp.com/latex.php?latex=k_%7Bab%7D%5E%7Bcd%7D%5Cin+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ab}^{cd}&#92;in A' title='k_{ab}^{cd}&#92;in A' class='latex' /> , which means the angle between <img src='http://s0.wp.com/latex.php?latex=abc&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='abc' title='abc' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=abd&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='abd' title='abd' class='latex' />, i.e. for a simplex <img src='http://s0.wp.com/latex.php?latex=%5CDelta%3D%28a%2Cb%2Cc%2Cd%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta=(a,b,c,d)' title='&#92;Delta=(a,b,c,d)' class='latex' /> we have <img src='http://s0.wp.com/latex.php?latex=12&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='12' title='12' class='latex' /> elements listed below:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=k_%7Bab%7D%5E%7Bcd%7D%3Dk_%7Bba%7D%5E%7Bdc%7D%2C+k_%7Bac%7D%5E%7Bdb%7D%3Dk_%7Bca%7D%5E%7Bbd%7D%2C+k_%7Bad%7D%5E%7Bbc%7D%3Dk_%7Bda%7D%5E%7Bcb%7D%2C+k_%7Bbc%7D%5E%7Bad%7D%3Dk_%7Bcb%7D%5E%7Bda%7D%2C+k_%7Bbd%7D%5E%7Bca%7D%3Dk_%7Bdb%7D%5E%7Bac%7D%2C+k_%7Bcd%7D%5E%7Bab%7D%3Dk_%7Bdc%7D%5E%7Bba%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ab}^{cd}=k_{ba}^{dc}, k_{ac}^{db}=k_{ca}^{bd}, k_{ad}^{bc}=k_{da}^{cb}, k_{bc}^{ad}=k_{cb}^{da}, k_{bd}^{ca}=k_{db}^{ac}, k_{cd}^{ab}=k_{dc}^{ba}.' title='k_{ab}^{cd}=k_{ba}^{dc}, k_{ac}^{db}=k_{ca}^{bd}, k_{ad}^{bc}=k_{da}^{cb}, k_{bc}^{ad}=k_{cb}^{da}, k_{bd}^{ca}=k_{db}^{ac}, k_{cd}^{ab}=k_{dc}^{ba}.' class='latex' /></p></blockquote>
<p>Let us define additionally</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=k_%7Bab%7D%5E%7Bdc%7D%3Dk_%7Bba%7D%5E%7Bcd%7D%3D-k_%7Bab%7D%5E%7Bcd%7D%2C+%5Cqquad+%5Ctext%7Betc.%7D+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ab}^{dc}=k_{ba}^{cd}=-k_{ab}^{cd}, &#92;qquad &#92;text{etc.} ' title='k_{ab}^{dc}=k_{ba}^{cd}=-k_{ab}^{cd}, &#92;qquad &#92;text{etc.} ' class='latex' /></p></blockquote>
<p>Therefore the notation is invariant with respect to even permutations of vertices of <img src='http://s0.wp.com/latex.php?latex=%5CDelta&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Delta' title='&#92;Delta' class='latex' />.</p>
<p><strong>Definition</strong><br />
For each edge <img src='http://s0.wp.com/latex.php?latex=ab&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ab' title='ab' class='latex' /> of <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> let <img src='http://s0.wp.com/latex.php?latex=%28ab+x_i+x_%7Bi%2B1%7D%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(ab x_i x_{i+1})' title='(ab x_i x_{i+1})' class='latex' /> be the <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-simplices adjacent to <img src='http://s0.wp.com/latex.php?latex=ab&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ab' title='ab' class='latex' /> with <img src='http://s0.wp.com/latex.php?latex=i%3D0%2C1%2C%5Cldots%2Cn-1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='i=0,1,&#92;ldots,n-1' title='i=0,1,&#92;ldots,n-1' class='latex' /> , and <img src='http://s0.wp.com/latex.php?latex=x_n%3Dx_0&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='x_n=x_0' title='x_n=x_0' class='latex' />. Suppose the following condition is satisfied:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Csum_i+k_%7Bab%7D%5E%7Bx_i+x_%7Bi%2B1%7D%7D%3D0.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;sum_i k_{ab}^{x_i x_{i+1}}=0.' title='&#92;sum_i k_{ab}^{x_i x_{i+1}}=0.' class='latex' /></p></blockquote>
<p>Then we call our manifold <em>angled</em>.</p>
<p>Suppose we have a finite set of tetrahedra with angle structure. Is it possible to glue them together and obtain an angled oriented manifold? We provide a necessary condition.</p>
<p><strong>Theorem</strong><br />
In an angled oriented manifold the following condition is satisfied in the group <img src='http://s0.wp.com/latex.php?latex=%5CLambda%5E2+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Lambda^2 A' title='&#92;Lambda^2 A' class='latex' />:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Csum_%7Babcd%7D%284+k_%7Bab%7D%5E%7Bcd%7D%5Cwedge+k_%7Bac%7D%5E%7Bdb%7D%2Bk_%7Bad%7D%5E%7Bbc%7D%5Cwedge+k_%7Bad%7D%5E%7Bbc%7D%2Bk_%7Bbc%7D%5E%7Bad%7D%5Cwedge+k_%7Bbc%7D%5E%7Bad%7D%29%3D0%2C+&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;sum_{abcd}(4 k_{ab}^{cd}&#92;wedge k_{ac}^{db}+k_{ad}^{bc}&#92;wedge k_{ad}^{bc}+k_{bc}^{ad}&#92;wedge k_{bc}^{ad})=0, ' title='&#92;sum_{abcd}(4 k_{ab}^{cd}&#92;wedge k_{ac}^{db}+k_{ad}^{bc}&#92;wedge k_{ad}^{bc}+k_{bc}^{ad}&#92;wedge k_{bc}^{ad})=0, ' class='latex' /></p></blockquote>
<p>the sum is over the <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-simplices which compose the fundamental class of the manifold.</p>
<p>Note that if <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' /> is invertible in <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> , then the terms <img src='http://s0.wp.com/latex.php?latex=k_%7Bad%7D%5E%7Bbc%7D%5Cwedge+k_%7Bad%7D%5E%7Bbc%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ad}^{bc}&#92;wedge k_{ad}^{bc}' title='k_{ad}^{bc}&#92;wedge k_{ad}^{bc}' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=k_%7Bbc%7D%5E%7Bad%7D%5Cwedge+k_%7Bbc%7D%5E%7Bad%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{bc}^{ad}&#92;wedge k_{bc}^{ad}' title='k_{bc}^{ad}&#92;wedge k_{bc}^{ad}' class='latex' /> are <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' />.</p>
<p><strong>Remark</strong><br />
Let <img src='http://s0.wp.com/latex.php?latex=A%3D%7B%5Cmathbb+C%7D%5E%5Ctimes&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A={&#92;mathbb C}^&#92;times' title='A={&#92;mathbb C}^&#92;times' class='latex' /> and each tetrahedron is realized as an ideal tetrahedron in the hyperbolic <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-space <img src='http://s0.wp.com/latex.php?latex=%5Cmathfrak+H&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathfrak H' title='&#92;mathfrak H' class='latex' /> with cross-ratio <img src='http://s0.wp.com/latex.php?latex=z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z' title='z' class='latex' />. Then its angles are <img src='http://s0.wp.com/latex.php?latex=z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z' title='z' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B1%7D%7B1-z%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{1}{1-z}' title='&#92;frac{1}{1-z}' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=1-%5Cfrac%7B1%7D%7Bz%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='1-&#92;frac{1}{z}' title='1-&#92;frac{1}{z}' class='latex' />. To make the product <img src='http://s0.wp.com/latex.php?latex=1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='1' title='1' class='latex' /> one can change angles to <img src='http://s0.wp.com/latex.php?latex=-z&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='-z' title='-z' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B1%7D%7Bz-1%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{1}{z-1}' title='&#92;frac{1}{z-1}' class='latex' />, <img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B1%7D%7Bz%7D-1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{1}{z}-1' title='&#92;frac{1}{z}-1' class='latex' />. Then we see that up to <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' />-torsion the sum of tensors <img src='http://s0.wp.com/latex.php?latex=z%5Cwedge+%281-z%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z&#92;wedge (1-z)' title='z&#92;wedge (1-z)' class='latex' /> is <img src='http://s0.wp.com/latex.php?latex=%7B0%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='{0}' title='{0}' class='latex' />, which is well known. In other words, hyperbolic <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-manifolds provide elements in <em>the Bloch group</em>. However our approach seems to be more general.</p>
<p><!--more-->The rest of this text provides a proof of the theorem.</p>
<p>Suppose <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> is angled. Then we can construct elements <img src='http://s0.wp.com/latex.php?latex=h_%7Bab%7D%5Ec%5Cin+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{ab}^c&#92;in A' title='h_{ab}^c&#92;in A' class='latex' /> with the property</p>
<blockquote><p> <img src='http://s0.wp.com/latex.php?latex=k_%7Bab%7D%5E%7Bcd%7D+%3D+h_%7Bab%7D%5Ed-h_%7Bab%7D%5Ec&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ab}^{cd} = h_{ab}^d-h_{ab}^c' title='k_{ab}^{cd} = h_{ab}^d-h_{ab}^c' class='latex' /></p></blockquote>
<p>for each oriented simplex <img src='http://s0.wp.com/latex.php?latex=%28a%2Cb%2Cc%2Cd%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(a,b,c,d)' title='(a,b,c,d)' class='latex' />. If <img src='http://s0.wp.com/latex.php?latex=h%27%5Ec_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h&#039;^c_{ab}' title='h&#039;^c_{ab}' class='latex' /> is another such family then there is a family <img src='http://s0.wp.com/latex.php?latex=q_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q_{ab}' title='q_{ab}' class='latex' /> with</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h%27%5Ec_%7Bab%7D-h_%7Bab%7D%5Ec+%3D+q_%7Bab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h&#039;^c_{ab}-h_{ab}^c = q_{ab}.' title='h&#039;^c_{ab}-h_{ab}^c = q_{ab}.' class='latex' /></p></blockquote>
<p>Fix a vertex <img src='http://s0.wp.com/latex.php?latex=a&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='a' title='a' class='latex' />. Let <img src='http://s0.wp.com/latex.php?latex=ab&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ab' title='ab' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=ab%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ab&#039;' title='ab&#039;' class='latex' /> be edges. Join <img src='http://s0.wp.com/latex.php?latex=ab&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ab' title='ab' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=ab%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='ab&#039;' title='ab&#039;' class='latex' /> by a sequence of triangles <img src='http://s0.wp.com/latex.php?latex=%28a+b_i+b_%7Bi%2B1%7D%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(a b_i b_{i+1})' title='(a b_i b_{i+1})' class='latex' /> for <img src='http://s0.wp.com/latex.php?latex=i%3D0%2C1%2C%5Cldots%2Cn-1&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='i=0,1,&#92;ldots,n-1' title='i=0,1,&#92;ldots,n-1' class='latex' /> , <img src='http://s0.wp.com/latex.php?latex=b_0%3Db&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b_0=b' title='b_0=b' class='latex' /> , <img src='http://s0.wp.com/latex.php?latex=b_n%3Db%27&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='b_n=b&#039;' title='b_n=b&#039;' class='latex' />. Put</p>
<blockquote><p> <img src='http://s0.wp.com/latex.php?latex=m_a%28b%2Cb%27%29+%3D+%5Csum_%7Bi%7D+%28h_%7Ba+b_i%7D%5E%7Bb_%7Bi%2B1%7D%7D+-+h_%7Ba+b_%7Bi%2B1%7D%7D%5E%7Bb_i%7D%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='m_a(b,b&#039;) = &#92;sum_{i} (h_{a b_i}^{b_{i+1}} - h_{a b_{i+1}}^{b_i}).' title='m_a(b,b&#039;) = &#92;sum_{i} (h_{a b_i}^{b_{i+1}} - h_{a b_{i+1}}^{b_i}).' class='latex' /></p></blockquote>
<p>This does not depend on the choice of the sequence since for any oriented <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-simplex <img src='http://s0.wp.com/latex.php?latex=%28a+b+c+d%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(a b c d)' title='(a b c d)' class='latex' /> we have</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%28h_%7Ba+b%7D%5E%7Bc%7D+-+h_%7Ba+c%7D%5Eb%29+%2B+%28h_%7Bac%7D%5Ed-h_%7Bad%7D%5Ec%29+%2B+%28h_%7Bad%7D%5Eb-h_%7Bab%7D%5Ed%29%3D-k_%7Bab%7D%5E%7Bcd%7D-k_%7Bac%7D%5E%7Bdb%7D-k_%7Bad%7D%5E%7Bbc%7D%3D0.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(h_{a b}^{c} - h_{a c}^b) + (h_{ac}^d-h_{ad}^c) + (h_{ad}^b-h_{ab}^d)=-k_{ab}^{cd}-k_{ac}^{db}-k_{ad}^{bc}=0.' title='(h_{a b}^{c} - h_{a c}^b) + (h_{ac}^d-h_{ad}^c) + (h_{ad}^b-h_{ab}^d)=-k_{ab}^{cd}-k_{ac}^{db}-k_{ad}^{bc}=0.' class='latex' /></p></blockquote>
<p>Therefore there is a family <img src='http://s0.wp.com/latex.php?latex=q_%7Bab%7D%5Cin+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q_{ab}&#92;in A' title='q_{ab}&#92;in A' class='latex' /> with the property</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=m_a%28b%2Cb%27%29%3Dq_%7Bab%27%7D-q_%7Bab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='m_a(b,b&#039;)=q_{ab&#039;}-q_{ab}.' title='m_a(b,b&#039;)=q_{ab&#039;}-q_{ab}.' class='latex' /></p></blockquote>
<p>If <img src='http://s0.wp.com/latex.php?latex=q%27_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q&#039;_{ab}' title='q&#039;_{ab}' class='latex' /> is another such family, there exists a family <img src='http://s0.wp.com/latex.php?latex=p_a%5Cin+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='p_a&#92;in A' title='p_a&#92;in A' class='latex' /> with</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=q%27_%7Bab%7D-q_%7Bab%7D%3Dp_a.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q&#039;_{ab}-q_{ab}=p_a.' title='q&#039;_{ab}-q_{ab}=p_a.' class='latex' /></p></blockquote>
<p>In particular for any <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' />-simplex <img src='http://s0.wp.com/latex.php?latex=%28abc%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(abc)' title='(abc)' class='latex' /> we have</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h_%7Ba+b%7D%5Ec-h_%7Bac%7D%5Eb+%3D+q_%7Bac%7D-q_%7Bab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{a b}^c-h_{ac}^b = q_{ac}-q_{ab}.' title='h_{a b}^c-h_{ac}^b = q_{ac}-q_{ab}.' class='latex' /></p></blockquote>
<p>We see that we can replace <img src='http://s0.wp.com/latex.php?latex=h_%7Ba+b%7D%5Ec&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{a b}^c' title='h_{a b}^c' class='latex' /> with <img src='http://s0.wp.com/latex.php?latex=h_%7Ba+b%7D%5Ec%2Bq_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{a b}^c+q_{ab}' title='h_{a b}^c+q_{ab}' class='latex' /> to make <img src='http://s0.wp.com/latex.php?latex=h&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h' title='h' class='latex' /> satisfying</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h_%7Bab%7D%5Ec%3Dh_%7Bac%7D%5Eb%5C%3B%5Ctext%7Bfor+any%7D%5C%3B+2-%5Ctext%7Bsimplex%7D%5C%3B+%28abc%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{ab}^c=h_{ac}^b&#92;;&#92;text{for any}&#92;; 2-&#92;text{simplex}&#92;; (abc).' title='h_{ab}^c=h_{ac}^b&#92;;&#92;text{for any}&#92;; 2-&#92;text{simplex}&#92;; (abc).' class='latex' /></p></blockquote>
<p>If <img src='http://s0.wp.com/latex.php?latex=h%27%5Ec_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h&#039;^c_{ab}' title='h&#039;^c_{ab}' class='latex' /> is another family with this condition then there is a family <img src='http://s0.wp.com/latex.php?latex=p_a%5Cin+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='p_a&#92;in A' title='p_a&#92;in A' class='latex' /> with the property</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h%27%5Ec_%7Bab%7D-h%5Ec_%7Bab%7D%3Dp_a.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h&#039;^c_{ab}-h^c_{ab}=p_a.' title='h&#039;^c_{ab}-h^c_{ab}=p_a.' class='latex' /></p></blockquote>
<p>Put <img src='http://s0.wp.com/latex.php?latex=h%27%5Ec_%7Bab%7D%3D-h%5Ec_%7Bba%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h&#039;^c_{ab}=-h^c_{ba}' title='h&#039;^c_{ab}=-h^c_{ba}' class='latex' />. Then for any oriented <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-simplex <img src='http://s0.wp.com/latex.php?latex=%28abcd%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(abcd)' title='(abcd)' class='latex' /></p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=k_%7Bab%7D%5E%7Bcd%7D+%3D+k_%7Bba%7D%5E%7Bdc%7D%3Dh_%7Bba%7D%5Ec-h_%7Bba%7D%5Ed%3Dh%27%5Ed_%7Bab%7D-h%27%5Ec_%7Bab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k_{ab}^{cd} = k_{ba}^{dc}=h_{ba}^c-h_{ba}^d=h&#039;^d_{ab}-h&#039;^c_{ab}.' title='k_{ab}^{cd} = k_{ba}^{dc}=h_{ba}^c-h_{ba}^d=h&#039;^d_{ab}-h&#039;^c_{ab}.' class='latex' /></p></blockquote>
<p>Therefore there exists a family <img src='http://s0.wp.com/latex.php?latex=q_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q_{ab}' title='q_{ab}' class='latex' /> (this <img src='http://s0.wp.com/latex.php?latex=q&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q' title='q' class='latex' /> is different from the one used before) with property</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h%5Ec_%7Bab%7D-h%27%5Ec_%7Bab%7D+%3D+q_%7Bab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h^c_{ab}-h&#039;^c_{ab} = q_{ab}.' title='h^c_{ab}-h&#039;^c_{ab} = q_{ab}.' class='latex' /></p></blockquote>
<p>This means that for any <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' />-simplex <img src='http://s0.wp.com/latex.php?latex=%28abc%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(abc)' title='(abc)' class='latex' /> we have</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h%5Ec_%7Bab%7D%2Bh%5Ec_%7Bba%7D+%3D+q_%7Bab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h^c_{ab}+h^c_{ba} = q_{ab}.' title='h^c_{ab}+h^c_{ba} = q_{ab}.' class='latex' /></p></blockquote>
<p>Let us summarize the properties of <img src='http://s0.wp.com/latex.php?latex=h%5Ec_%7Bab%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h^c_{ab}' title='h^c_{ab}' class='latex' />:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=h_%7Bab%7D%5Ec%3Dh_%7Bac%7D%5Eb%2C%5C%3Bh%5Ec_%7Bab%7D%2Bh%5Ec_%7Bba%7D+%3D+q_%7Bab%7D%2C%5C%3Bk_%7Bab%7D%5E%7Bcd%7D+%3D+h_%7Bab%7D%5Ed-h_%7Bab%7D%5Ec.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{ab}^c=h_{ac}^b,&#92;;h^c_{ab}+h^c_{ba} = q_{ab},&#92;;k_{ab}^{cd} = h_{ab}^d-h_{ab}^c.' title='h_{ab}^c=h_{ac}^b,&#92;;h^c_{ab}+h^c_{ba} = q_{ab},&#92;;k_{ab}^{cd} = h_{ab}^d-h_{ab}^c.' class='latex' /></p></blockquote>
<p>Let <img src='http://s0.wp.com/latex.php?latex=%28abc%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(abc)' title='(abc)' class='latex' /> be a <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' />-simplex. Then</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=q_%7Bab%7D%2Bq_%7Bac%7D-q_%7Bbc%7D%3Dh_%7Bab%7D%5Ec%2Bh_%7Bba%7D%5Ec%2Bh_%7Bac%7D%5Eb%2Bh_%7Bca%7D%5Eb-h_%7Bbc%7D%5Ea-h_%7Bcb%7D%5Ea+%3D+2+h_%7Bab%7D%5Ec.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q_{ab}+q_{ac}-q_{bc}=h_{ab}^c+h_{ba}^c+h_{ac}^b+h_{ca}^b-h_{bc}^a-h_{cb}^a = 2 h_{ab}^c.' title='q_{ab}+q_{ac}-q_{bc}=h_{ab}^c+h_{ba}^c+h_{ac}^b+h_{ca}^b-h_{bc}^a-h_{cb}^a = 2 h_{ab}^c.' class='latex' /></p></blockquote>
<p>Consider the following element in <img src='http://s0.wp.com/latex.php?latex=%5CLambda%5E2+A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;Lambda^2 A' title='&#92;Lambda^2 A' class='latex' />:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cphi_%7Babc%7D%3Dh_%7Bab%7D%5Ec%5Cwedge+h_%7Bbc%7D%5Ea+%2B+h_%7Bbc%7D%5Ea%5Cwedge+h_%7Bca%7D%5Eb+%2B+h_%7Bca%7D%5Eb%5Cwedge+h_%7Bab%7D%5Ec.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;phi_{abc}=h_{ab}^c&#92;wedge h_{bc}^a + h_{bc}^a&#92;wedge h_{ca}^b + h_{ca}^b&#92;wedge h_{ab}^c.' title='&#92;phi_{abc}=h_{ab}^c&#92;wedge h_{bc}^a + h_{bc}^a&#92;wedge h_{ca}^b + h_{ca}^b&#92;wedge h_{ab}^c.' class='latex' /></p></blockquote>
<p>This element is invariant under cyclic permutations:</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cphi_%7Babc%7D%3D%5Cphi_%7Bbca%7D%3D%5Cphi_%7Bcab%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;phi_{abc}=&#92;phi_{bca}=&#92;phi_{cab}.' title='&#92;phi_{abc}=&#92;phi_{bca}=&#92;phi_{cab}.' class='latex' /></p></blockquote>
<p>Moreover,</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cphi_%7Bacb%7D%3Dh_%7Bac%7D%5Eb%5Cwedge+h_%7Bcb%7D%5Ea+%2B+h_%7Bcb%7D%5Ea%5Cwedge+h_%7Bba%7D%5Ec+%2B+h_%7Bba%7D%5Ec%5Cwedge+h_%7Bac%7D%5Eb+%5C%5C+%5Cindent+%3Dh_%7Bab%7D%5Ec%5Cwedge+h_%7Bca%7D%5Eb+%2B+h_%7Bca%7D%5Eb%5Cwedge+h_%7Bbc%7D%5Ea+%2B+h_%7Bbc%7D%5Ea%5Cwedge+h_%7Bab%7D%5Ec%3D-%5Cphi_%7Babc%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;phi_{acb}=h_{ac}^b&#92;wedge h_{cb}^a + h_{cb}^a&#92;wedge h_{ba}^c + h_{ba}^c&#92;wedge h_{ac}^b &#92;&#92; &#92;indent =h_{ab}^c&#92;wedge h_{ca}^b + h_{ca}^b&#92;wedge h_{bc}^a + h_{bc}^a&#92;wedge h_{ab}^c=-&#92;phi_{abc}.' title='&#92;phi_{acb}=h_{ac}^b&#92;wedge h_{cb}^a + h_{cb}^a&#92;wedge h_{ba}^c + h_{ba}^c&#92;wedge h_{ac}^b &#92;&#92; &#92;indent =h_{ab}^c&#92;wedge h_{ca}^b + h_{ca}^b&#92;wedge h_{bc}^a + h_{bc}^a&#92;wedge h_{ab}^c=-&#92;phi_{abc}.' class='latex' /></p></blockquote>
<p>Since <img src='http://s0.wp.com/latex.php?latex=h_%7Bbc%7D%5Ea%3Dq_%7Bab%7D-h_%7Bab%7D%5Ec&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{bc}^a=q_{ab}-h_{ab}^c' title='h_{bc}^a=q_{ab}-h_{ab}^c' class='latex' /> and <img src='http://s0.wp.com/latex.php?latex=h_%7Bca%7D%5Eb%3Dq_%7Bac%7D-h_%7Bab%7D%5Ec&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='h_{ca}^b=q_{ac}-h_{ab}^c' title='h_{ca}^b=q_{ac}-h_{ab}^c' class='latex' /> , we can also write <img src='http://s0.wp.com/latex.php?latex=%5Cphi_%7Babc%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;phi_{abc}' title='&#92;phi_{abc}' class='latex' /> as</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cphi_%7Babc%7D%3D2+h_%7Bab%7D%5Ec%5Cwedge%28q_%7Bab%7D-q_%7Bac%7D%29+%2Bq_%7Bab%7D%5Cwedge+q_%7Bac%7D+-+h_%7Bab%7D%5Ec%5Cwedge+h_%7Bab%7D%5Ec+%5C%5C+%5Cindent+%3Dq_%7Bac%7D%5Cwedge+q_%7Bab%7D+%2Bq_%7Bab%7D%5Cwedge+q_%7Bbc%7D+%2Bq_%7Bbc%7D%5Cwedge+q_%7Bac%7D+%5C%5C+%5Cindent+%2B+q_%7Bab%7D%5Cwedge+q_%7Bab%7D+%2B+q_%7Bac%7D%5Cwedge+q_%7Bac%7D+%2B+h_%7Bab%7D%5Ec%5Cwedge+h_%7Bab%7D%5Ec%5C%5C+%5Cindent+%3Dq_%7Bac%7D%5Cwedge+q_%7Bab%7D+%2Bq_%7Bab%7D%5Cwedge+q_%7Bbc%7D+%2Bq_%7Bbc%7D%5Cwedge+q_%7Bac%7D+%2B+q_%7Bbc%7D%5Cwedge+q_%7Bbc%7D+%2B+h_%7Bab%7D%5Ec%5Cwedge+h_%7Bab%7D%5Ec.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;phi_{abc}=2 h_{ab}^c&#92;wedge(q_{ab}-q_{ac}) +q_{ab}&#92;wedge q_{ac} - h_{ab}^c&#92;wedge h_{ab}^c &#92;&#92; &#92;indent =q_{ac}&#92;wedge q_{ab} +q_{ab}&#92;wedge q_{bc} +q_{bc}&#92;wedge q_{ac} &#92;&#92; &#92;indent + q_{ab}&#92;wedge q_{ab} + q_{ac}&#92;wedge q_{ac} + h_{ab}^c&#92;wedge h_{ab}^c&#92;&#92; &#92;indent =q_{ac}&#92;wedge q_{ab} +q_{ab}&#92;wedge q_{bc} +q_{bc}&#92;wedge q_{ac} + q_{bc}&#92;wedge q_{bc} + h_{ab}^c&#92;wedge h_{ab}^c.' title='&#92;phi_{abc}=2 h_{ab}^c&#92;wedge(q_{ab}-q_{ac}) +q_{ab}&#92;wedge q_{ac} - h_{ab}^c&#92;wedge h_{ab}^c &#92;&#92; &#92;indent =q_{ac}&#92;wedge q_{ab} +q_{ab}&#92;wedge q_{bc} +q_{bc}&#92;wedge q_{ac} &#92;&#92; &#92;indent + q_{ab}&#92;wedge q_{ab} + q_{ac}&#92;wedge q_{ac} + h_{ab}^c&#92;wedge h_{ab}^c&#92;&#92; &#92;indent =q_{ac}&#92;wedge q_{ab} +q_{ab}&#92;wedge q_{bc} +q_{bc}&#92;wedge q_{ac} + q_{bc}&#92;wedge q_{bc} + h_{ab}^c&#92;wedge h_{ab}^c.' class='latex' /></p></blockquote>
<p>Let</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cphi_%7Babc%7D%5E0%3Dq_%7Bac%7D%5Cwedge+q_%7Bab%7D+%2Bq_%7Bab%7D%5Cwedge+q_%7Bbc%7D+%2Bq_%7Bbc%7D%5Cwedge+q_%7Bac%7D%2C%5C%5C+%5Cindent+%5Cphi_%7Babc%7D%5E1%3Dq_%7Bbc%7D%5Cwedge+q_%7Bbc%7D+%2B+h_%7Bab%7D%5Ec%5Cwedge+h_%7Bab%7D%5Ec.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;phi_{abc}^0=q_{ac}&#92;wedge q_{ab} +q_{ab}&#92;wedge q_{bc} +q_{bc}&#92;wedge q_{ac},&#92;&#92; &#92;indent &#92;phi_{abc}^1=q_{bc}&#92;wedge q_{bc} + h_{ab}^c&#92;wedge h_{ab}^c.' title='&#92;phi_{abc}^0=q_{ac}&#92;wedge q_{ab} +q_{ab}&#92;wedge q_{bc} +q_{bc}&#92;wedge q_{ac},&#92;&#92; &#92;indent &#92;phi_{abc}^1=q_{bc}&#92;wedge q_{bc} + h_{ab}^c&#92;wedge h_{ab}^c.' class='latex' /></p></blockquote>
<p>For any oriented <img src='http://s0.wp.com/latex.php?latex=3&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='3' title='3' class='latex' />-simplex <img src='http://s0.wp.com/latex.php?latex=%28abcd%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='(abcd)' title='(abcd)' class='latex' /> put</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cpsi%5E%2A_%7Babcd%7D+%3D%5Cphi%5E%2A_%7Bbcd%7D-%5Cphi%5E%2A_%7Bacd%7D%2B%5Cphi%5E%2A_%7Babd%7D-%5Cphi%5E%2A_%7Babc%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi^*_{abcd} =&#92;phi^*_{bcd}-&#92;phi^*_{acd}+&#92;phi^*_{abd}-&#92;phi^*_{abc}.' title='&#92;psi^*_{abcd} =&#92;phi^*_{bcd}-&#92;phi^*_{acd}+&#92;phi^*_{abd}-&#92;phi^*_{abc}.' class='latex' /></p></blockquote>
<p>Then</p>
<p><img src='http://s0.wp.com/latex.php?latex=%5Cpsi%5E0_%7Babcd%7D%3Dq_%7Bbc%7D%5Cwedge+q_%7Bcd%7D%2Bq_%7Bcd%7D%5Cwedge+q_%7Bbd%7D%2Bq_%7Bbd%7D%5Cwedge+q_%7Bbc%7D-q_%7Bac%7D%5Cwedge+q_%7Bcd%7D++-q_%7Bcd%7D%5Cwedge+q_%7Bad%7D+++%5C%5C+-q_%7Bad%7D%5Cwedge+q_%7Bac%7D+%2B+q_%7Bab%7D%5Cwedge+q_%7Bbd%7D+%2B+q_%7Bbd%7D%5Cwedge+q_%7Bad%7D+%2B+q_%7Bad%7D%5Cwedge+q_%7Bab%7D+-+q_%7Bab%7D%5Cwedge+q_%7Bbc%7D+%5C%5C+-q_%7Bbc%7D%5Cwedge+q_%7Bac%7D+-+q_%7Bac%7D%5Cwedge+q_%7Bab%7D+%5C%5C+%5Cindent+%3D+q_%7Bab%7D%5Cwedge+%28q_%7Bbd%7D-q_%7Bad%7D-q_%7Bbc%7D%2Bq_%7Bac%7D%29+%2B+q_%7Bcd%7D%5Cwedge+%28-q_%7Bbc%7D%2Bq_%7Bbd%7D%2Bq_%7Bac%7D-q_%7Bad%7D%29+%5C%5C+%2B%28q_%7Bbd%7D%2Bq_%7Bac%7D%29%5Cwedge%28q_%7Bbc%7D%2Bq_%7Bad%7D%29+%5C%5C+%5Cindent+%3D%28q_%7Bbc%7D%2Bq_%7Bad%7D%29%5Cwedge%28q_%7Bab%7D%2Bq_%7Bcd%7D%29+%2B+%28q_%7Bab%7D%2Bq_%7Bcd%7D%29%5Cwedge%28q_%7Bbd%7D%2Bq_%7Bac%7D%29+%5C%5C+%2B+%28q_%7Bbd%7D%2Bq_%7Bac%7D%29%5Cwedge%28q_%7Bbc%7D%2Bq_%7Bad%7D%29.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi^0_{abcd}=q_{bc}&#92;wedge q_{cd}+q_{cd}&#92;wedge q_{bd}+q_{bd}&#92;wedge q_{bc}-q_{ac}&#92;wedge q_{cd}  -q_{cd}&#92;wedge q_{ad}   &#92;&#92; -q_{ad}&#92;wedge q_{ac} + q_{ab}&#92;wedge q_{bd} + q_{bd}&#92;wedge q_{ad} + q_{ad}&#92;wedge q_{ab} - q_{ab}&#92;wedge q_{bc} &#92;&#92; -q_{bc}&#92;wedge q_{ac} - q_{ac}&#92;wedge q_{ab} &#92;&#92; &#92;indent = q_{ab}&#92;wedge (q_{bd}-q_{ad}-q_{bc}+q_{ac}) + q_{cd}&#92;wedge (-q_{bc}+q_{bd}+q_{ac}-q_{ad}) &#92;&#92; +(q_{bd}+q_{ac})&#92;wedge(q_{bc}+q_{ad}) &#92;&#92; &#92;indent =(q_{bc}+q_{ad})&#92;wedge(q_{ab}+q_{cd}) + (q_{ab}+q_{cd})&#92;wedge(q_{bd}+q_{ac}) &#92;&#92; + (q_{bd}+q_{ac})&#92;wedge(q_{bc}+q_{ad}).' title='&#92;psi^0_{abcd}=q_{bc}&#92;wedge q_{cd}+q_{cd}&#92;wedge q_{bd}+q_{bd}&#92;wedge q_{bc}-q_{ac}&#92;wedge q_{cd}  -q_{cd}&#92;wedge q_{ad}   &#92;&#92; -q_{ad}&#92;wedge q_{ac} + q_{ab}&#92;wedge q_{bd} + q_{bd}&#92;wedge q_{ad} + q_{ad}&#92;wedge q_{ab} - q_{ab}&#92;wedge q_{bc} &#92;&#92; -q_{bc}&#92;wedge q_{ac} - q_{ac}&#92;wedge q_{ab} &#92;&#92; &#92;indent = q_{ab}&#92;wedge (q_{bd}-q_{ad}-q_{bc}+q_{ac}) + q_{cd}&#92;wedge (-q_{bc}+q_{bd}+q_{ac}-q_{ad}) &#92;&#92; +(q_{bd}+q_{ac})&#92;wedge(q_{bc}+q_{ad}) &#92;&#92; &#92;indent =(q_{bc}+q_{ad})&#92;wedge(q_{ab}+q_{cd}) + (q_{ab}+q_{cd})&#92;wedge(q_{bd}+q_{ac}) &#92;&#92; + (q_{bd}+q_{ac})&#92;wedge(q_{bc}+q_{ad}).' class='latex' /></p>
<p>We may rewrite</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=q_%7Bbc%7D%2Bq_%7Bad%7D++%3Dh_%7Bbc%7D%5Ea%2Bh_%7Bcb%7D%5Ea%2Bh_%7Bad%7D%5Ec%2Bh_%7Bda%7D%5Ec+%3D+h_%7Bbc%7D%5Ea%2Bh_%7Bdc%7D%5Ea+%2B+q_%7Bac%7D-k_%7Bca%7D%5E%7Bbd%7D%2C%5C%5C+%5Cindent+q_%7Bab%7D%2Bq_%7Bcd%7D+%3Dh_%7Bab%7D%5Ec%2Bh_%7Bba%7D%5Ec%2Bh_%7Bcd%7D%5Ea%2Bh_%7Bdc%7D%5Ea+%3D+h_%7Bbc%7D%5Ea%2Bh_%7Bdc%7D%5Ea+%2Bq_%7Bac%7D%2Bk_%7Bca%7D%5E%7Bbd%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q_{bc}+q_{ad}  =h_{bc}^a+h_{cb}^a+h_{ad}^c+h_{da}^c = h_{bc}^a+h_{dc}^a + q_{ac}-k_{ca}^{bd},&#92;&#92; &#92;indent q_{ab}+q_{cd} =h_{ab}^c+h_{ba}^c+h_{cd}^a+h_{dc}^a = h_{bc}^a+h_{dc}^a +q_{ac}+k_{ca}^{bd}.' title='q_{bc}+q_{ad}  =h_{bc}^a+h_{cb}^a+h_{ad}^c+h_{da}^c = h_{bc}^a+h_{dc}^a + q_{ac}-k_{ca}^{bd},&#92;&#92; &#92;indent q_{ab}+q_{cd} =h_{ab}^c+h_{ba}^c+h_{cd}^a+h_{dc}^a = h_{bc}^a+h_{dc}^a +q_{ac}+k_{ca}^{bd}.' class='latex' /></p></blockquote>
<p>Therefore</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cpsi%5E0_%7Babcd%7D%3D2+k_%7Bca%7D%5E%7Bbd%7D%5Cwedge%28q_%7Bbd%7D%2Bq_%7Bac%7D%29-2+k_%7Bca%7D%5E%7Bbd%7D%5Cwedge%28h_%7Bbc%7D%5Ea%2Bh_%7Bdc%7D%5Ea+%2B+q_%7Bac%7D%29+%5C%5C+%2Bk_%7Bca%7D%5E%7Bbd%7D%5Cwedge+k_%7Bca%7D%5E%7Bbd%7D%2Bh_%7Bbc%7D%5Ea%5Cwedge+h_%7Bbc%7D%5Ea%2Bh_%7Bdc%7D%5Ea%5Cwedge+h_%7Bdc%7D%5Ea%2Bq_%7Bac%7D%5Cwedge+q_%7Bac%7D%5C%5C+%5Cindent+%3D2k_%7Bca%7D%5E%7Bbd%7D%5Cwedge%28q_%7Bbd%7D-h_%7Bbc%7D%5Ea-h_%7Bdc%7D%5Ea%29+%2B+q_%7Bbd%7D%5Cwedge+q_%7Bbd%7D+%2B+q_%7Bac%7D%5Cwedge+q_%7Bac%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi^0_{abcd}=2 k_{ca}^{bd}&#92;wedge(q_{bd}+q_{ac})-2 k_{ca}^{bd}&#92;wedge(h_{bc}^a+h_{dc}^a + q_{ac}) &#92;&#92; +k_{ca}^{bd}&#92;wedge k_{ca}^{bd}+h_{bc}^a&#92;wedge h_{bc}^a+h_{dc}^a&#92;wedge h_{dc}^a+q_{ac}&#92;wedge q_{ac}&#92;&#92; &#92;indent =2k_{ca}^{bd}&#92;wedge(q_{bd}-h_{bc}^a-h_{dc}^a) + q_{bd}&#92;wedge q_{bd} + q_{ac}&#92;wedge q_{ac}.' title='&#92;psi^0_{abcd}=2 k_{ca}^{bd}&#92;wedge(q_{bd}+q_{ac})-2 k_{ca}^{bd}&#92;wedge(h_{bc}^a+h_{dc}^a + q_{ac}) &#92;&#92; +k_{ca}^{bd}&#92;wedge k_{ca}^{bd}+h_{bc}^a&#92;wedge h_{bc}^a+h_{dc}^a&#92;wedge h_{dc}^a+q_{ac}&#92;wedge q_{ac}&#92;&#92; &#92;indent =2k_{ca}^{bd}&#92;wedge(q_{bd}-h_{bc}^a-h_{dc}^a) + q_{bd}&#92;wedge q_{bd} + q_{ac}&#92;wedge q_{ac}.' class='latex' /></p></blockquote>
<p>Taking into account that</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=q_%7Bbd%7D-h_%7Bbc%7D%5Ea-h_%7Bdc%7D%5Ea+%3D+h_%7Bbd%7D%5Ea%2Bh_%7Bdb%7D%5Ea-h_%7Bbc%7D%5Ea-h_%7Bdc%7D%5Ea+%3Dh_%7Bba%7D%5Ed%2Bh_%7Bda%7D%5Eb-h_%7Bba%7D%5Ec-h_%7Bda%7D%5Ec+%5C%5C+%5Cindent+%3D-k_%7Bba%7D%5E%7Bdc%7D%2Bk_%7Bda%7D%5E%7Bcb%7D%2C&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='q_{bd}-h_{bc}^a-h_{dc}^a = h_{bd}^a+h_{db}^a-h_{bc}^a-h_{dc}^a =h_{ba}^d+h_{da}^b-h_{ba}^c-h_{da}^c &#92;&#92; &#92;indent =-k_{ba}^{dc}+k_{da}^{cb},' title='q_{bd}-h_{bc}^a-h_{dc}^a = h_{bd}^a+h_{db}^a-h_{bc}^a-h_{dc}^a =h_{ba}^d+h_{da}^b-h_{ba}^c-h_{da}^c &#92;&#92; &#92;indent =-k_{ba}^{dc}+k_{da}^{cb},' class='latex' /></p></blockquote>
<p>we obtain</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cpsi%5E0_%7Babcd%7D%3D2+k_%7Bca%7D%5E%7Bbd%7D%5Cwedge%28k_%7Bda%7D%5E%7Bcb%7D-k_%7Bba%7D%5E%7Bdc%7D%29%2Bq_%7Bbd%7D%5Cwedge+q_%7Bbd%7D+%2B+q_%7Bac%7D%5Cwedge+q_%7Bac%7D%5C%5C+%5Cindent+%3D4+k_%7Bab%7D%5E%7Bcd%7D%5Cwedge+k_%7Bac%7D%5E%7Bdb%7D%2Bq_%7Bbd%7D%5Cwedge+q_%7Bbd%7D+%2B+q_%7Bac%7D%5Cwedge+q_%7Bac%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi^0_{abcd}=2 k_{ca}^{bd}&#92;wedge(k_{da}^{cb}-k_{ba}^{dc})+q_{bd}&#92;wedge q_{bd} + q_{ac}&#92;wedge q_{ac}&#92;&#92; &#92;indent =4 k_{ab}^{cd}&#92;wedge k_{ac}^{db}+q_{bd}&#92;wedge q_{bd} + q_{ac}&#92;wedge q_{ac}.' title='&#92;psi^0_{abcd}=2 k_{ca}^{bd}&#92;wedge(k_{da}^{cb}-k_{ba}^{dc})+q_{bd}&#92;wedge q_{bd} + q_{ac}&#92;wedge q_{ac}&#92;&#92; &#92;indent =4 k_{ab}^{cd}&#92;wedge k_{ac}^{db}+q_{bd}&#92;wedge q_{bd} + q_{ac}&#92;wedge q_{ac}.' class='latex' /></p></blockquote>
<p>Now we turn to <img src='http://s0.wp.com/latex.php?latex=%5Cpsi%5E1_%7Babcd%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi^1_{abcd}' title='&#92;psi^1_{abcd}' class='latex' />.</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cpsi%5E1_%7Babcd%7D%3Dq_%7Bcd%7D%5Cwedge+q_%7Bcd%7D+%2B+h_%7Bbc%7D%5Ed%5Cwedge+h_%7Bbc%7D%5Ed+%2B+q_%7Bcd%7D%5Cwedge+q_%7Bcd%7D%2Bh_%7Bac%7D%5Ed%5Cwedge+h_%7Bac%7D%5Ed+%5C%5C+%2B+q_%7Bab%7D%5Cwedge+q_%7Bab%7D+%2B+h_%7Bda%7D%5Eb%5Cwedge+h_%7Bda%7D%5Eb%2Bq_%7Bab%7D%5Cwedge+q_%7Bab%7D%2Bh_%7Bca%7D%5Eb%5Cwedge+h_%7Bca%7D%5Eb%5C%5C+%5Cindent+%3Dq_%7Bad%7D%5Cwedge+q_%7Bad%7D%2Bq_%7Bbc%7D%5Cwedge+q_%7Bbc%7D+%2B+k_%7Bda%7D%5E%7Bcb%7D%5Cwedge+k_%7Bda%7D%5E%7Bcb%7D%2Bk_%7Bcb%7D%5E%7Bda%7D%5Cwedge+k_%7Bcb%7D%5E%7Bda%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi^1_{abcd}=q_{cd}&#92;wedge q_{cd} + h_{bc}^d&#92;wedge h_{bc}^d + q_{cd}&#92;wedge q_{cd}+h_{ac}^d&#92;wedge h_{ac}^d &#92;&#92; + q_{ab}&#92;wedge q_{ab} + h_{da}^b&#92;wedge h_{da}^b+q_{ab}&#92;wedge q_{ab}+h_{ca}^b&#92;wedge h_{ca}^b&#92;&#92; &#92;indent =q_{ad}&#92;wedge q_{ad}+q_{bc}&#92;wedge q_{bc} + k_{da}^{cb}&#92;wedge k_{da}^{cb}+k_{cb}^{da}&#92;wedge k_{cb}^{da}.' title='&#92;psi^1_{abcd}=q_{cd}&#92;wedge q_{cd} + h_{bc}^d&#92;wedge h_{bc}^d + q_{cd}&#92;wedge q_{cd}+h_{ac}^d&#92;wedge h_{ac}^d &#92;&#92; + q_{ab}&#92;wedge q_{ab} + h_{da}^b&#92;wedge h_{da}^b+q_{ab}&#92;wedge q_{ab}+h_{ca}^b&#92;wedge h_{ca}^b&#92;&#92; &#92;indent =q_{ad}&#92;wedge q_{ad}+q_{bc}&#92;wedge q_{bc} + k_{da}^{cb}&#92;wedge k_{da}^{cb}+k_{cb}^{da}&#92;wedge k_{cb}^{da}.' class='latex' /></p></blockquote>
<p>Therefore</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cpsi_%7Babcd%7D%3D4+k_%7Bab%7D%5E%7Bcd%7D%5Cwedge+k_%7Bac%7D%5E%7Bdb%7D%2Bk_%7Bad%7D%5E%7Bbc%7D%5Cwedge+k_%7Bad%7D%5E%7Bbc%7D%2Bk_%7Bbc%7D%5E%7Bad%7D%5Cwedge+k_%7Bbc%7D%5E%7Bad%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi_{abcd}=4 k_{ab}^{cd}&#92;wedge k_{ac}^{db}+k_{ad}^{bc}&#92;wedge k_{ad}^{bc}+k_{bc}^{ad}&#92;wedge k_{bc}^{ad}.' title='&#92;psi_{abcd}=4 k_{ab}^{cd}&#92;wedge k_{ac}^{db}+k_{ad}^{bc}&#92;wedge k_{ad}^{bc}+k_{bc}^{ad}&#92;wedge k_{bc}^{ad}.' class='latex' /></p></blockquote>
<p>We see that <img src='http://s0.wp.com/latex.php?latex=%5Cpsi_%7Babcd%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;psi_{abcd}' title='&#92;psi_{abcd}' class='latex' /> depends only on the angles and its sum over the manifold is zero. If <img src='http://s0.wp.com/latex.php?latex=2&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='2' title='2' class='latex' /> is invertible in <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='A' title='A' class='latex' /> then</p>
<blockquote><p><img src='http://s0.wp.com/latex.php?latex=%5Cfrac%7B1%7D%7B4%7D%5Cpsi_%7Babcd%7D%3Dk_%7Bab%7D%5Cwedge+k_%7Bac%7D.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;frac{1}{4}&#92;psi_{abcd}=k_{ab}&#92;wedge k_{ac}.' title='&#92;frac{1}{4}&#92;psi_{abcd}=k_{ab}&#92;wedge k_{ac}.' class='latex' /></p></blockquote>
<p>This specializes to <img src='http://s0.wp.com/latex.php?latex=z%5Cwedge%281-z%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='z&#92;wedge(1-z)' title='z&#92;wedge(1-z)' class='latex' /> in the case of ideal hyperbolic tertrahedron.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=9&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/09/bloch-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b30ccefffb41cf228d8d5e0ab45ed58?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Anton Mellit</media:title>
		</media:content>
	</item>
		<item>
		<title>Tannakian categories</title>
		<link>http://vivatsgasse7.wordpress.com/2007/07/09/tannakian-categories/</link>
		<comments>http://vivatsgasse7.wordpress.com/2007/07/09/tannakian-categories/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 16:16:22 +0000</pubDate>
		<dc:creator>Abhijnan</dc:creator>
				<category><![CDATA[category theory]]></category>
		<category><![CDATA[motives]]></category>

		<guid isPermaLink="false">http://vivatsgasse7.wordpress.com/2007/07/09/tannakian-categories/</guid>
		<description><![CDATA[Of late, a lot of people have been asking me about Tannakian categories, so I decided to post this short blurb (mainly to check the Latex-related features of wordpress and also to provide some bird&#8217;s-eye view of why we should care about Tannakian categories.) To begin with: Definition A neutral Tannakian category over a base [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=4&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Of late, a lot of people have been asking me about Tannakian categories, so I decided to post this short blurb (mainly to check the Latex-related features of wordpress and also to provide some bird&#8217;s-eye view of why we should care about Tannakian categories.)</p>
<p>To begin with:</p>
<p align="left"><strong>Definition</strong><br />
A <em>neutral Tannakian category </em><img src='http://s0.wp.com/latex.php?latex=%5Cmathcal%7BT%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathcal{T}' title='&#92;mathcal{T}' class='latex' /> over a base field <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' /> is a rigid abelian tensor category with an <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' />-linear exact faithful tensor<em> </em><img src='http://s0.wp.com/latex.php?latex=%5Comega%3A+%5Cmathcal%7BT%7D++%5Clongrightarrow+%5Ctextrm%7BVect%7D_k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega: &#92;mathcal{T}  &#92;longrightarrow &#92;textrm{Vect}_k' title='&#92;omega: &#92;mathcal{T}  &#92;longrightarrow &#92;textrm{Vect}_k' class='latex' /> (<img src='http://s0.wp.com/latex.php?latex=%5Crm%7BVect%7D_k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;rm{Vect}_k' title='&#92;rm{Vect}_k' class='latex' /> being the category of vector spaces over <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' />) which one calls the <em>fiber functor</em>.</p>
<p align="left"><span id="more-4"></span>This definition is stolen from a paper of Breen in the Motives volume (Proc. Symp. Pure Math. Vol 55, part I); As Breen notes, the idea is to imagine <img src='http://s0.wp.com/latex.php?latex=%5Comega%28X%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega(X)' title='&#92;omega(X)' class='latex' /> as a fiber over <img src='http://s0.wp.com/latex.php?latex=X+%5Cin+%5Crm%7BObj%7D%28%5Cmathcal%7BT%7D%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X &#92;in &#92;rm{Obj}(&#92;mathcal{T})' title='X &#92;in &#92;rm{Obj}(&#92;mathcal{T})' class='latex' />; <img src='http://s0.wp.com/latex.php?latex=%5Comega&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega' title='&#92;omega' class='latex' /> is, therefore, a sort of a vector bundle over <img src='http://s0.wp.com/latex.php?latex=%5Cmathcal%7BT%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathcal{T}' title='&#92;mathcal{T}' class='latex' />. Incidentally, this is the original definition given by Saavedra-Rivano in his thesis with Grothendieck. Deligne in his Grothendieck Festschrift paper gives an equivalent definition where the &#8220;primacy&#8221; is on dual objects than internal homs (required for the &#8220;rigid&#8221; part in the above definition.)</p>
<p>The main reason why one should care about Tannakian categories is this:</p>
<p><strong>Theorem</strong><br />
Let <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> be an affine group scheme over <img src='http://s0.wp.com/latex.php?latex=k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='k' title='k' class='latex' />. Then the category of representations <img src='http://s0.wp.com/latex.php?latex=%5Ctextrm%7BRep%7D%28X%29&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;textrm{Rep}(X)' title='&#92;textrm{Rep}(X)' class='latex' /> of <img src='http://s0.wp.com/latex.php?latex=X&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='X' title='X' class='latex' /> is a Tannakian category. Moreover the automorphisms of the fiber functor <img src='http://s0.wp.com/latex.php?latex=%5Comega%3A++%5Ctextrm%7BRep%7D%28X%29+%5Clongrightarrow++%5Crm%7BVect%7D_k&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega:  &#92;textrm{Rep}(X) &#92;longrightarrow  &#92;rm{Vect}_k' title='&#92;omega:  &#92;textrm{Rep}(X) &#92;longrightarrow  &#92;rm{Vect}_k' class='latex' />  (simply the forgetful functor)</p>
<p align="center"><img src='http://s0.wp.com/latex.php?latex=%5Crm%7BAut%7D%5E%7B%5Cotimes%7D+%5Comega+%5Csimeq+X.&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;rm{Aut}^{&#92;otimes} &#92;omega &#92;simeq X.' title='&#92;rm{Aut}^{&#92;otimes} &#92;omega &#92;simeq X.' class='latex' /></p>
<p align="left">The moral is simple: since the category of representations of an affine group scheme is Tannakian, just by studying the automorphisms of the fiber functor one recovers the affine group scheme itself (BTW, that by itself is a commutative but not necessarily co-commutative Hopf algebra.) One should compare the theorem above with the classical Pontryagin duality.</p>
<p align="left">But for me (atleast), the real reason why Tannakian categories are interesting is because of the role they play in Grothendieck&#8217;s original conception of <em>motives</em>. Recall that the basic idea behind pure motives is this: let <img src='http://s0.wp.com/latex.php?latex=%5Ctextrm%7BSmproj%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;textrm{Smproj}' title='&#92;textrm{Smproj}' class='latex' /> be the category of smooth projective schemes over some base (field) and <img src='http://s0.wp.com/latex.php?latex=%5Ctextrm%7BGrVect%7D_K&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;textrm{GrVect}_K' title='&#92;textrm{GrVect}_K' class='latex' /> be the category of graded vector spaces over a field <img src='http://s0.wp.com/latex.php?latex=K&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='K' title='K' class='latex' /> of char 0 and <img src='http://s0.wp.com/latex.php?latex=%5Cmathcal%7BM%7D_%7B%5Csim%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathcal{M}_{&#92;sim}' title='&#92;mathcal{M}_{&#92;sim}' class='latex' /> the category of pure motives (ie, motives of smooth projective schemes) with some adequate relation on the cycles <img src='http://s0.wp.com/latex.php?latex=%5Csim&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;sim' title='&#92;sim' class='latex' />. In (the theory? fantasy? of) the original conception, we have three functors: the obvious contravariant one for good cohomology (Weil cohomology, for those in the know): <img src='http://s0.wp.com/latex.php?latex=H%3A+%5Ctextrm%7BSmproj%7D+%5Clongrightarrow++%5Ctextrm%7BGrVect%7D_K&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='H: &#92;textrm{Smproj} &#92;longrightarrow  &#92;textrm{GrVect}_K' title='H: &#92;textrm{Smproj} &#92;longrightarrow  &#92;textrm{GrVect}_K' class='latex' /> and two other slightly mysterious functors: the functor of motivic cohomology that takes a sm. proj. scheme and associates to it a pure motive, and the realization functor <img src='http://s0.wp.com/latex.php?latex=%5Comega%3A+%5Cmathcal%7BM%7D_%7B%5Csim%7D+%5Clongrightarrow+%5Ctextrm%7BGrVect%7D_K&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;omega: &#92;mathcal{M}_{&#92;sim} &#92;longrightarrow &#92;textrm{GrVect}_K' title='&#92;omega: &#92;mathcal{M}_{&#92;sim} &#92;longrightarrow &#92;textrm{GrVect}_K' class='latex' /> which takes a motive and &#8220;realizes&#8221; it as a concrete cohomology theory such as deRham, etale with <em>l</em>-adic coeffs, &#8230;. Now the original idea was that if  <img src='http://s0.wp.com/latex.php?latex=%5Cmathcal%7BM%7D_%7B%5Csim%7D&amp;bg=ffffff&amp;fg=545454&amp;s=0' alt='&#92;mathcal{M}_{&#92;sim}' title='&#92;mathcal{M}_{&#92;sim}' class='latex' /> was a Tannakian category then one should consider the realization functor as the fiber functor- in which case one has some very interesting Galois groups as groups of automorphisms at hand (he motivic Galois groups.) In practice though, all of this is very hard to construct explicitly- I will return to some of these issues in a less name-dropping and leisurely way in later posts.</p>
<p align="center">&nbsp;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vivatsgasse7.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vivatsgasse7.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vivatsgasse7.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vivatsgasse7.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vivatsgasse7.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vivatsgasse7.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vivatsgasse7.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vivatsgasse7.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vivatsgasse7.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vivatsgasse7.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vivatsgasse7.wordpress.com&amp;blog=1344879&amp;post=4&amp;subd=vivatsgasse7&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vivatsgasse7.wordpress.com/2007/07/09/tannakian-categories/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7600307ed3dfc3c3376ad96bbb5fa5fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ganita</media:title>
		</media:content>
	</item>
	</channel>
</rss>
