微分 三角関数のテイラー展開 正弦
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第1章(微分)、1.2(テイラー展開)、三角関数のテイラー展開の問題10の解答を求めてみる。
とおく。
よって、
(証明終)
コード(Wolfram)
Sum[(-1)^n / (2n)! x^(2n), {n, 0, Infinity}]
Plot[
Flatten[
{
Cos[x],
Table[
Sum[(-1)^n/(2n)! x^(2n), {n, 0, m}],
{m, 0, 10, 1}
]
}
],
{x, -2Pi, 2Pi},
PlotLegends -> "Expressions"
]
fs = Flatten[{
Cos[x],
Table[
Sum[(-1)^n/(2n)! x^(2n), {n, 0, m}],
{m, 0, 5, 1}
]
}]
Plot[
fs, {x, -2Pi, 2Pi},
PlotLegends -> "Expressions"
]
Manipulate[
Plot[{Cos[x], Sum[(-1)^n/(2n)! x^(2n), {n, 0, m}]},
{x, -2Pi, 2Pi},
PlotRange -> {-2Pi, 2Pi}],
{m, 0, 10}
]