石田修二のホームページ > JavaScript講座 >

ABC予想

2chの「【科学】 数学の難問「ABC予想」解明か 望月京大教授、驚異的の声★4スレ」の635番、660番にABC予想理解へのヒントというJavaScriptのソースが公開されていたので、ここで再現してみました。

ソースは次の通り

var a,b,c,rad,k;
a = 2;
b = Math.pow(3,10)*109;
c = Math.pow(23,5);
rad = (2)*(3*109)*(23);
k = Math.log(c)/Math.log(rad);//底の変換
document.write("<p>a + b =" +(a + b) + " c = " + c + " κ=" + k +"!</p>");
a = Math.pow(11,2);
b = Math.pow(3,2)*Math.pow(5,6)*Math.pow(7,3);
c = Math.pow(2,21)*23;
rad = (11)*(3*5*7)*(2*23);
k = Math.log(c)/Math.log(rad);//底の変換
document.write("<p>a + b =" +(a + b) + " c = " + c + " κ=" + k +"!</p>");
a = 19*1307;
b = 7*Math.pow(29,2)*Math.pow(31,9);
c = Math.pow(2,8)*Math.pow(3,22)*Math.pow(5,4);
rad = (19*1307)*(7*29*31)*(2*3*5);
k = Math.log(c)/Math.log(rad);//底の変換
document.write("<p>a + b =" +(a + b) + " c = " + c + " κ=" + k +"!</p>");

正直さっぱりわからない ^^;


リンクはご自由にどうぞ。

【石田修二フロントページ】 【いろいろ】