Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > mathnライブラリ > Integerクラス > from_prime_division

singleton method Integer.from_prime_division

from_prime_division(pd) -> Integer[permalink][rdoc] [added by mathn]

素因数分解の配列 pd から数を求めます。 pd は [素因数, 指数] 組の配列です。

例:

Integer.from_prime_division [[2,3],[3,2]]
# => 72 == 2**3 * 3**2