[spec] start differential equations & verifying solutions
[notes.git] / spec / calculus.md
index b89eae68a78eddb15321a703067953204a1ade78..c6818d4a70fc710c8ac1f5a7ef5e08173d0b718e 100644 (file)
@@ -306,8 +306,13 @@ Use identities:
 
 ## Partial fractions
 
-On CAS: Action $\rightarrow$ Transformation $\rightarrow$ `expand/combine`
+On CAS: Action $\rightarrow$ Transformation $\rightarrow$ `expand/combine`  
+or Interactive $\rightarrow$ Transformation $\rightarrow$ `expand` $\rightarrow$ Partial
 
+## Graphing integrals on CAS
+
+In main: Interactive $\rightarrow$ Calculation $\rightarrow$ $\int$ ($\rightarrow$ Definite)  
+Restrictions: `Define f(x)=...` $\rightarrow$ `f(x)|x>1` (e.g.)
 
 ## Applications of antidifferentiation
 
@@ -317,6 +322,39 @@ On CAS: Action $\rightarrow$ Transformation $\rightarrow$ `expand/combine`
 
 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.
 
+## Solids of revolution
+
+Approximate as sum of infinitesimally-thick cylinders
+
+### Rotation about $x$-axis
+
+\begin{align*}
+  V &= \int^{x=b}_{x-a} \pi y^2 \> dx \\
+    &= \pi \int^b_a (f(x))^2 \> dx
+\end{align*}
+
+### Rotation about $y$-axis
+
+\begin{align*}
+  V &= \int^{y=b}_{y=a} \pi x^2 \> dy \\
+    &= \pi \int^b_a (f(y))^2 \> dy
+\end{align*}
+
+### Regions not bound by $y=0$
+
+$$V = \pi \int^b_a f(x)^2 - g(x)^2 \> dx$$  
+where $f(x) > g(x)$
+
+## Length of a curve
+
+$$L = \int^b_a \sqrt{1 + ({dy \over dx})^2} \> dx$$
+
+Evaluate on CAS. Or use Interactive $\rightarrow$ Calculation $\rightarrow$ Line $\rightarrow$ `arcLen`.
+
+### Parametric curve
+
+$$l = \int^b_a \sqrt{({dx \over dt})^2 + ({dy \over dt})^2} \> dt$$
+
 ## Rates
 
 ### Related rates
@@ -346,3 +384,15 @@ If $f$ is continuous on $[a, b]$, then
 $$\int^b_a f(x) \> dx = F(b) - F(a)$$
 
 where $F$ is any antiderivative of $f$
+
+## Differential equations
+
+One or more derivatives
+
+**Order** - highest power inside derivative  
+**Degree** - highest power of highest derivative  
+e.g. ${\left(dy^2 \over d^2 x\right)}^3$: order 2, degree 3
+
+### Verifying solutions
+
+Start with $y=\dots$, and differentiate. Substitute into original equation.