vectors - 20a&b
[notes.git] / spec / calculus.md
index 08cfe8f7a206ba4b2ff1a1ff4d818314215c8e39..3dbee28e75da1da92beea859687c16b536747287 100644 (file)
@@ -192,9 +192,9 @@ $\int k f(x) dx = k \int f(x) dx$
 
 | $f(x)$                          | $\int f(x) \cdot dx$         |
 | ------------------------------- | ---------------------------- |
-| $k$ (constant)                  | $kx + c$                     |
-| $x^n$         | ${1 \over {n+1}}x^{n+1} + c$ |
-| $a \cdot {1 \over x}$ | $a \cdot \log_e x + c$ |
+| $k$ (constant) | $kx + c$ |
+| $x^n$ | ${1 \over {n+1}}x^{n+1} + c$ |
+| $a x^{-n}$ | $a \cdot \log_e x + c$ |
 | $e^{kx}$ | ${1 \over k} e^{kx} + c$ |
 | $e^k$ | $e^kx + c$ |
 | $\sin kx$ | $-{1 \over k} \cos (kx) + c$ |
@@ -202,5 +202,14 @@ $\int k f(x) dx = k \int f(x) dx$
 | ${f^\prime (x)} \over {f(x)}$ | $\log_e f(x) + c$ |
 | $g^\prime(x)\cdot f^\prime(g(x)$ | $f(g(x))$ (chain rule)|
 | $f(x) \cdot g(x)$ | $\int [f^\prime(x) \cdot g(x)] dx + \int [g^\prime(x) f(x)] dx$ |
+| ${1 \over {ax+b}}$ | ${1 \over a} \log_e (ax+b) + c$ |
+| $(ax+b)^n$ | ${1 \over {a(n+1)}}(ax+b)^{n-1} + c$ |
 
+## Applications of antidifferentiation
+
+- $x$-intercepts of $y=f(x)$ identify $x$-coordinates of stationary points on $y=F(x)$
+- the nature of any stationary point of $y=F(x)$ is determined by the way the sign of the graph of $y=f(x)$ changes about its $x$-intercepts
+- if $f(x)$ is a polynomial of degree $n$, then $F(x)$ has degree $n+1$
+
+To find stationary points of a function, substitute $x$ value of given point into derivative. Solve for ${dy \over dx}=0$. Integrate to find original function.