Go to the first, previous, next, last section, table of contents.


intpt

intpt(F)
:: 二次曲線F=0 上の整数点[x,y,z] をひとつ見つけて返す。整数点が存在しなければ、文字列no integer solutionを返す。
return
リスト、あるいは文字列no integer solution.
F
変数x,y,z の二次の斉次多項式
[1] intpt(22*x^2-10*y^2+z^2+5*x*y+13*y*x-z*x);
[71,-121,473]
[2] intpt(22*x^2-10*y^2+z^2+5*x*y+12*y*x-z*x);
no integer solution


Go to the first, previous, next, last section, table of contents.