methods transformations - f(x)
[notes.git] / methods / transformations.md
index f335793484f0d402755d96cb488243194d41143d..ce58a1082ff7c611c7a53335bc2a55332e952505 100644 (file)
@@ -1,8 +1,39 @@
 # 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)
\ No newline at end of file