update methods / physics / spec notes
authorAndrew Lorimer <andrew@lorimer.id.au>
Tue, 21 Aug 2018 23:27:23 +0000 (09:27 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Tue, 21 Aug 2018 23:27:23 +0000 (09:27 +1000)
methods/calculus.md
physics/light-matter.md
spec/calculus.md
index 8cb35215e73c998d11398ef33a8a1502f916203c..fb3761fef5a7f5d388d3a3c9322bb385104516c3 100644 (file)
@@ -72,3 +72,8 @@ Normal line for point $P(q,r)$ on function $f$ is $y=mx+c$ where $m={-1 \over m_
 
 **In main**: type function. Interactive -> Calculation -> Line -> (Normal | Tan line)  
 **In graph**: define function. Analysis -> Sketch -> (Normal | Tan line). Type $x$ value to solve for a point. Return to show equation for line.
+
+## Stationary points
+
+Stationary where $m=0$.  
+Find derivative, solve for ${dy \over dx} = 0$
index fd6828c6bc95b82b3f5b31a85e4967b32f3caf57..a44f583e777e725cad8152aab71389f76dc5413d 100644 (file)
@@ -32,11 +32,13 @@ $$ 1 \operatorname{eV} = 1.6 \times 10^{-19} \operatorname{J}$$
 
 #### Wave / particle (quantum) models
 wave model:  
+
 - cannot explain photoelectric effect
 - $f$ is irrelevant to photocurrent
 - predicts that there should be a delay between incidence of radiation and ejection of e-
 
 particle model:  
+
 - explains photoelectric effect
 - rate of photoelectron release is proportional to intensity of incident light
 - shining light on a metal "bombards" it with photons
@@ -117,6 +119,34 @@ Particle model allows potential for photons to interact as they pass through sli
 
 ## Quantum mechanics
 
+- uncertainty occurs in any measurement
+- inherent physical limit to absolute accuracy of measurements (result of wave-particle duality)
+- interaction between observer and object
+- measuring location of an e- requires hitting it with a photon, but this causes $\rho$ to be transferred to electron, moving it
+
+### Indeterminancy principle
+
+$$\sigma E \sigma t \ge {h \over 4 \pi}$$
+
+where $\sigma n$ is the uncertainty of $n$
+
+**$\sigma E$ and $\sigma t$ are inversely proportional$**
+
+Therefore, position and velocity cannot simultaneously be known with 100% certainty.
+
+### Single-slit diffraction
+
+- one photon passes through slit at any time (controlled by intensity)
+- diffraction pattern can be explained by wave front split into wavelets
+- diffraction can be represented as uncertainty of photonic momentum
+
+
+### Comparison with Bohr's model
+
+**Newtonian (deterministic) model** - current $x$ and $v$ are known, so future $x$ can be calculated
+
+**Quantum mechanical model** - electron clouds rather than discrete shells (electrons are not particlces). We can only calculate probability of an electron being observed at a particular position
+
 
 
 774 abc melbourne
\ No newline at end of file
index 3823f37d7dbfc72d5eb0596b20a963276bb03c39..a5f334613a2fe6d076de9f5d18dd4c72209cf649 100644 (file)
@@ -95,11 +95,8 @@ $$\lim_{h \rightarrow 0} {{e^h-1} \over h}=1$$
 
 ## Chain rule for $(f\circ g)$
 
-$$(f \circ g)^\prime = (f^\prime \circ g) \cdot g^\prime$$
-
-Leibniz notation:
-
 $${dy \over dx} = {dy \over du} \cdot {du \over dx}$$
+$${d((ax+b)^n) \over dx} = {d(ax+b) \over dx} \cdot n \cdot (ax+b)^{n-1}$$
 
 Function notation:
 
@@ -143,17 +140,22 @@ $\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$
 
+### Index identities
+$b^{m+n}=b^m \cdot b^n$  
+$(b^m)^n=b^{m \cdot n}$  
+$(b \cdot c)^n = b^n \cdot c^n$  
+
 ### $e$ as a logarithm
 
 $$\operatorname{if} y=e^x, \quad \operatorname{then} x=\log_e y$$
 $$\ln x = \log_e x$$
 
 ### Differentiating logarithms
-$${d(\log_e x)\over dx} = x^-1 = {1 \over x}$$
+$${d(\log_e x)\over dx} = x^{-1} = {1 \over x}$$
 
-## Solving $e^x$
+## Solving $e^x$ etc
 
-| $f(x)$ | $f^\prime(x)$ |
+| $f(x)$ | $f^\prime(x)$ |xs
 | ------ | ------------- |
 | $\sin x$ | $\cos x$ |
 | $\sin ax$ | $a\cos ax$ |
@@ -161,6 +163,11 @@ $${d(\log_e x)\over dx} = x^-1 = {1 \over x}$$
 | $\cos ax$ | $-a \sin ax$ |
 | $e^x$ | $e^x$ |
 | $e^{ax}$ | $ae^{ax}$ |
+| $ax^{nx}$ | $an \cdot e^{nx}$ |
 | $\log_e x$ | $1 \over x$ |
 | $\log_e {ax}$ | $1 \over x$ |
+| $\log_e f(x)$ | $f^\prime (x) \over f(x)$ |
+| $\sin(f(x))$ | $f^\prime(x) \cdot \cos(f(x))$ |
+
+<!-- $${d(ax^{nx}) \over dx} = an \cdot e^nx$$ -->