Compare commits

...

6 Commits

Author SHA1 Message Date
zleyyij
61f76cba3a vault backup: 2024-09-26 09:13:33 2024-09-26 09:13:33 -06:00
zleyyij
bb92946542 vault backup: 2024-09-26 08:48:33 2024-09-26 08:48:33 -06:00
zleyyij
37ba8cbf7c vault backup: 2024-09-26 08:43:33 2024-09-26 08:43:33 -06:00
zleyyij
9e90349f90 vault backup: 2024-09-26 08:38:33 2024-09-26 08:38:33 -06:00
zleyyij
106f28b104 vault backup: 2024-09-26 08:33:33 2024-09-26 08:33:33 -06:00
zleyyij
f7bc59d91e vault backup: 2024-09-26 08:27:06 2024-09-26 08:27:06 -06:00

View File

@ -15,3 +15,21 @@ Given the above graph:
A function is considered periodic if it repeats itself at even intervals, where each interval is a complete cycle, referred to as a *period*.
# Sinusoidal Functions
A function that has the same shape as a sine or cosine wave is known as a sinusoidal function.
There are 4 general functions:
| $$A * sin(B*x - C) + D$$ | $$ y = A * cos(B*x -c) + D$$ |
| ----------------------------------------- | -------------------------------------- |
| $$ y = A * sin(B(x - \frac{C}{B})) + D $$ | $$ y = A*cos(B(x - \frac{C}{B})) + D$$ |
How to find the:
- Amplitude: $|A|$
- Period: $\frac{2\pi}{B}$
- Phase shift: $\frac{C}{|B|}$
- Vertical shift: $D$
$$ y = A * \sin(B(x-\frac{C}{B})) $$