5.2. Elasticities#

\[\varepsilon^v_x = \frac{\partial v}{\partial x} \frac{x}{v}\]

Here is some inline math \(\psi(r) = \exp(-2r)\)

Here is some inline math \(\psi(r) = \exp(-2r)\)

Display math

\[\psi(r) = e^{-2r}\]

A more complex version:

(1)#\[(\mathcal{F}f)(y) = \frac{1}{\sqrt{2\pi}^{\ n}} \int_{\mathbb{R}^n} f(x)\, e^{-\mathrm{i} y \cdot x} \,\mathrm{d} x.\]

Figure made with TikZ

Code

a = [1,2,3]
b = [4,5,6]
print ('Printing a list: ', a + b)

Results

Printing a list:  [1, 2, 3, 4, 5, 6]
This will hide the Code and Results text - and foo is 32

Running a simulation

import tellurium as te
r = te.loada ('''A -> B; k1*A; k1=0.1; A = 10''')
m = r.simulate (0, 40, 100)
r.plot()

(Source code, png, hires.png, pdf)

../_images/elasticities-1.png