微分 テイラー展開 係数、階乗
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第1章(微分)、1.2(テイラー展開)の問題9の解答を求めてみる。
コード(Wolfram)
Sum[(-1)^n x^n, {n, 0, Infinity}]
Manipulate[
Plot[
{
1 / (1 + x),
Sum[(-1)^n x^n, {n, 0, m}]
},
{x, -5, 5},
PlotRange -> {-5, 5},
PlotLegends -> {"1 / (1 + x))", "n = " <> ToString[m]}
],
{m, 0, 10, 1}
]