http://www.math.purdue.edu/about/purview/spring95/conjecture.html

A Layman's Perspective of Abhyankar's Conjecture

by Ganapathy Sundaram


Consider a polynomial in two variables X and Y. This can be treated as a polynomial of degree n in Y, whose coefficients are polynomials in X. Now plug in values for X, and it can be seen that for most values ofX, we get n-corresponding roots for Y. But there are some places where there are fewer than n-roots for Y. These special places are called discriminant pointsIf there are no discriminant points, then f factors completely. This was noticed by the famous mathematician Riemann in the mid-1800's by shrinking the plane to a point. Prior to Riemann, the famous French mathematician Galois made the same observation by looking at permutations of the roots of the equations. The set of all permutations of the roots forms a group and is now referred to as the Galois group of the polynomial. Historically speaking, Galois was interested in studying the group of permutations of the roots in order to prove that one "cannot" solve a polynomial of degree greater than or equal to five. (Formulas for solving quadratic equations were discovered by Indian mathematicians around the 4th century A.D. Formulas for solving degree four and five equations were discovered over a thousand years later by Italian mathematicians.) In essence, the Galois group of a polynomial tells us how far we can "solve" a polynomial.

Abhyankar's work in Galois theory started with his Harvard thesis in the early 1950's under the able guidance of the famous mathematician, Oscar Zariski. He was interested in polynomials in three variables (i.e., surfaces), and he was working on removing so-called singularities (beak-like points) of the surface over modular fields (i.e., fields obtained by fixing a prime number and considering remainders of every integer after dividing by that fixed prime). This problem also has its origins in Riemann's work, but the three variable case over "usual" fields (i.e., complex numbers) was solved by Jung in 1908. In his thesis, Abhyankar first showed that over modular ground fields, Jung's classical method of changing the surface to get rid of singularities does not work because of strange properties of Galois groups. In particular, he discovered that things were different over modular ground fields because a polynomial with coefficients in a modular field need not factor completely even if it has no discriminant points. As a result, in 1957 he launched a systematic attack on understanding Galois groups of polynomials (in two variables and later in more variables) and conjectured what Galois groups can be obtained over modular ground fields. Really what he wrote down was more than a conjecture-he laid out a philosophy. What Harbater and Raynaud have proved are special cases of this philosophy pertaining to polynomials in two variables, i.e., curves. This is only the tip of the iceberg, but the excitement is due to the fact that one now has a structured approach to understanding Galois groups of various equations.


[Previous Article | Next Article]

Abhyankar's Conjecture的更多相关文章

  1. Goldbach's Conjecture

     Goldbach's Conjecture Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I ...

  2. Twin Prime Conjecture(浙大计算机研究生保研复试上机考试-2011年)

    Twin Prime Conjecture                                            Time Limit: 2000/1000 MS (Java/Othe ...

  3. Poj 2262 / OpenJudge 2262 Goldbach's Conjecture

    1.Link: http://poj.org/problem?id=2262 http://bailian.openjudge.cn/practice/2262 2.Content: Goldbach ...

  4. poj 2262 Goldbach's Conjecture(素数筛选法)

    http://poj.org/problem?id=2262 Goldbach's Conjecture Time Limit: 1000MS   Memory Limit: 65536K Total ...

  5. HDOJ 1397 Goldbach's Conjecture(快速筛选素数法)

    Problem Description Goldbach's Conjecture: For any even number n greater than or equal to 4, there e ...

  6. Goldbach's Conjecture(哥德巴赫猜想)

    Goldbach's Conjecture Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Ot ...

  7. (Problem 46)Goldbach's other conjecture

    It was proposed by Christian Goldbach that every odd composite number can be written as the sum of a ...

  8. POJ 2262 Goldbach's Conjecture(素数相关)

    POJ 2262 Goldbach's Conjecture(素数相关) http://poj.org/problem?id=2262 题意: 给你一个[6,1000000]范围内的偶数,要你将它表示 ...

  9. UVa 543 - Goldbach's Conjecture

    题目大意:给一个偶数,判断是否是两个素数的和. 先用sieve方法生成一个素数表,然后再进行判断即可. #include <cstdio> #include <vector> ...

随机推荐

  1. python ddt 传多个参数值示例

    import unittest from ddt import ddt,data,file_data,unpack @ddt class TestDDT(unittest.TestCase): lis ...

  2. Fluent UDF【8】:编译型UDF

    UDF除了可以以解释的方式外,其还可以以编译的方式被Fluent加载.解释型UDF只能使用部分C语言功能,而编译型UDF则可以全面使用C语言的所有功能. 1 编译型UDF介绍 编译型UDF的构建方式与 ...

  3. C++/C 宏定义(define)中# ## 的含义(转)

    http://hi.baidu.com/kiraversace/item/1148ee057147981a4ac4a3e9 C++/C 宏定义(define)中# ## 的含义 define 中的#  ...

  4. EntityFramework 多数据库链接,MySql,SqlServer,Oracel等

    环境:EntityFramework5.0,MySql5.6,MSSQL2012 EF是强大的ORM工具,真正意义上的多数据库链接指的是不同类型的数据库,以及同种类型的数据库多个库,EF很好的支持这一 ...

  5. Navi.Soft31.微信WinForm框架(含下载地址)

    1.概述 1.1应用场景 微信的出现,改变了我们日常生活.而微信公众平台的出现,使我们每个人都可能成为一个品牌,微商的普及.微店越来越多.越来越多的人,借助微信公众平台,实现了自己的梦想 在此背景环境 ...

  6. python 简单的server请求

    1.代码 #!/usr/bin/env python3 # -*- coding: utf-8 -*- # __author henry # __date 2018/11/4 from wsgiref ...

  7. Scala学习笔记(一):入门

    变量定义 Scala有两种变量,val和var.val类似于Java中的final变量,一旦初始化了,val就不能再被赋值.var可以多次赋值.但由于函数式编程特性,Scala更推崇val. var的 ...

  8. Python 函数(默认参数)

    默认参数 设置默认参数时,有两点需要注意:一是必选参数在前,默认参数在后,否则python的解释器会报错二是当函数有多个参数时,把变化大的参数放前面,变化小的放后面,变化小的参数就可以作为默认参数 d ...

  9. [Tensorflow] Object Detection API - prepare your training data

    From: TensorFlow Object Detection API This chapter help you to train your own model to identify obje ...

  10. puppt服务资源管理

    1.服务资源的特性     controllable 提供变量控制     enableable   可以启动 停止服务   refreshable  可以重启服务   2.可用参数: ensure ...