정의 (소수와 합성수)
1보다 큰 양의 정수 n에 대하여
(i) n = a * b 를 만족하고 1보다 큰 두 양의 정수 a와 b가 존재하면,
n을 합성수(合成數, composite number)라고 한다. 참고로 이 경우,
a, b 중에 적어도 하나는 sqrt(n) 보다 작거나 같다.
합성수의 예로는 4, 6, 9, 24, 143 등이 있다.
(ii) n = a * b 를 만족하고 1보다 큰 두 양의 정수 a와 b가 존재하지 않으면,
즉 n을 두 양의 정수의 곱으로 표현하는 방법이 1*n과 n*1 두 가지 뿐이면,
n을 소수(素數, prime number)라고 한다. 소수의 예로는 2, 3, 5, 7, 11 등이 있다.
n이 소수인지 아닌지 확인하려면,
n을 2 보다 크거나 같고 sqrt(n) 보다 작거나 같은 모든 정수로 나누어 본다.
이 경우 언제나 나누어 떨어지지 않으면 n은 소수이고,
그렇지 않으면 n은 합성수이다.
우선 다음은 명령행 인자로 전달 받은 양의 정수 n을 2 이상이고 sqrt(n) 이하인 홀수들로 각각
나누어 보아 n이 합성수인지 아닌지 확인하는 Java 애플리케이션 소스 코드이다.
확인하는데 걸린 경과 시간도 알려준다.
* Filename: DivideEachApp.java
*
* Purpose: Determine whether the given integer is a prime or not.
*
* Compile: javac -d . DivideEachApp.java
* Execute: java DivideEachApp [integer]
*
* Date: 2009/03/24
* Author: PH Kim [ pkim ((AT)) scripts.pe.kr ]
*/
/*
Execution Examples (with Java 1.6.0_12):
Prompt> java DivideEachApp 1234567812343
1234567812343 = 1 * 1234567812343
1234567812343 is a prime
Elapsed time: 0.25 sec
Prompt> java DivideEachApp 9999994200000841
9999994200000841 = 99999971 * 99999971
9999994200000841 is a not prime
Elapsed time: 21.047 sec
Prompt> java DivideEachApp 18446744073709551617
18446744073709551617 = 274177 * 67280421310721
18446744073709551617 is a not prime
Elapsed time: 0.078 sec
Prompt> java DivideEachApp 10023859281455311421
10023859281455311421 = 1308520867 * 7660450463
10023859281455311421 is a not prime
Elapsed time: 304.906 sec
*/
import java.math.*;
import java.util.*;
public class DivideEachApp {
public static void main(String[] args) {
final BigInteger ONE = new BigInteger("1");
final BigInteger TWO = new BigInteger("2");
BigInteger n, k, d, z;
n = new BigInteger("10006099720301");
if (args.length > 0) {
n = new BigInteger(args[0]);
}
z = n.divide(TWO); // z = n / 2
if (n.equals(z.multiply(TWO))) {
System.out.println(n + "n = 2 * " + z);
}
double time1 = new GregorianCalendar().getTime().getTime();
d = new BigInteger("1");
k = new BigInteger("3");
while (k.multiply(k).compareTo(n) <= 0) {
z = n.divide(k); // z = n / k
if ( n.equals(k.multiply(z)) ) {
d = k;
break;
}
k = k.add(TWO);
}
double time2 = new GregorianCalendar().getTime().getTime();
System.out.println(n + " = " + d + " * " + n.divide(d));
if (d.equals(ONE))
System.out.println(n + " is a prime");
else
System.out.println(n + " is a not prime");
System.out.println("Elapsed time: " + (time2 - time1)/1000.0 + " sec");
}
}
이제 다음은 정수의 인수분해 능력이 뛰어난 Pollard의 rho 방법(일명 거북이와 토끼 알고리즘, tortoise-hair algorithm)을 구현한 Java 애플리케이션 소스 코드이다. 이 알고리즘은 소수에 대해서는 시간이 많이 걸리지만, 합성수에 대해서는 시간이 매우 적게 걸린다는 것이 특징이다.
* Filename: PollardRhoApp.java
*
* Purpose: By using the pollard rho method,
* determine whether the given integer is a prime or not.
*
* See: http://en.wikipedia.org/wiki/Pollard%27s_rho_algorithm
* http://en.wikipedia.org/wiki/Floyd%27s_cycle-finding_algorithm#Tortoise_and_hare#
*
* Execute: javac -d . PollardRhoApp.java
* Execute: java PollardRhoApp [integer]
*
* Date: 2009/03/24
* Author: PH Kim [ pkim ((AT)) scripts.pe.kr ]
*/
/*
Execution Examples (with java 1.6.0_12):
Prompt> java PollardRhoApp 1234567812343
Try first the Pollard rho algorithm with c = 2
d = 1234567812343, count = 466951
Try second the Pollard rho algorithm with c = 3
d = 1, count = 1111112
Try third the Pollard rho algorithm with c = 1
d = 1234567812343, count = 799441
1234567812343 = 1234567812343 * 1
Elapsed time: 17.735 sec
Prompt> java PollardRhoApp 9999994200000841
Try first the Pollard rho algorithm with c = 2
d = 99999971, count = 3593
9999994200000841 = 99999971 * 99999971
Elapsed time: 0.062 sec
Prompt> java PollardRhoApp 18446744073709551617
Try first the Pollard rho algorithm with c = 2
d = 274177, count = 1028
18446744073709551617 = 274177 * 67280421310721
Elapsed time: 0.032 sec
Prompt> java PollardRhoApp 10023859281455311421
Try first the Pollard rho algorithm with c = 2
d = 1308520867, count = 20350
10023859281455311421 = 1308520867 * 7660450463
Elapsed time: 0.297 sec
*/
import java.math.*;
import java.util.*;
public class PollardRhoApp {
public static BigInteger f(BigInteger x, BigInteger c, BigInteger n) {
return x.multiply(x).add(c).mod(n); // (x*x + c) % n
}
public static BigInteger g(BigInteger x, BigInteger c, BigInteger n) {
return f(f(x, c, n), c, n);
}
public static BigInteger gcd(BigInteger x, BigInteger y) {
BigInteger a, b, t;
a = x.abs();
b = y.abs();
if (b.equals(BigInteger.ZERO)) {
return a;
}
while (!b.equals(BigInteger.ZERO)) {
t = a.mod(b);
a = b;
b = t;
}
return a;
}
public static BigInteger pollardRho(BigInteger n) {
BigInteger c, x, y, d, count, savedX;
final BigInteger ONE = new BigInteger("1");
c = new BigInteger("2");
x = new BigInteger("1");
y = new BigInteger("1");
d = new BigInteger("1");
savedX = x;
count = BigInteger.ZERO;
System.out.println("Try first the Pollard rho algorithm with c = " + c);
while (d.equals(ONE) && count.multiply(count).compareTo(n) <= 0) {
x = f(x, c, n);
if (x.equals(savedX)) {
System.out.println("It is cyclic. x = " + x);
break;
}
y = g(y, c, n);
d = gcd(x.subtract(y).abs(), n);
count = count.add(ONE);
// if (count % 5000 == 0) {
// println(" count = $count")
// }
}
System.out.println("d = " + d + ", count = " + count);
if (d.compareTo(ONE) > 0 && d.compareTo(n) < 0) {
return d;
}
c = new BigInteger("3");
x = new BigInteger("1");
y = new BigInteger("1");
d = new BigInteger("1");
savedX = x;
count = BigInteger.ZERO;
System.out.println("Try second the Pollard rho algorithm with c = " + c);
while (d.equals(ONE) && count.multiply(count).compareTo(n) <= 0) {
x = f(x, c, n);
if (x.equals(savedX)) {
System.out.println("It is cyclic. x = " + x);
break;
}
y = g(y, c, n);
d = gcd(x.subtract(y).abs(), n);
count = count.add(ONE);
// if (count % 5000 == 0) {
// println(" count = $count")
// }
}
System.out.println("d = " + d + ", count = " + count);
if (d.compareTo(ONE) > 0 && d.compareTo(n) < 0) {
return d;
}
c = new BigInteger("1");
x = new BigInteger("1");
y = new BigInteger("1");
d = new BigInteger("1");
savedX = x;
count = BigInteger.ZERO;
System.out.println("Try third the Pollard rho algorithm with c = " + c);
while (d.equals(ONE) && count.multiply(count).compareTo(n) <= 0) {
x = f(x, c, n);
if (x.equals(savedX)) {
System.out.println("It is cyclic. x = " + x);
break;
}
y = g(y, c, n);
d = gcd(x.subtract(y).abs(), n);
count = count.add(ONE);
// if (count % 5000 == 0) {
// println(" count = $count")
// }
}
System.out.println("d = " + d + ", count = " + count);
return d;
}
public static void main(String[] args) {
BigInteger n, k, z;
n = new BigInteger("9991");
if (args.length > 0) {
n = new BigInteger(args[0]);
}
double time1 = new GregorianCalendar().getTime().getTime();
k = pollardRho(n);
z = n.divide(k);
System.out.println(n + " = " + k + " * " + z);
double time2 = new GregorianCalendar().getTime().getTime();
System.out.println("Elapsed time: " + (time2 - time1)/1000.0 + " sec");
}
}
'프로그래밍 > Java' 카테고리의 다른 글
스트링 배열에서 스트링 찾기(find) with Java (0) | 2009.04.22 |
---|---|
스트링 배열 정렬(sorting)하기 with Java (0) | 2009.04.17 |
손으로 계산하는 긴자리 곱셈표 만들기 with Java (0) | 2009.03.06 |
iTexT를 이용한 RTF 파일 만들기 HelloHangul.java (0) | 2009.02.13 |
Hello Swing 애플리케이션 예제 for Java (0) | 2009.01.29 |