三角関数の公式|LaTeX

三角関数には多くの公式があり、数学や物理学のあらゆる場面で登場します。ここでは主要な三角関数の公式の LaTeX 記法をまとめます。

基本的な関係式

三角関数の最も基本的な関係式はピタゴラスの定理から導かれます。

\sin^2 \theta + \cos^2 \theta = 1

これを変形すると、以下の関係も得られます。

1 + \tan^2 \theta = \sec^2 \theta
1 + \cot^2 \theta = \csc^2 \theta

加法定理

二つの角の和・差に関する公式が加法定理です。

\sin(\alpha + \beta) = \sin\alpha\cos\beta + \cos\alpha\sin\beta
\sin(\alpha - \beta) = \sin\alpha\cos\beta - \cos\alpha\sin\beta
\cos(\alpha + \beta) = \cos\alpha\cos\beta - \sin\alpha\sin\beta
\cos(\alpha - \beta) = \cos\alpha\cos\beta + \sin\alpha\sin\beta

正接の加法定理は分数形式になります。

\tan(\alpha + \beta) = \frac{\tan\alpha + \tan\beta}{1 - \tan\alpha\tan\beta}
\tan(\alpha - \beta) = \frac{\tan\alpha - \tan\beta}{1 + \tan\alpha\tan\beta}

倍角の公式

加法定理で とおくと倍角の公式が得られます。

\sin 2\theta = 2\sin\theta\cos\theta
\cos 2\theta = \cos^2\theta - \sin^2\theta = 2\cos^2\theta - 1 = 1 - 2\sin^2\theta
\tan 2\theta = \frac{2\tan\theta}{1 - \tan^2\theta}

三倍角の公式

倍角の公式をさらに適用すると三倍角の公式になります。

\sin 3\theta = 3\sin\theta - 4\sin^3\theta
\cos 3\theta = 4\cos^3\theta - 3\cos\theta
\tan 3\theta = \frac{3\tan\theta - \tan^3\theta}{1 - 3\tan^2\theta}

半角の公式

倍角の公式を変形すると半角の公式が得られます。

\sin^2\frac{\theta}{2} = \frac{1 - \cos\theta}{2}
\cos^2\frac{\theta}{2} = \frac{1 + \cos\theta}{2}
\tan\frac{\theta}{2} = \frac{1 - \cos\theta}{\sin\theta} = \frac{\sin\theta}{1 + \cos\theta}

積和の公式

三角関数の積を和に変換する公式です。

\sin\alpha\cos\beta = \frac{1}{2}\{\sin(\alpha+\beta) + \sin(\alpha-\beta)\}
\cos\alpha\cos\beta = \frac{1}{2}\{\cos(\alpha+\beta) + \cos(\alpha-\beta)\}
\sin\alpha\sin\beta = -\frac{1}{2}\{\cos(\alpha+\beta) - \cos(\alpha-\beta)\}

和積の公式

三角関数の和を積に変換する公式です。積和の公式の逆変換にあたります。

\sin A + \sin B = 2\sin\frac{A+B}{2}\cos\frac{A-B}{2}
\sin A - \sin B = 2\cos\frac{A+B}{2}\sin\frac{A-B}{2}
\cos A + \cos B = 2\cos\frac{A+B}{2}\cos\frac{A-B}{2}
\cos A - \cos B = -2\sin\frac{A+B}{2}\sin\frac{A-B}{2}

合成公式

の形を一つの三角関数にまとめる公式です。

a\sin\theta + b\cos\theta = \sqrt{a^2+b^2}\sin(\theta + \phi)

ここで は次の条件を満たす角度です。

\cos\phi = \frac{a}{\sqrt{a^2+b^2}}, \quad \sin\phi = \frac{b}{\sqrt{a^2+b^2}}