微分 複素数とオイラーの公式 三角関数(正弦と余弦)を指数関数と複素数で表す
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第1章(微分)、1.5(複素数とオイラーの公式)、問題15の解答を求めてみる。
加える。
よって、
引く。
よって、
(証明終)
コード(Wolfram Language)
Cos[θ] == 1/2(Exp[I θ] + Exp[-I θ])
Simplify[%]
Sin[θ] == 1/(2I) (Exp[I θ] - Exp[-I θ])
Simplify[%]
Plot[
{
1/2(Exp[I θ] + Exp[-I θ]),
1/(2I)(Exp[I θ] - Exp[-I θ])
},
{θ, -2Pi, 2Pi},
PlotLegends -> "Expressions"
]