Ruby - 円周率計算(オイラーの公式)!

Updated:


前回は、C++ による「オイラーの公式による円周率計算」のアルゴリズムを紹介しました。

今日は、同じアルゴリズムを Ruby で実現してみました。
アルゴリズム等については、上記リンクの記事を参照してください。

実際、大体同じです。

以下、Ruby によるサンプルスクリプトです。

0. 前提条件

  • Linux Mint 14 Nadia (64bit) での作業を想定。
  • Ruby 2.0.0-p0 を使用。

1. Ruby スクリプト作成

File: calc_pi_euler.rb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#! /usr/local/bin/ruby
#*********************************************
# 円周率計算 by オイラーの公式
#*********************************************
#
class CalcPiEular
  FNAME = "pi_eular.txt"

  def initialize(x)
    @l  = x                     # 計算桁数
    @l1 = (@l / 8) + 1          # 配列サイズ
    n   = (@l / Math::log10(7) + 1)
    @n  = (n / 2).truncate + 1  # 計算項数
  end

  # 計算・結果出力
  def calc
    # 計算開始時刻
    t0 = Time.now
    # 配列宣言・初期化
    s = Array.new(@l1 + 2, 0)  # 総和
    a = Array.new(@l1 + 2, 0)  # オイラー公式の前の項
    b = Array.new(@l1 + 2, 0)  # オイラーの公式の後の項
    q = Array.new(@l1 + 2, 0)  # オイラーの公式の前の項+後の項
    # オイラーの公式
    a[0] = 20 *  7
    b[0] =  8 * 79
    b = long_div(b, 3)
    1.upto(@n) do |k|
      a = long_div(a,    7 *  7)
      b = long_mul(b,    3 *  3)
      b = long_div(b,   79 * 79)
      q = long_add(a,         b)
      q = long_div(q, 2 * k - 1)
      s = k % 2 == 0 ? long_sub(s, q) : long_add(s, q)
    end
    # 計算終了時刻
    t1 = Time.now
    # 計算時間
    tt = t1 - t0
    # 結果出力
    display(tt, s)
  rescue => e
    raise
  end

  # ロング + ロング
  def long_add(a, b)
    z = Array.new(@l1 + 2, 0)
    cr = 0
    (@l1 + 1).downto(0) do |i|
      z[i] = a[i] + b[i] + cr
      if z[i] < 100000000
        cr = 0
      else
        z[i] -= 100000000
        cr = 1
      end
    end
    return z
  rescue => e
    raise
  end

  # ロング - ロング
  def long_sub(a, b)
    z = Array.new(@l1 + 2, 0)
    br = 0
    (@l1 + 1).downto(0) do |i|
      z[i] = a[i] - b[i] - br
      if z[i] >= 0
        br = 0
      else
        z[i] += 100000000
        br = 1
      end
    end
    return z
  rescue => e
    raise
  end

  # ロング * ショート
  def long_mul(a, b)
    z = Array.new(@l1 + 2, 0)
    cr = 0
    (@l1 + 1).downto(0) do |i|
      w = a[i]
      z[i] = (w * b + cr) % 100000000
      cr = (w * b + cr) / 100000000
    end
    return z
  rescue => e
    raise
  end

  # ロング / ショート
  def long_div(a, b)
    z = Array.new(@l1 + 2, 0)
    r = 0
    0.upto(@l1 + 1) do |i|
      w = a[i]
      z[i] = (w + r) / b
      r = ((w + r) % b) * 100000000
    end
    return z
  rescue => e
    raise
  end

  # 結果出力
  def display(tt, s)
    puts "** Pi Computation with the Eular formula method **"
    printf("   Digits = %d.\n", @l)
    printf("   Time   = %f seconds\n", tt)
    # ファイル出力
    out_file = File.open(FNAME, "w")
    out_file.puts "** Pi Computation with the Eular formula method **"
    out_file.printf("   Digits = %d.\n", @l)
    out_file.printf("   Time   = %f seconds.\n\n", tt)
    out_file.printf("          %d.\n", s[0])
    1.upto(@l1 - 1) do |i|
      out_file.printf("%08d:", (i - 1) * 8 + 1) if (i % 10 == 1)
      out_file.printf(" %08d", s[i])
      out_file.printf("\n") if (i % 10 == 0)
    end
    printf("\n")
  rescue => e
    raise
  end
end

if __FILE__ == $0
  begin
    print "Please input number of Pi Decimal-Digits : "
    n = gets.to_i
    # 計算クラスインスタンス化
    obj = CalcPiEular.new(n)
    # 円周率計算
    obj.calc
  rescue => e
    $stderr.puts "[#{e.class}] #{e.message}\n"
    e.backtrace.each{ |tr| $stderr.puts "\t#{tr}" }
  end
end

2. 実行

まず、実行権限を付与。

$ chmod +x calc_pi_euler.rb

そして、実行。

$ ./ruby calc_pi_euler.rb
Please input number of Pi Decimal-Digits : 10000
** Pi Computation with the Euler formula method **
   Digits = 10000.
   Time   = 8.618904 seconds

“pi_euler.txt” というテキストファイルができているはずである。

File: pi_euler.txt

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
** Pi Computation with the Euler formula method **
   Digits = 10000.
   Time   = 8.618904 seconds.

          3.
00000001: 14159265 35897932 38462643 38327950 28841971 69399375 10582097 49445923 07816406 28620899
00000081: 86280348 25342117 06798214 80865132 82306647 09384460 95505822 31725359 40812848 11174502
00000161: 84102701 93852110 55596446 22948954 93038196 44288109 75665933 44612847 56482337 86783165
00000241: 27120190 91456485 66923460 34861045 43266482 13393607 26024914 12737245 87006606 31558817
00000321: 48815209 20962829 25409171 53643678 92590360 01133053 05488204 66521384 14695194 15116094
00000401: 33057270 36575959 19530921 86117381 93261179 31051185 48074462 37996274 95673518 85752724
00000481: 89122793 81830119 49129833 67336244 06566430 86021394 94639522 47371907 02179860 94370277
00000561: 05392171 76293176 75238467 48184676 69405132 00056812 71452635 60827785 77134275 77896091
00000641: 73637178 72146844 09012249 53430146 54958537 10507922 79689258 92354201 99561121 29021960
00000721: 86403441 81598136 29774771 30996051 87072113 49999998 37297804 99510597 31732816 09631859
00000801: 50244594 55346908 30264252 23082533 44685035 26193118 81710100 03137838 75288658 75332083
00000881: 81420617 17766914 73035982 53490428 75546873 11595628 63882353 78759375 19577818 57780532
00000961: 17122680 66130019 27876611 19590921 64201989 38095257 20106548 58632788 65936153 38182796
        :
===< 途中省略 >===
        :
00009121: 37800297 41207665 14793942 59029896 95946995 56576121 86561967 33786236 25612521 63208628
00009201: 69222103 27488921 86543648 02296780 70576561 51446320 46927906 82120738 83778142 33562823
00009281: 60896320 80682224 68012248 26117718 58963814 09183903 67367222 08883215 13755600 37279839
00009361: 40041529 70028783 07667094 44745601 34556417 25437090 69793961 22571429 89467154 35784687
00009441: 88614445 81231459 35719849 22528471 60504922 12424701 41214780 57345510 50080190 86996033
00009521: 02763478 70810817 54501193 07141223 39086639 38339529 42578690 50764310 06383519 83438934
00009601: 15961318 54347546 49556978 10382930 97164651 43840700 70736041 12373599 84345225 16105070
00009681: 27056235 26601276 48483084 07611830 13052793 20542746 28654036 03674532 86510570 65874882
00009761: 25698157 93678976 69742205 75059683 44086973 50201410 20672358 50200724 52256326 51341055
00009841: 92401902 74216248 43914035 99895353 94590944 07046912 09140938 70012645 60016237 42880210
00009921: 92764579 31065792 29552498 87275846 10126483 69998922 56959688 15920560 01016552 56375678

C++ 版と同じ結果が得られました。

3. 参考サイト


さすがに1万桁くらいになると、C++ 版の10倍ほど時間がかかります。

また、Arctan 系の公式はアルゴリズムが同じで項数・係数が異るだけなので、汎用利用できるスクリプトも作成してみたい次第です。

以上。





 

Sponsored Link

 

Comments