logarithmic derivatives
authorAndrew Lorimer <andrew@lorimer.id.au>
Sat, 18 Aug 2018 06:55:14 +0000 (16:55 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Sat, 18 Aug 2018 06:55:14 +0000 (16:55 +1000)
1  2 
spec/calculus.md
index 1f3d404a908eb59d373868cb5710f97b5ac51fe3,19f97b5aba2cf5b39bcd3ac26dba6f801a4bdc49..2b68bf5692bec02045cdccc1b1d81146c69ecd72
@@@ -130,25 -130,16 +130,37 @@@ If $f(x)={u(x) \over v(x)}$, then $f^\p
  
  If $y={u(x) \over v(x)}$, then derivative ${dy \over dx} = {{v{du \over dx} - u{dv \over dx}} \over v^2}$
  
 +## Logarithms
 +
 +$$\log_b (x) = n \quad \operatorname{where} \hspace{0.5em} b^n=x$$
 +
 +Wikipedia:
 +
 +> the logarithm of a given number $x$ is the exponent to which another fixed number, the base $b$, must be raised, to produce that number $x$
 +
 +### Logarithmic identities  
 +$\log_b (xy)=\log_b x + \log_b y$  
 +$\log_b x^n = n \log_b x$  
 +$\log_b y^{x^n} = x^n \log_b y$
 +
 +### $e$ as a logarithm
 +
 +$$\log_e e = 1$$
 +$$\ln x = \log_e x$$
 +
 +### Differentiating logarithms
 +$${d \over dx} \log_b x = {1 \over x \ln b}$$
 +
+ ## Solving $e^x$
+ | $f(x)$ | $f^\prime(x)$ |
+ | ------ | ------------- |
+ | $\sin x$ | $\cos x$ |
+ | $\sin ax$ | $a\cos ax$ |
+ | $\cos x$ | $-\sin x$ |
+ | $\cos ax$ | $-a \sin ax$ |
+ | $e^x$ | $e^x$ |
+ | $e^{ax}$ | $ae^{ax}$ |
+ | $\log_e x$ | $1 \over x$ |
+ | $\log_e {ax}$ | $1 \over x$ |