This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| B4ゼミ: ホモトピー法 | |
| 次の非線形方程式の海を、ホモトピー法を用いて近似的に求めよ。 | |
| ```typst | |
| $f(x) = x^3 + x - 1 = 0$ | |
| 但し、$g(x) = x, H(x,t) = (1-t) g(x) + t f(x)$ | |
| ``` | |
| Hint: 連続法で、「tを0.2刻みで予測子を出し、修正するためにニュートン法を行う」 |