Appendix on the abc- conjecture

I know many of you attended the full-house public lecture - sponsored by the Royal Irish Academy and the Irish Times - in Trinity College Dublin last October 14th, given by Andrew Wiles (who, as the saying goes, needs no introduction). In his talk, Wiles mentioned the abc-conjecture , and I thought there might be some interest because of that in this small final section.

________________

A great new conjecture has been formulated in recent times (since the mid 1980s) by Oesterl� and Masser. There are many outstanding web references (I especially recommend Abderrahmane Nitaj's), and there is the highly motivating Nov 2002 AMS Notices article - It's as easy as abc - by Granville and Tucker.

Here, before stating the conjecture, my reader may be captivated by two well-known consequences of it:

  • Fermat's Last Theorem (so well known because of Andrew Wiles)
  • Roth's 1955 rational approximation to algebraic numbers theorem (that this is a consequence of the abc -conjecture was established in 1994 by the renowned Italian mathematician, Fields medallist Enrico Bombieri)

Of course these consequences have already been independently established, but there are many, many remarkable consequences that are still open questions (Nitaj maintains a list of consequences).

The abc -conjecture . Let a and b be relatively prime natural numbers (i.e. they have no common prime divisor), let c be their sum: a + b = c , and let epsilon be any positive number; then there is some constant C (whose value depends only on epsilon ) such that

c < C(epsilon)*(p[1]*p[2]*`...`*p[r])^(1+epsilon)

where {p[1], p[2], `...`, p[r]} are the distinct prime factors of a , b and c .

Granville and Tucker note it has been conjectured (by whom?) that the abc -conjecture holds good with epsilon = 1 and C = 1, which would give c < (p[1]*p[2]*`...`*p[r])^2 .

By way of illustrating the power of the latter form of the conjecture I will show that the only solutions of 2^x+3^y = 5^z in natural numbers x , y and z would be (1, 1, 1) and (4, 2, 2).

First, though, my reader may wish to see some factored values of ( 2^x+3^y ), with x and y varying over a small range of values. Note the near miss at x = 8, y = 6, where ones sees that 2^6+3^8 = 6625 = 5^3 *53.

Other similar near misses are 2^13+3^9 = 5^3 *223, 2^20+3^10 = 5^3 *8861, 2^27+3^11 = 5^3 *1075159, 2^64+3^2 = 5^3 *(an 18-digit prime), 2^71+3^3 = 5^4 *(a 19-digit prime).

> for x from 6 to 8 do
for y from 6 to 8 do
print(x, y, ifactor(2^x + 3^y))
od od:

6, 6, ``(13)*``(61)

6, 7, ``(2251)

6, 8, ``(5)^3*``(53)

7, 6, ``(857)

7, 7, ``(5)*``(463)

7, 8, ``(6689)

8, 6, ``(5)*``(197)

8, 7, ``(7)*``(349)

8, 8, ``(17)*``(401)

>

Applying the conjectured epsilon = 1, C = 1 form of the the abc -conjecture to hypothetical solutions of 2^x+3^y = 5^z would give 5^z < 30^2 ('30' being 2*3*5), and so z could only be 1, 2, or 3. Then ( x , y , z ) = (1, 1, 1) and (4, 2, 2) would be the only solutions. (You probably want to ask me...)

__________________

Finally, my reader may be interested in a theorem of mine which looks as though it ought to be a consequence of the abc -conjecture, but isn't (I leave it as an exercise to see that my theorem isn't a consequence of abc ).

Theorem (motivated by reflecting on Euclid's proof of the infinitude of primes, MAA Monthly, Vol. 96, No. 4, April 1989). Let p[1], p[2], `...`, p[n] be the first n prime numbers, let p[i] be any one of those primes, and let N[n,i] be the product of those n primes, with p[i] omitted; then

N[n,i]+1 = p[i]^m

is impossible for 4 <= n . (Note, for n = 3 and i = 1, that N[3,1]+1 = 3*5+ 1 = 16 = 2^4 .)

Also, N[n,i]-1 = p[i]^m is impossible for 4 <= n . (Note, for n = 3 and i = 2, that N[3,2]-1 = 2*5 - 1 = 9 = 3^2 .)

A numerical illustration for the case n = 15:

> n := 15: N[n] := product(ithprime(m), m=1..n):
for i to n do
N[n, i] := product(ithprime(m), m=1..n)/ithprime(i)
od:
for i to n do
[ithprime(i), ifactor(N[n, i] + 1), ifactor(N[n, i] - 1)]
od;

[2, ``(2)*``(757)*``(203067959903729), ``(2)^3*``(2...

[3, ``(2440939642759)*``(83969), ``(3)*``(744157357...

[5, ``(97)*``(829)*``(1069)*``(1117)*``(1280767), `...

[7, ``(87841397512641631), ``(87841397512641629)]

[11, ``(57253657)*``(976340623), ``(73)*``(187897)*...

[13, ``(47299214045268571), ``(3438192487117)*``(13...

[17, ``(89)*``(881)*``(461298922459), ``(1279)*``(5...

[19, ``(166160695273)*``(194767), ``(161591929)*``(...

[23, ``(479427906917)*``(55763), ``(2492657)*``(488...

[29, ``(477913)*``(2281381)*``(19447), ``(29)*``(34...

[31, ``(19835154277048111), ``(19835154277048109)]

[37, ``(229)*``(1451)*``(4457)*``(11221477), ``(181...

[41, ``(439)*``(34162441390549), ``(28001951)*``(53...

[43, ``(227)*``(1721962331)*``(36583), ``(797)*``(1...

[47, ``(167)*``(78339888213593), ``(141269)*``(9260...

>

Contact details 

After August 31st 2007 please use the following Gmail address: jbcosgrave at gmail.com


This page was last updated 18 February 2005 15:10:01 -0000