Merge branch 'master' of ssh://charles/tank/andrew/school/notes
[notes.git] / methods / transformations.md
index f335793484f0d402755d96cb488243194d41143d..0a24a8182eea52c3d508041760a01c2a61b33976 100644 (file)
@@ -1,8 +1,79 @@
 # Transformation
 
+**Order of operations:** DRT - Dilations, Reflections, Translations
+
 ## $f(x) = x^n$ to $f(x)=a(x-h)^n+K$##
 
 - $|a|$ is the dilation factor of $|a|$ units parallel to $y$-axis or from $x$-axis
 - if $a<0$, graph is reflected over $x$-axis
 - $k$ - translation of $k$ units parallel to $y$-axis or from $x$-axis
-- $h$ - translation of $h$ units parallel to $x$-axis or from $y$-axis
\ No newline at end of file
+- $h$ - translation of $h$ units parallel to $x$-axis or from $y$-axis
+
+## Translations
+
+For $y = f(x)$, these processes are equivalent:
+
+- applying the translation $(x, y) \rightarrow (x + h, y + k)$ to the graph of $y = f$(x)$
+- replacing $x$ with $x − h$ and $y$ with $y − k$ to obtain $y − k = f (x − h)$
+
+## Dilations
+
+For the graph of $y = f(x)$, there are two pairs of equivalent processes:
+
+1. - Dilating from $x$-axis: $(x, y) \rightarrow (x, by)$
+   - Replacing $y$ with $y \over b$ to obtain $y = b f(x)$
+
+2. - Dilating from $y$-axis: $(x, y) \rightarrow (ax, y)$
+   - Replacing $x$ with $x \over a$ to obtain $y = f({x \over a})$
+
+For graph of $y={1 \over x}$, horizontal & vertical dilations are equivalent (symmetrical). If $y={a \over x}$, graph is contracted rather than dilated.
+
+## Transformations from $f(x)$ to $y=Af[n(x+c)]+b$#
+
+Applies to exponential, log, trig, power, polynomial functions.  
+Functions must be written in form $y=Af[n(x+c)] + b$
+
+$A$ - dilation by factor $A$ from $x$-axis (if $A<0$, reflection across $y$-axis)  
+$n$ - dilation by factor $1 \over n$ from $y$-axis (if $n<0$, reflection across $x$-axis)  
+$c$ - translation from $y$-axis ($x$-shift)  
+$b$ - translation from $x$-axis ($y$-shift)
+
+## Power functions
+
+**Strictly increasing** on an interval where $x_2 > x_1 \implies f(x_2) > f(x_2)$ (including $x=0$)
+
+#### $n$ is odd and $n>1$:  
+$f(-x)=-f(x)$
+
+#### $n$ is even and $n>1$:
+$f(-x)=f(x)$
+
+### Function $f(x)=x^{-1 \over n}$ where $n \in \mathbb{Z}^+$
+
+Mostly only on CAS.
+
+We can write $x^{-1 \over n} = {1 \over {x^{1 \over n}}} = {1 \over ^n \sqrt{x}}$n. Domain is:  $\begin{cases} \mathbb{R} \setminus \{0\}\hspace{0.5em} \text{ if }n\text{ is odd} \\ \mathbb{R}^+ \hspace{2.6em}\text{if }n\text{ is even}\end{cases}$
+
+**Odd and even functions:**  
+Function is even if it can be reflected across $y$-axis $\implies f(x)=f(-x)$  
+If $n$ is odd, then $f$ is an odd function since $f(-x)=-f(x) \implies f(x)=-f(x)$
+
+## Combinations of functions (piecewise/hybrid)
+
+$$\text{e.g.}\quad f(x)=\begin{cases} ^3 \sqrt{x}, \hspace{2em} x \le 0 \\ 2, \hspace{3.4em} 0 < x < 2 \\ x, \hspace{3.4em} x \ge 2 \end{cases}$$
+
+Open circle - point included  
+Closed circle - point not included  
+
+### Sum, difference, product of functions
+| | | |
+|---|-----|-----|
+|sum|$f+g$|domain $= \text{dom}(f) \cap \text{dom}(g)$|
+|difference|$f-g$ or $g-f$|domain $=\text{dom}(f) \cap \text{dom}(g)$|
+|product|$f \times g$|domain $=\text{dom}(f) \cap \text{dom}(g)$|
+
+Addition of linear piecewise graphs - add $y$-values at key points
+
+Product functions:  
+- product will equal 0 if one of the functions is equal to 0
+- turning point on one function does not equate to turning point on product
\ No newline at end of file