Let's look at the sine wave again. Plotting it this way makes the relationship to the trigonometric functions clearer.

もう一度サイン波を見てみましょう。このようにプロットすると、三角関数との関係が明確になります。

https://codepen.io/kynd/pen/mwbWwJ

Waves can be added together. Adding waves according to certain rules can create surprising geometric patterns. This is called additive synthesis.

波は足し合わせることができます。ある一定の規則に基づいて波を足し合わせると驚くような幾何学的なパターンが作れます。これは加算合成と呼ばれます。

These are special cases of what is called a Fourier series, expressed in the form of the following equation. If you look at the left part of the demos, you can see that there are multiple rotational motions with different radii and velocities adding up to create the waveform.

これらは下記の式の形で表されるフーリエ級数というものの特殊な場合になっています。デモの左側部分を見ると、半径と速度の異なる幾つもの回転運動が重なり合って波形を作り出していることがわかります。

${\displaystyle {\frac {a_{0}}{2}}+\sum {k=1}^{\infty }(a{k}\cos kx+b_{k}\sin kx)}$

Square Wave 矩形波

${\displaystyle {\begin{aligned}x_{\text{square}}(t)&={\frac {4}{\pi }}\sum _{k=1}^{\infty }{\frac {\sin \left(2\pi (2k-1)ft\right)}{2k-1}}\\&={\frac {4}{\pi }}\left(\sin(2\pi ft)+{\frac {1}{3}}\sin(6\pi ft)+{\frac {1}{5}}\sin(10\pi ft)+\dots \right)\end{aligned}}}$

https://codepen.io/kynd/pen/JJPWyz