Lecture 14: The Long Term Carbon Cycle¶

  1. The temperature of the Earth
  2. A faint young Sun
  3. The necessity of a negative feedback
  4. The (long-term) Carbon cycle
  5. Finite-difference solutions to differential equations
We acknowledge and respect the lək̓ʷəŋən peoples on whose traditional territory the university stands and the Songhees, Esquimalt and W̱SÁNEĆ peoples whose historical relationships with the land continue to this day.

What sets the temperature of the Earth?

No description has been provided for this image
No description has been provided for this image No description has been provided for this image

Calculating the 'emission' temperature of Earth

No description has been provided for this image
No description has been provided for this image
No description has been provided for this image

A faint young Sun and possible solutions

No description has been provided for this image
No description has been provided for this image

The silicate weathering feedback

No description has been provided for this image

Feedbacks

No description has been provided for this image

The long term carbon cycle (conceptual)

No description has been provided for this image

The long term carbon cycle (a model)

No description has been provided for this image

How does climate change?

No description has been provided for this image

The Derivative Function¶

Recall: what is the definition of the derivative function $f'(x)$?

$$ \begin{equation} f'(x) = \lim_{\Delta x\to0} \dfrac{f(x+\Delta x)-f(x)}{\Delta x} \end{equation} = \dfrac{\Delta f}{\Delta x} $$

While we can't calculate $\Delta x$ and $\Delta f$ for $\lim{(\Delta x\to0)}$ CPUs have no trouble calculating $\dfrac{\Delta f}{\Delta x}$ for a sufficiently small value of $\Delta x$

Finite difference methods¶

In fact, we have many possible approaches to estimating derivatives using sufficiently small values of $\Delta x$, and these methods are collectively known as finite difference methods. These methods make use of Taylor's theorem:

$\begin{equation} f(x + \Delta x) = f(x) + \dfrac{f'(x)}{1!}(\Delta x) + \dfrac{f''(x)}{2!}(\Delta x)^2 + ... \end{equation} \label{eq:taylor}\tag{Taylor series} $

What happens to the size of each higher order term in the series?

We describe the error of an approximation by the degree of the term where the series is truncated. First order: $O(\Delta x)$, second order: $O(\Delta x^2)$, third order: $O(\Delta x^3)$, etc...

$$ \begin{equation} f(x + \Delta x) \color{red}{\approx} f(x) + \dfrac{f'(x)}{1!}(\Delta x) \color{Gray}{+ \dfrac{f''(x)}{2!}(\Delta x)^2 + ...} \end{equation} $$

We can use small $\Delta x$ and a first order truncation of the Taylor series to estimate $f(x + \Delta x)$