常微分方程式の数値解法

微分方程式
ナビエ–ストークス方程式。障害物の周囲の気流のシミュレーションに用いられる。
ナビエ–ストークス方程式。障害物の周囲の気流のシミュレーションに用いられる。
分類
タイプ
変数のタイプにより
  • 独立変数と従属変数(英語版)
特徴
過程との関係
  • 差分 (離散類似)
  • 確率
    • 確率偏(英語版)
  • 遅延(英語版)
一般的な話題

常微分方程式の数値解法 (じょうびぶんほうていしきのすうちかいほう、: Numerical methods for ODEs) は、数値解析において常微分方程式を数値的に解く技術の総称である[1][2]

数値解法の必要性

これまで様々な自然現象 (物理現象など) を記述するために多くの常微分方程式が作られ、多くの数学者たちがその解法を探求してきたが、フックス型微分方程式[3][4]などを除いて、手計算だけで厳密に解ける常微分方程式は多くない。そのため多くの研究者たちが常微分方程式を数値的に解く技術について研究をしてきた[1][2]。最も標準的な手法はルンゲ・クッタ法であり[1][2][5][A 1]MATLABにはode45として搭載されている。しかしこれは万能なソルバーとは言えない。例えばパンルヴェ方程式[6][7][8]リッカチ方程式[9]などは非線形性によって精度の良い計算ができず、数値実験結果だけを見ていると間違った結論 (幻影解) にたどり着く危険がある。そのため[要出典]

などの新しい解法に関する研究が進められている。

初期値問題

N {\displaystyle N} 個の変数 y = ( y 1 , , y N ) R N {\displaystyle y=(y_{1},\cdots ,y_{N})\in \mathbb {R} ^{N}} に関する1階常微分方程式、すなわち [ t 0 , b ] × R N {\displaystyle [t_{0},b]\times \mathbb {R} ^{N}} (またはその開集合)で定義されたベクトル値連続関数 f ( t , y ) = ( f 1 ( t , y ) , , f N ( t , y ) ) {\displaystyle f(t,y)=(f_{1}(t,y),\cdots ,f_{N}(t,y))} により定まる次の方程式

d y d t = f ( t , y ) {\displaystyle {\frac {dy}{dt}}=f(t,y)}

について考える。その初期値問題 (initial-value problem) とは、初期条件 y ( t 0 ) = y 0 {\displaystyle y(t_{0})=y_{0}} を満たす関数 y ( t ) {\displaystyle y(t)} を求めることである[12]。関数 f {\displaystyle f} が第2引数についてリプシッツ連続であるとき、すなわち定数 L {\displaystyle L} が存在し

f ( t , y 1 ) f ( t , y 2 ) L y 1 y 2 {\displaystyle \left\|f(t,y_{1})-f(t,y_{2})\right\|\leq L\|y_{1}-y_{2}\|}

{\displaystyle \|\cdot \|} R N {\displaystyle \mathbb {R} ^{N}} ノルム)を満たすとき、その初期値問題には解が一意に存在する[13]ピカール・リンデレフの定理)。本節では常微分方程式の初期値問題を数値的に解くことについて議論する。

初期値問題の例

例として、電気回路の研究から導かれたファン・デル・ポール振動子について考える。その運動方程式は

d 2 x d t 2 μ ( 1 x 2 ) d x d t + x = 0 {\displaystyle {\frac {d^{2}x}{dt^{2}}}-\mu (1-x^{2}){\frac {dx}{dt}}+x=0}

であり、これは2階の常微分方程式であるものの、 v = d x / d t {\displaystyle v=dx/dt} とおくと

d x d t = v ,     d v d t = x + μ ( 1 x 2 ) v {\displaystyle {\frac {dx}{dt}}=v,\ \ {\frac {dv}{dt}}=-x+\mu (1-x^{2})v}

という上述の形に帰着できる[14]

一段法

区間 [ t 0 , t ] {\displaystyle [t_{0},t]} の厳密解を y ( t ) {\displaystyle y(t)} とする。一段法[15]として知られるクラスの数値解法では、離散化した時刻 t i = t 0 + i h {\displaystyle t_{i}=t_{0}+ih} ( h = ( t t 0 ) / n {\displaystyle h=(t-t_{0})/n} ) での厳密解 y ( t i ) {\displaystyle y(t_{i})} の近似値 η i {\displaystyle \eta _{i}}

η i + 1 = η i + h Φ ( t i , η i ; h ) {\displaystyle \eta _{i+1}=\eta _{i}+h\Phi (t_{i},\eta _{i};h)}

という漸化式によって定める[16]。関数 Φ {\displaystyle \Phi } の選択が数値積分スキームを選択することに対応する。離散化した時刻の差分 h = t i + 1 t i {\displaystyle h=t_{i+1}-t_{i}} を刻み幅あるいはステップサイズと呼ぶ[17]。なお、ここでは時間ステップ h = t i + 1 t i {\displaystyle h=t_{i+1}-t_{i}} は一定としたが、これを動的に決定する適応刻み(英語版)という手法もある[18][19]

厳密解 y ( t ) {\displaystyle y(t)} から差分商

Δ ( t , η ; h ) = { y ( t + h ) η h h 0 f ( t , η ) h = 0 {\displaystyle \Delta (t,\eta ;h)={\begin{cases}{\frac {y(t+h)-\eta }{h}}&h\neq 0\\f(t,\eta )&h=0\end{cases}}}

を導入するとき、数値積分スキーム Φ {\displaystyle \Phi } の局所離散化誤差[20] (local discretization error) は

Δ ( t , η ; h ) Φ ( t , η ; h ) {\displaystyle \Delta (t,\eta ;h)-\Phi (t,\eta ;h)}

により定義される[21][22]。整合性のために h 0 {\displaystyle h\to 0} の極限で局所離散化誤差(厳密にはその上限)は 0 に収束することが要求される[23][24]。さらに、この極限で局所離散化誤差が Δ ( t , η ; h ) Φ ( t , η ; h ) = O ( h p ) {\displaystyle \Delta (t,\eta ;h)-\Phi (t,\eta ;h)=O(h^{p})} を満足するとき、この積分スキーム Φ {\displaystyle \Phi } p {\displaystyle p} 次精度であるという[25][23]

一方、 t {\displaystyle t} を固定して n {\displaystyle n\to \infty } とするとき、大域離散化誤差[26] (global discretization error)

e ( t ; h n ) = η ( t ; h n ) y ( t ) ,     h n = t t 0 n {\displaystyle e(t;h_{n})=\eta (t;h_{n})-y(t),\ \ h_{n}={\frac {t-t_{0}}{n}}}

が 0 に収束するならば、その積分スキームは収束するという[27][24] p {\displaystyle p} 次精度 ( p > 0 {\displaystyle p>0} ) の1段法を十分に滑らかな関数 f {\displaystyle f} に適用するとき、そのスキームは収束し大域離散化誤差は

e ( t ; h n ) = O ( h n p ) {\displaystyle e(t;h_{n})=O(h_{n}^{p})}

のように振る舞うことが保証されている、すなわち大域離散化誤差のオーダーは局所離散化誤差のオーダーに等しい[28][29]。この結果はすべての整合的な一段法が h 0 {\displaystyle h\to 0} で漸近的に安定であることを意味するものの、ただし現実的に可能な h {\displaystyle h} で1段法が安定であることは必ずしも保証されない(#安定性節を参照)[30]

オイラー法、ホイン法、古典的ルンゲ=クッタ法 (RK4) の相対誤差の比較。初期値 y ( 0 ) = 0 {\displaystyle y(0)=0} のもとでの常微分方程式 d y d t = cos ( y ) {\displaystyle {\frac {dy}{dt}}=\cos(y)} の数値解の t = 1 {\displaystyle t=1} での値をステップサイズの関数として対数プロットした。各手法がそれぞれ1次精度、2次精度、4次精度であることに対応して、傾き 1, 2, 4 で誤差が減少している[31]

積分スキーム Φ {\displaystyle \Phi } としては以下のものが知られている。

  • オイラー法[32]: Φ ( t , η ; h ) = f ( t , η ) {\displaystyle \Phi (t,\eta ;h)=f(t,\eta )} とするもの。これは1次精度のスキームである。
  • ホイン法(英語版)[33]: Φ ( t , η ; h ) = [ f ( t , η ) + f ( t + h , η + h f ( t , η ) ) ] / 2 {\displaystyle \Phi (t,\eta ;h)=[f(t,\eta )+f(t+h,\eta +hf(t,\eta ))]/2} とするもの。これは2次精度のスキームであり、関数 f {\displaystyle f} の評価を2回必要とする。
  • 古典的ルンゲ=クッタ法: これは4次精度のスキームであり、関数 f {\displaystyle f} の評価を4回必要とする[34]

このうち古典的ルンゲ=クッタ法は適用可能範囲の広さ[18]やプログラミングの容易さのために広く用いられている[35](ただし Press らは著書において計算速度の観点から古典的ルンゲ=クッタ法に否定的に言及している[36])。

多段法

一段法は η i + 1 {\displaystyle \eta _{i+1}} の値を η i {\displaystyle \eta _{i}} だけから定めるものであったが、より多くのステップでの値 η i 1 {\displaystyle \eta _{i-1}} , ..., η i r + 1 {\displaystyle \eta _{i-r+1}} を使う積分スキームは多段法[15] (multistep method) と呼ばれる[37]。この場合、最初の η 0 {\displaystyle \eta _{0}} , ..., η r 1 {\displaystyle \eta _{r-1}} はこのスキームでは定めることができず、1段法などの他の方法を用いる必要がある[37]。多段法としてはアダムス・バッシュフォース法や、それを応用する予測子修正子法などがある[38](これはどちらも η i + 1 {\displaystyle \eta _{i+1}} η i r + 1 {\displaystyle \eta _{i-r+1}} , ..., η i {\displaystyle \eta _{i}} の線型関数として定まるため、線型多段法と呼ばれる[39])。

詳細は「線型多段法」を参照

安定性

数値積分スキームの安定性はしばしばそれを初期値問題

d y d t = λ y ,     y ( 0 ) = 1 {\displaystyle {\frac {dy}{dt}}=\lambda y,\ \ y(0)=1}

λ {\displaystyle \lambda } は複素数の定数)に適用することで定量化される[40]。問題のスキームを一定の刻み幅 h {\displaystyle h} で適用することで得られる数列 { y n } n = 0 , 1 , {\displaystyle \{y_{n}\}_{n=0,1,\cdots }} について、それが極限 n {\displaystyle n\to \infty } で 0 に収束するような h λ {\displaystyle h\lambda } がなす複素平面上の領域を絶対安定領域[41]と呼ぶ[40]。もとの初期値問題の厳密解は y ( t ) = e λ t {\displaystyle y(t)=e^{\lambda t}} であり、これは R e { λ } < 0 {\displaystyle \mathrm {Re} \{\lambda \}<0} のとき t {\displaystyle t\to \infty } で 0 に収束する[42]。そこである積分スキームの絶対安定領域が左半平面を含むとき、そのスキームはA-安定 (A-stable) であるという[43][44]

関数 f ( t , y ) {\displaystyle f(t,y)} が大きな値を取り積分スキームによっては極端に時間刻み幅 h {\displaystyle h} を小さくする必要がある場合、その常微分方程式は硬い方程式と呼ばれる[45]。この場合には十分に安定なスキームを用いる必要が生じる[44]。これはしばしば y i + 1 {\displaystyle y_{i+1}} 陰関数的に y i {\displaystyle y_{i}} 等から定める陰解法によって実現される[46]

詳細は「硬い方程式」を参照

幾何学的解法

解析対象となる微分方程式が何らかの特別な性質を持つとき、汎用の数値積分法ではなく、その性質を尊重するように構成された数値解法を用いることがあり、そのような手法は構造保存型解法または幾何学的数値解法と呼ばれる[47][48]。例えば古典力学ハミルトン力学)において時間発展はシンプレクティック写像であり、エネルギーハミルトニアン)等の保存量が存在する[48]。この場合にはシンプレクティック数値積分法というハミルトン系にのみ適用可能な数値解法が存在し、良好な性質を持つことが知られている[49]

境界値問題

常微分方程式

d y d x = f ( x , y ) {\displaystyle {\frac {dy}{dx}}=f(x,y)}

の解 y ( x ) {\displaystyle y(x)} で, a b {\displaystyle a\neq b} に対する境界条件

r ( y ( a ) , y ( b ) ) = c {\displaystyle r(y(a),y(b))=c}

を満足するものを求める問題を境界値問題 (boundary-value problem) と呼ぶ[50]。初期値問題と異なり、境界値問題では複数の解が存在すること、あるいは解が存在しないことがあり得る。また、スツルム=リウヴィル型微分方程式のように常微分方程式にパラメータ λ {\displaystyle \lambda } が含まれ、境界値問題に解が存在するようにパラメータ λ {\displaystyle \lambda } を同時に定める問題もある[51]

これらの問題を数値的に解く最も単純な方法が狙い撃ち法 (shooting method) である[52]。一方の端点(例えば x = a {\displaystyle x=a} )において初期条件 y ( a ) {\displaystyle y(a)} を適当に定めて微分方程式をもう一方の端点 x = b {\displaystyle x=b} まで解き、境界条件を満たすように未定の初期条件(および固有値)を適切に選ぶ[53][54]。これはニュートン法などの関数の根を求めるアルゴリズム(これはしばしば逐次反復を伴う)を常微分方程式の数値解法と組み合わせることを意味する[55][56]。ただし初期条件によっては区間 [ a , b ] {\displaystyle [a,b]} 全体で定義された解が存在しないことがあり、そのために改良された手法がある[57]。あるいは有限要素法 (finite element method) などの手法も用いられる[58]

解の存在検証

高精度に解く技術が追求されている一方で、「計算機で解の存在を検証する」という研究もおこなわれている[59]。このような研究が必要となるのは、近似解が求まったとしてもそれが幻影解である危険性があるからである。偏微分方程式ではすでに幻影解が報告されているので[59][B 1][B 2]常微分方程式でも警戒が必要である。偏微分方程式の時と同様に関数解析学的な手法[59][60][61][62]も考えられるが、関数解析学に頼らない手法 (例えば狙い撃ち法スペクトル法アフィン演算など) に基づく研究が主流であり[59]、欧米などの海外[B 3][B 4][B 5][B 6][B 7][B 8][B 9][B 10][B 11]のみならず日本国内でも研究されている[B 12][B 13][B 14][B 15]。また、爆発解 (: Blow-up solution) に特化した精度保証付き解法も探求されている[B 16][B 17]

解の存在検証・計算機援用証明が行われた方程式

関連ソフトウェア・ライブラリ

出典

[脚注の使い方]
  1. ^ a b c d 山本哲朗『数値解析入門』(増訂版)サイエンス社〈サイエンスライブラリ 現代数学への入門 14〉、2003年6月。ISBN 4-7819-1038-6。 
  2. ^ a b c d 森正武. 数値解析 第2版. 共立出版.
  3. ^ 時弘哲治、工学における特殊関数共立出版
  4. ^ 坂井秀隆. (2015). 常微分方程式. 東京大学出版会.
  5. ^ 遠藤理平 (2018) ルンゲ・クッタで行こう!―物理シミュレーションを基礎から学ぶ
  6. ^ 岡本和夫. (2009). パンルヴェ方程式. 岩波書店.
  7. ^ 野海正俊. (2000). パンルヴェ方程式-対称性からの入門. すうがくの風景 4. 朝倉書店.
  8. ^ 岡本和夫. (1985). パンルヴェ方程式序説. 上智大学数学講究録, 19.
  9. ^ リッカチのひ・み・つ : 解ける微分方程式の理由を探る. 井ノ口順一著. 日本評論社, 2010.9.
  10. ^ Hairer, E., Lubich, C., & Wanner, G. (2006). Geometric numerical integration: structure-preserving algorithms for ordinary differential equations. en:Springer Science & Business Media.
  11. ^ 吉田春夫. (1995). シンプレクティック数値解法 (古典力学の輝き--未解決問題と新しい発見). 数理科学, 33(6), p37-46.
  12. ^ Stoer & Bulirsch, p. 465.
  13. ^ Stoer & Bulirsch, p. 467.
  14. ^ Iserles, pp. 106-107.
  15. ^ a b 加古富志雄. “数値解析”. 2021年2月2日閲覧。
  16. ^ Stoer & Bulirsch, p. 473.
  17. ^ 齊藤, pp. 97-98.
  18. ^ a b Press et al., p. 709.
  19. ^ Jun Makino. “5.6 刻み幅調節と埋め込み型公式”. 2021年2月2日閲覧。
  20. ^ 齊藤, pp. 99, 102.
  21. ^ Stoer & Bulirsch, pp. 473-474.
  22. ^ Hackbusch, p. 71.
  23. ^ a b Stoer & Bulirsch, p. 474.
  24. ^ a b Hackbusch, p. 72.
  25. ^ 齊藤, p. 103.
  26. ^ 齊藤, p. 102.
  27. ^ Stoer & Bulirsch, p. 477.
  28. ^ Stoer & Bulirsch, pp. 477-479.
  29. ^ Hackbusch, pp. 73-74.
  30. ^ Hackbusch, p. 74.
  31. ^ 齊藤, p. 107.
  32. ^ 齊藤, p. 97-98, 103.
  33. ^ 齊藤, p. 106.
  34. ^ Stoer & Bulirsch, pp. 475-476.
  35. ^ “C言語による数値計算プログラミング演習 10. 常微分方程式の初期値問題”. 2021年2月2日閲覧。
  36. ^ Press et al., pp. 708-709, 712.
  37. ^ a b Stoer & Bulirsch, p. 492.
  38. ^ Press et al., pp. 747-750.
  39. ^ Stoer & Bulirsch, p. 508.
  40. ^ a b Iserles, pp. 56-57.
  41. ^ Jun Makino (1998年). “2 数値解の安定性”. 2021年2月1日閲覧。
  42. ^ Iserles, p. 56.
  43. ^ Iserles, p. 59.
  44. ^ a b Jun Makino (1998年). “11.2 A-安定性”. 2021年2月1日閲覧。
  45. ^ Iserles, pp. 53-56.
  46. ^ Press et al., pp. 735-736.
  47. ^ 齊藤, p. 120.
  48. ^ a b 宮武勇登. “保存則に即した数値計算手法”. 2021年2月2日閲覧。
  49. ^ 吉田春夫「可変時間ステップによるシンプレクティック数値解法(非線形可積分系による応用解析)」『数理解析研究所講究録』第889巻、京都大学数理解析研究所、1994年11月、70-76頁、CRID 1050001202298760960、hdl:2433/84362ISSN 1880-2818、2023年12月21日閲覧 
  50. ^ Stoer & Bulirsch, pp. 539-540.
  51. ^ Stoer & Bulirsch, p. 541.
  52. ^ Stoer & Bulirsch, pp. 542-548.
  53. ^ Press et al., pp. 753-755, 757-759.
  54. ^ Hairer et al. (1993), p. 105.
  55. ^ Hairer et al. (1993), p. 106.
  56. ^ Press et al., pp. 754-755.
  57. ^ Hairer et al. (1993), pp. 106-107.
  58. ^ Iserles, pp. 171-176.
  59. ^ a b c d 精度保証付き数値計算の基礎』大石進一 編著、コロナ社、2018年。
  60. ^ Nakao, Mitsuhiro T; Plum, Michael; Watanabe, Yoshitaka (2019). Numerical verification methods and computer-assisted proofs for partial differential equations. Springer. doi:10.1007/978-981-13-7669-6. https://link.springer.com/book/10.1007/978-981-13-7669-6 
  61. ^ 中尾充宏, & 山本野人. (1998). 精度保証付き数値計算 チュートリアル: 応用数理最前線.
  62. ^ 中尾充宏, & 渡部善隆. (2011). 実例で学ぶ精度保証付き数値計算, サイエンス社.
  63. ^ 大石進一、非線形解析入門、コロナ社。

近似解法に関する論文

  1. ^ Butcher, J. C. (1996). A history of Runge-Kutta methods. Applied numerical mathematics, 20(3), 247-260.
  2. ^ Hochbruck, M., & Ostermann, A. (2010). Exponential integrators. en:Acta Numerica, 19, 209-286.
  3. ^ Al-Mohy, A. H., & Higham, N. J. (2011). Computing the action of the matrix exponential, with an application to exponential integrators. en:SIAM journal on scientific computing, 33(2), 488-511.
  4. ^ Monroe, J. L. (2002). Extrapolation and the Bulirsch-Stoer algorithm. Physical Review E, 65(6), 066116.
  5. ^ Kirpekar, S. (2003). Implementation of the Bulirsch Stoer extrapolation method. Department of Mechanical Engineering, UC Berkeley/California.
  6. ^ Symplectic integrators: An introduction, American Journal of Physics 73, 938 (2005); https://doi.org/10.1119/1.2034523 Denis Donnelly.
  7. ^ Y. B. Suris, Hamiltonian Runge-Kutta type methods and their variational formulation (1990) Matematicheskoe modelirovanie, 2(4), 78-87.
  8. ^ Iserles, A., & Quispel, G. R. W. (2016). Why geometric integration?. arXiv preprint arXiv:1602.07755.
  9. ^ 平山弘, 小宮聖司, & 佐藤創太郎. (2002). Taylor 級数法による常微分方程式の解法. 日本応用数理学会論文誌, 12(1), 1-8.
  10. ^ 平山弘. (2013). Taylor 展開法による常微分方程式の高次並列計算. 研究報告ハイパフォーマンスコンピューティング (HPC), 2013(3), 1-6.
  11. ^ 平山弘, & 佐藤創太郎. (2002). 遅延微分方程式の級数による解法 (Computer Algebra: Algorithms, Implementations and Applications).
  12. ^ Hirayama, H. (2002). Solution of ordinary differential equations by Taylor series method. JSIAM, 12, 1-8.
  13. ^ Hirayama, H. (2015). Performance of a Higher-Order Numerical Method for Solving Ordinary Differential Equations by Taylor Series. In Integral Methods in Science and Engineering (pp. 321-328). Birkhäuser, Cham.

精度保証・計算機援用証明に関する論文

  1. ^ Breuer, B., Plum, M., & McKenna, P. J. (2001). "Inclusions and existence proofs for solutions of a nonlinear boundary value problem by spectral numerical methods." In Topics in Numerical Analysis (pp. 61–77). Springer, Vienna. ISBN 978-3-211-83673-6, doi:10.1007/978-3-7091-6217-0_6.
  2. ^ Gidas, Basilis; Ni, Wei-Ming; Nirenberg, Louis (1979). “Symmetry and related properties via the maximum principle”. Communications in mathematical physics (Springer) 68 (3): 209-243. doi:10.1007/BF01221125. https://doi.org/10.1007/BF01221125.  (Paid subscription required要購読契約)
  3. ^ a b c Lohner,R.J.,Enclosing the Solution of Ordinary lnitial and Boundary Value Problems, Computer arithmetic:Scientific Computation and Programming Languages,Kaucher,E.,Kulisch,U., Ullrich,Ch.(eds.), B.G.Teubner,Stuttgart (1987), 255−286.
  4. ^ Rihm, R. (1994). Interval methods for initial value problems in ODEs. Topics in Validated Computations, 173-207.
  5. ^ Hungria, A., Lessard, J. P., & Mireles-James, J. D. (2014). Radii polynomial approach for analytic solutions of differential equations: Theory, examples, and comparisons. Math. Comp.
  6. ^ Nedialkov, N. S., Jackson, K. R., & Pryce, J. D. (2001). An effective high-order interval method for validating existence and uniqueness of the solution of an IVP for an ODE. Reliable Computing, 7(6), 449-465.
  7. ^ Corliss, G. F. (1989). Survey of interval algorithms for ordinary differential equations. Applied Mathematics and Computation, 31, 112-120.
  8. ^ Nedialkov, N. S. (2000). Computing rigorous bounds on the solution of an initial value problem for an ordinary differential equation (Ph.D. thesis). University of Toronto.
  9. ^ Eijgenraam, P. (1981). The solution of initial value problems using interval arithmetic: formulation and analysis of an algorithm. MC Tracts.
  10. ^ Nedialkov, N. S., & Jackson, K. R. (1999). An interval Hermite-Obreschkoff method for computing rigorous bounds on the solution of an initial value problem for an ordinary differential equation. Reliable Computing, 5(3), 289-310.
  11. ^ Nedialkov, N. S., Jackson, K. R., & Corliss, G. F. (1999). Validated solutions of initial value problems for ordinary differential equations. Applied Mathematics and Computation, 105(1), 21-68.
  12. ^ Berz, M., & Makino, K. (1998). Verified integration of ODEs and flows using differential algebraic methods on high-order Taylor models. Reliable computing, 4(4), 361-369.
  13. ^ 柏木啓一郎, & 柏木雅英. (2011). 平均値形式とアフィン演算を用いた常微分方程式の精度保証法. 日本応用数理学会論文誌, 21(1), 37-58.
  14. ^ Kashiwagi, M. (1995). Numerical Validation for Ordinary Differential Equations using Power Series Arithmetic. In Numerical Analysis Of Ordinary Differential Equations And Its Applications (pp. 213-218).
  15. ^ 相馬隆郎, & 大石進一. (2003). 精度保証付き数値計算法を用いた常微分方程式の全解探索アルゴリズム. 電子情報通信学会論文誌 A, 86(6), 663-673.
  16. ^ Takayasu, A., Matsue, K., Sasaki, T., Tanaka, K., Mizuguchi, M., & Oishi, S. I. (2017). Numerical validation of blow-up solutions of ordinary differential equations. en:Journal of Computational and Applied Mathematics, 314, 10-29.
  17. ^ Matsue, K., & Takayasu, A. (2019). Rigorous numerics of blow-up solutions for ODEs with exponential nonlinearity. arXiv preprint arXiv:1902.01842.
  18. ^ Hassard, B., Zhang, J., Hastings, S. P., & Troy, W. C. (1994). A computer proof that the Lorenz equations have “chaotic” solutions. Applied Mathematics Letters, 7(1), 79-83.
  19. ^ Mischaikow, K., & Mrozek, M. (1995). Chaos in the Lorenz equations: a computer-assisted proof. en:Bulletin of the American Mathematical Society, 32(1), 66-72.
  20. ^ Mischaikow, K., & Mrozek, M. (1998). Chaos in the Lorenz equations: A computer assisted proof. Part II: Details. en:Mathematics of Computation, 67(223), 1023-1046.
  21. ^ Mischaikow, K., Mrozek, M., & Szymczak, A. (2001). Chaos in the lorenz equations: A computer assisted proof part iii: Classical parameter values. Journal of Differential Equations, 169(1), 17-56.
  22. ^ Galias, Z., & Zgliczyński, P. (1998). Computer assisted proof of chaos in the Lorenz equations. Physica D: Nonlinear Phenomena, 115(3-4), 165-188.
  23. ^ Tucker, W. (1999). The Lorenz attractor exists. Comptes Rendus de l'Académie des Sciences-Series I-Mathematics, 328(12), 1197-1202.
  24. ^ Zgliczynski, P. (1997). Computer assisted proof of chaos in the Rössler equations and in the Hénon map. Nonlinearity, 10(1), 243.
  25. ^ 大石進一. (1993). 非線形常微分方程式の周期解の数値的存在検証と近似解の精度保証. 電子情報通信学会技術研究報告. CAS, 回路とシステム, 93(102), 91-96.
  26. ^ 大石進一. (1993). 非線形常微分方程式の周期解の数値的存在検証と近似解の精度保証 (常微分方程式系の数値解析とその周辺). 京都大学数理解析研究所講究録.
  27. ^ Makino, K., & Berz, M. (2006). Cosy infinity version 9. Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment, 558(1), 346-350.
  28. ^ Berz, M., Makino, K., Shamseddine, K., Hoffstätter, G. H., & Wan, W. (1996). 32. COSY INFINITY and Its Applications in Nonlinear Dynamics.
  29. ^ S.M. Rump: INTLAB - INTerval LABoratory. In Tibor Csendes, editor, Developments in Reliable Computing, pages 77-104. Kluwer Academic Publishers, Dordrecht, 1999.
  30. ^ Overview of kv – a C++ library for verified numerical computation, Masahide Kashiwagi, SCAN 2018.

参考文献

和書

  • 戸川隼人:「微分方程式の数値計算:有限要素法と差分法」、オーム社(1973年8月)。
  • 一松信:「微分方程式と解法」、教育出版、ISBN 978-4-316-37661-5(1976年11月)。 
  • 三井斌友:「常微分方程式の数値解法」, 岩波書店、ISBN 978-4000054539(2003年7月29日)
  • 三井斌友 et. al. (2004). 微分方程式による計算科学入門. 共立出版.
  • E.ハイラー、S.P.ネルセット、G.バンナー, 三井斌友(訳):「常微分方程式の数値解法 I (基礎編)」、丸善出版、ISBN 978-4-621-06282-1(2007年12月)。
  • E.ハイラー、G.バンナー, 三井斌友(訳):「常微分方程式の数値解法 II (発展編)」、丸善出版、ISBN 978-4-621-06317-0(2008年8月)。
  • 齊藤宣一『数値解析 (共立講座 数学探検 17)』共立出版、2017年。ISBN 9784320992740。 

洋書

  • Mitsui, T., & Shinohara, Y. (1995). Numerical analysis of ordinary differential equations and its applications. en:World Scientific.
  • Iserles, A. (2009). A first course in the numerical analysis of differential equations. Cambridge University Press.
  • Hairer, Ernst; Nørsett, Syvert Paul; Wanner, Gerhard (1993), Solving ordinary differential equations I: Nonstiff problems, Berlin, New York: Springer-Verlag, ISBN 978-3-540-56670-0. (日本語版が丸善出版から発売されている、三井斌友が翻訳を担当)
  • Wanner, G. & Hairer, E. (1996), Solving ordinary differential equations II: Stiff and differential-algebraic problems (2nd ed.). Springer Berlin Heidelberg. (日本語版が丸善出版から発売されている、三井斌友が翻訳を担当)
  • Butcher, John C. (2008), Numerical Methods for Ordinary Differential Equations, New York: John Wiley & Sons, ISBN 978-0-470-72335-7.
  • John D. Lambert, Numerical Methods for Ordinary Differential Systems, John Wiley & Sons, Chichester, 1991. ISBN 0-471-92990-5.
  • Deuflhard, P., & Bornemann, F. (2012). Scientific computing with ordinary differential equations. en:Springer Science & Business Media.
  • Shampine, L. F. (2018). Numerical solution of ordinary differential equations. Routledge.
  • Dormand, John R. (1996), Numerical Methods for Differential Equations: A Computational Approach, Boca Raton: en:CRC Press.
  • Press, William H.; Teukolsky, Saul A.; Vetterling, William T.; Flannery, Brian P. (1992). Numerical Recipes in C: The Art of Scientific Computing (2nd ed.). Cambridge University Press. doi:10.2277/0521431085. ISBN 978-0-521-43108-8 
  • Stoer, Josef; Bulirsch, R. (2002). Introduction to Numerical Analysis. Springer. doi:10.1007/978-0-387-21738-3. ISBN 978-0-387-21738-3 
  • Hackbusch, Wolfgang (2014). The Concept of Stability in Numerical Mathematics. Springer. doi:10.1007/978-3-642-39386-0. ISBN 978-3-642-39386-0 
  • John C. Butcher: "B-Series : Algebraic Analysis of Numerical Methods", Springer(SSCM, volume 55), ISBN 978-3030709556 (April, 2021).
  • Hairer Ernst, Lubich Christian, Wanner Gerhard: "Geometric Numerical Integration: Structure-Preserving Algorithms for Ordinary Differential Equations" (2nd Ed.), Springer, ISBN 978-3-540-30663-4 (2006).
  • Kees Vuik, Fred Vermolen,Martin van Gijzen and Thea Vuik: "Numerical Methods for Ordinary Differential Equations", ISBN 978-94-6366-665-7 (2023年1月8日)

微分代数方程式の数値解法

「:en:differential-algebraic system of equations」も参照
  • Brenan, K. E., Campbell, S. L., & Petzold, L. R. (1996). Numerical solution of initial-value problems in differential-algebraic equations. SIAM.
  • Hairer, E., Lubich, C., & Roche, M. (2006). The numerical solution of differential-algebraic systems by Runge-Kutta methods. Springer.
  • Kunkel, P., & Mehrmann, V. (2006). Differential-algebraic equations: analysis and numerical solution. European Mathematical Society.
  • Marz, R. (1992). Numerical methods for differential algebraic equations. en:Acta Numerica, 1, 141-198.

遅延微分方程式の数値解法

「:en:Delay differential equation」も参照
  • Bellen, A., & Zennaro, M. (2013). Numerical methods for delay differential equations. Oxford University Press.
  • Zennaro, M. (1995). Delay differential equations: theory and numerics. Theory and numerics of ordinary and partial differential equations, 291-333.

外部リンク

Project:数学
プロジェクト 数学
Portal:数学
ポータル 数学
  • Verified ODE (IVP) Solver
  • 常微分方程式で記述される非線形力学系に関する精度保証付き計算法の研究
  • 硬い常微分方程式が与える連続力学系の周期解の数値計算

解説記事

近似解法

  • 常微分方程式の初期値問題の数値解法
  • 常微分方程式の数値解法
  • symplectic integrator in nLab
  • Symplectic数値積分法
  • Symplectic Integratorの紹介

精度保証

研究集会

  • 常微分方程式の数値解法とその周辺 2019
  • 常微分方程式の数値解法とその周辺 2018

ソフトウェア

  • INTLAB
  • Short demonstration of the AWA toolbox
  • Short demonstration of the Taylor model toolbox
主要分野
トピックス
応用
学会団体
競技
研究所