methods / circ-functions.mdon commit add methods notes on solving trig equations (1cb56c1)
   1# Circular functions
   2
   3## Radians and degrees
   4
   5$$1 \thinspace \operatorname{rad}={{180 \operatorname{deg}}\over \pi}$$
   6
   7## Exact values
   8
   9
  10
  11## $\sin$ and $\cos$ graphs
  12
  13$$f(x)=a \sin(bx-c)+d$$
  14$$f(x)=a \cos(bx-c)+d$$
  15
  16where
  17$a$ is the amplitude
  18$b$ is the $x$-dilation
  19$c$ is the $y$-shift
  20
  21Period is ${2 \pi} \over b$
  22Domain is $\mathbb{R}$
  23Range is $[-b+c, b+c]$;
  24
  25Graph of $\cos(x)$ starts at $(0,1)$. Graph of $\sin(x)$ starts at $(0,0)$.
  26
  27**Mean / equilibrium:** line that the graph oscillates around ($y=d$)
  28
  29## Solving trig equations
  30
  311. Solve domain for $n\theta$
  322. Find solutions for $n\theta$
  333. Divide solutions by $n$
  34
  35$\sin2\theta={\sqrt{3}\over2}, \quad \theta \in[0, 2\pi] \quad(\therefore 2\theta \in [0,4\pi])$
  36$2\theta=\sin^{-1}{\sqrt{3} \over 2}$
  37$2\theta={\pi\over 3}, {2\pi \over 3}, {7\pi \over 3}, {8\pi \over 3}$
  38$\therefore \theta = {\pi \over 6}, {\pi \over 3}, {7 \pi \over 6}, {4\pi \over 3}$