I can start this off. Then we can go around the room, thinking about
Go through the course website and make sure everyone has easy access and is clear on how to get the lecture notes, readings, and homeworks.
Ecology: study of species interactions
Theory: Body of evidence linking a general explanation to a commonly observed phenomenon
Theoretical ecology attempts to explain patterns observed in nature through generalized models
Statistical model: A model exploring the statistical relationships between a response and some set of predictor variables.
can be completely independent of theory
can be focused on prediction or variable importance
requires data
e.g., linear regression
data(iris)
mod <- glm(iris$Sepal.Length ~ iris$Sepal.Width)
plot(iris$Sepal.Length ~ iris$Sepal.Width,
col=1:3[as.numeric(iris$Species)])
abline(mod)
Phenomenological model: A model describing some phenomenon, often independent of any data.
an idea of how a system behaves given assumptions
incorporates theoretical expectations
incredibly useful when fit or compared to empirical data (where’s the disconnect?)
e.g., exponential growth
\[ N_{t+1} = N_t \lambda \]
expoGrowth <- function(n, lambda=1.25, times=100){
nt <- c(n)
for(i in 1:times){
nt[i+1] <- nt[i] * lambda
}
return(nt)
}
plot(expoGrowth(10), type='l', ylab='Population size',
xlab='Time', lwd=2)
lines(expoGrowth(10, lambda=2), col='dodgerblue', lwd=2)
This course will focus pretty much entirely on phenomenological models (as I have defined them)
Also, evolutionary models do not really get emphasized in this book, but this could be good fodder for your paper summaries or final projects if you are interested
Observation: some set of ecological processes is causing this population to cycle
Conclusion: this population is cycling
Theory: which of the cycle-generating processes could cause cycles?
Generation of novel question: can models create cycles under processes with different ‘strengths’?
Population model: Ricker model to explore population dynamics and the role of demographic/environmental stochasticity
Experiment: fit models to experimental data and find demographic stochasticity important in controlled laboratory experiments
Observation: fit models to empirical time series to explore the relative importance of demographic and environmental stochasticity in natural systems
https://www.cell.com/trends/ecology-evolution/fulltext/S0169-5347(19)30171-5
‘To do science is to search for repeated patterns… The best person to do this [in ecology] is the naturalist who loves to note changes in bird life up a mountainside, or changes in plant life from mainland to island, or changes in butterflies from temperate to tropics’ - Robert MacArthur
note: I 100% disagree with the assertion that there is a ‘best’ type of ecologist, and that the ‘best’ type would be a naturalist
https://esajournals.onlinelibrary.wiley.com/doi/10.1890/14-1848.1
Where did Diamond go wrong?
There is an inherent feedback in developing some conceptual theory based on observations, and then testing this theory in different locations or in experimental trials.
https://www.cell.com/trends/ecology-evolution/fulltext/S0169-5347(19)30171-5
https://royalsocietypublishing.org/doi/10.1098/rsfs.2012.0008
https://www.journals.uchicago.edu/doi/pdfplus/10.1086/717206
Codling and Dumbrell. 2012. Mathematical and theoretical ecology:linking models with ecological processes. Interface doi:10.1098/rsfs.2012.0008
Note:
This is an introduction to a special issue organized around ‘Mathematical and theoretical ecology’, so it spends some time trying to tie the papers into a cohesive picture. This is useful for this course, as it gives you an idea of types of theoretical articles.
Additional article some folks might find interesting: Lawton discussing ‘patterns’ back in 1996, muddying some waters while also having some pretty fair points in other places.
“Without ecological theory, collecting data is a futile and meaningless endeavour. Likewise, producing elegantand beautiful mathematical models of ecological systems without validation against real data is an empty achievement”.
Broadly speaking, ecological models can be split into two separate categories; simplistic mathematical models, which offer analytically tractable solutions and the examination of the underlying model properties, and more complex simulation-based models (cannot be solved analytically)
Ecological systems are very different from physical and chemical systems, notably containing more uncertainty and chaotic dynamics, and are often influenced by stochastic processes.
To what extent can models incorporate either/or of these processes, allowing theory to easily bridge this data-model divide the authors try to emphasize?
After all, without theory providing testable hypotheses, ecology could become nothing more than data collection for its own sake