-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.txt
More file actions
1460 lines (795 loc) · 37.4 KB
/
structure.txt
File metadata and controls
1460 lines (795 loc) · 37.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
UNIT 4: Structured populations
----------------------------------------------------------------------
EXTRA
Found in 2026 and didn't have much time to deal; update as you go.
Go back and look at what's ON and OFF <LINE/SLIDE>, and reclassify
Clean up the logic here. Make sure you know what's in or out for the short version.
Clarify when you're talking about long-term and year-to-year lambda
* Should be done 2026, check
Replace some content about age distributions and so forth
----------------------------------------------------------------------
TSEC Introduction
Up until now we've tracked populations with a single state variable
(population size or population density)
POLL What assumption are we making?
ANS All individuals are similar enough to be counted as if they are the
same
ANS Always (continuous time)
ANS At census time (discrete time)
What are some organisms for which this seems like a good
approximation?
ANS Short-lived and/or don't grow much
ANS Dandelions, bacteria, insects
What are some organisms that don't work so well?
ANS Trees, people, codfish
----------------------------------------------------------------------
Structured populations
If we think age or size is important to understanding a population,
we might model it as an {\bf structured} population
Instead of just keeping track of the total number of individuals
in our population \ldots
Keeping track of how many individuals of each age
or size
or developmental stage
----------------------------------------------------------------------
TSS Example: biennial dandelions
Imagine a population of dandelions
Adults produce 80 seeds each year
1% of seeds survive to become adults
50% of first-year adults survive to reproduce again
Second-year adults never survive
Will this population increase or decrease through time?
----------------------------------------------------------------------
How to study this population
Choose a census time
Before reproduction or after
Since we have complete cycle information, either one should work
Figure out how to predict the population at the next census
----------------------------------------------------------------------
Census choices
BC
Before reproduction
All individuals are adults
We want to know how many adults we will see next year
After reproduction
Seeds, one-year-olds and two-year-olds
Two-year-olds have already produced their seeds; once these seeds
are counted, the two-year-olds can be ignored, since they will
not reproduce or survive again
NC
SIDEFIG webpix/dandy_field.jpg
SIDEFIG webpix/dandy_seeds.jpg
EC
----------------------------------------------------------------------
REPSLIDE Example: biennial dandelions
Imagine a population of dandelions
Adults produce 80 seeds each year
1% of seeds survive to become adults
50% of first-year adults survive to reproduce again
Second-year adults never survive
Will this population increase or decrease through time?
----------------------------------------------------------------------
What determines $\lambda$?
If we have 20 adults \emph{before} reproduction, how many do we expect to
see next time?
$\lambda = p + f$ is the total number of individuals per individual
after one time step
POLL What is $f$ in this example? | What is the fecundity in this example?
ANS 0.8
POLL What is $p$ in this example? | What is the survival probability in this example?
ANS 0.5 for 1-year-olds and 0 for 2-year-olds.
ANS It can change from year to year!
----------------------------------------------------------------------
Long-term growth
$\lambda$ changes when the population structure changes
Define $\bar\lambda$ as the long-term average rate of growth.
$N \approx N_0 \bar\lambda^T $
Can we calculate $\bar\lambda$ if $p$ is changing?
ANS We can't take an average over ages until we know the
population structure
ANS Not easy to find the population structure until we know $\bar\lambda$
\ldots
----------------------------------------------------------------------
What determines $\R$?
$\R$ is the average total number of offspring produced by an
individual over their lifespan
Can start at any stage, but need to close the loop
POLL What is the reproductive number?
ANS If you become an adult you produce (on average)
COMMENT Blackboard!
ANS 0.8 adults your first year
ANS 0.4 adults your second year
ANS $\R=1.2$
----------------------------------------------------------------------
What does \R\ tell us about $\bar\lambda$?
\R\ is easier to calculate than $\bar\lambda$
What is the connection?
ANS Population increases when $\R>1$, so $\bar\lambda>1$ exactly
when $\R>1$
If $\R=1.2$, then $\bar\lambda$
ANS $>1$ -- the population is increasing
ANS $<1.2$ -- the life cycle takes more than 1 time step, so it
take more than one time step for the population to increase 1.2 times
----------------------------------------------------------------------
TSS Modeling approach
BC
In this unit, we will construct \emph{simple} models of structured
populations
To explore how structure might affect population dynamics
To investigate how to interpret structured data
NC
SIDEFIG webpix/israelpop.png
EC
----------------------------------------------------------------------
Regulation
\emph{Simple} population models with regulation can have extremely
complicated dynamics
\emph{Structured} population models with regulation can have
insanely complicated dynamics
Here we will focus on understanding structured population models
\emph{without regulation}:
ANS Individuals behave independently, meaning…
ANS Average per capita rates do not depend on population size
----------------------------------------------------------------------
OFFSLIDE CSLIDE Complexity
ADD Better art!
FIG webpix/bifurcation.png
----------------------------------------------------------------------
Age-structured models
BC
The most common approach is to structure by age
In age-structured models we model how many individuals there are in
each ``age class''
Typically, we use age classes of one year
Example: salmon live in the ocean for roughly a fixed number of
years; if we know how old a salmon is, that strongly affects how
likely it is to reproduce
NC
SIDEFIG webpix/salmon.jpg
EC
----------------------------------------------------------------------
Stage-structured models
BC
In stage-structured models, we model how many individuals there are
in different stages
Ie., newborns, juveniles, adults
More flexible than an age-structured model
Example: forest trees may survive on very little light for a long
time before they have the opportunity to recruit to the sapling
stage
NC
SIDEFIG webpix/tongass.jpg
EC
----------------------------------------------------------------------
Discrete vs.\ continuous time in unstructured models
continuous-time models are structurally simpler (and smoother)
discrete-time models only need to assume everyone's the same sometimes
ANS At the census time
ANS More realistic
----------------------------------------------------------------------
DEFHEAD \ldots in structured models
We no longer assume everyone is the same (we keep track of age or size)
POLL So it should be mostly about reproduction | When might we prefer a continuous-time model?
ANS Populations with continuous reproduction (e.g. bacteria), may be
better suited to continuous-time models
ANS Populations with \textbf{synchronous} reproduction (e.g., moths) may
be better suited to discrete-time models
Continuous time with structure gives people headaches
So we won't do it here, only for the sake of simplicity (and time)
----------------------------------------------------------------------
TSEC Constructing a model
This section will focus on \textbf{linear, discrete-time,
age-structured} models
State variables: how many individuals of each age at any given time
Parameters: $p$ and $f$ \emph{for each age that we are modeling}
----------------------------------------------------------------------
When to count
We will choose a census time that is appropriate for our
study
Before reproduction, to have the fewest number of individuals
After reproduction, to have the most information about the
population processes
Some other time, for convenience in counting
ANS A time when individuals gather together
ANS A time when they are easy to find (insect pupae)
----------------------------------------------------------------------
The conceptual model
Once we choose a census time, we imagine we know the population for
each age $x$ after time step $T$.
We call these values $N_x(T)$
Now we want to calculate the expected number of individuals in each
age class at the next time step
We call these values $N_x(T+1)$
What are the parameters? | What do we need to know to calculate population
for next time?
ANS The survival probability of each age group: $p_x$
ANS The average fecundity of each age group: $f_x$
----------------------------------------------------------------------
Closing the loop
$f_x$ and $p_x$ must close the loop back to the census time, so we
can use them to simulate our model:
$f_x$ has units [new indiv (at census time)]/[age $x$ indiv
(at census time)]
$p_x$ has units [age $x+1$ indiv (at census time)]/[age $x$ indiv
(at census time)]
----------------------------------------------------------------------
The structured model
WIDEFIG my_images/structure_cc.png
----------------------------------------------------------------------
SS Model dynamics
----------------------------------------------------------------------
Short-term dynamics
This model's short-term dynamics will depend on parameters
\ldots
It is more likely to go up if fecundities and survival
probabilities are high
\ldots and starting conditions
If we start with mostly very old or very young individuals, it
might go down; with lots of reproductive adults it might go up
----------------------------------------------------------------------
Long-term dynamics
If a population follows a model like this, it will tend to reach
a \textbf{stable age distribution}:
the \emph{proportion} of individuals in each age class is
constant
a stable value of $\lambda_T$
ANS Multiplicative growth each step approaches a constant
if the proportions are constant, then we can average over
$f_x$ and $p_x$, and the system will behave like our simple
model
POLL What are the long-term dynamics of such a system?
ANS Exponential growth or exponential decline
SHORT Skipping calculations, but you can poke if curious
HREF http://tinyurl.com/DandelionModel2026 Spreadsheet link
ADD Update year
----------------------------------------------------------------------
EXTRA
http://tinyurl.com/Dandelions2023 Spreadsheet link
http://tinyurl.com/DandelionModel2024 Spreadsheet link
----------------------------------------------------------------------
ONSLIDE Exception
Populations with \textbf{independent cohorts} do not tend to reach a
stable age distribution
A \textbf{cohort} is a group that enters the population at the
same time
We say my cohort and your cohort interact if my children
might be in the same cohort as your children
or my grandchildren might be in the same cohort as your
great-grandchlidren
\ldots
As long as all cohorts interact (none are independent), then the
unregulated model leads to a stable age distribution (SAD)
----------------------------------------------------------------------
ONSLIDE Independent cohorts
Some populations might have independent cohorts:
If salmon reproduce \emph{exactly} every four years, then:
the 2015 cohort would have offspring in 2019, 2023, 2027,
2031, \ldots
the 2016 cohort would have offspring in 2020, 2024, 2028,
2032, \ldots
in theory, they could remain independent -- distribution would
not converge
Examples could include 17-year locusts, century plants, \ldots
----------------------------------------------------------------------
TSEC Life tables
People often study structured models using \textbf{life tables}
A life table is made \emph{from the perspective of a particular
census time}
It contains the information necessary to project to the next census:
How many survivors do we expect at the next census for each
individual we see at this census? ($p_x$ in our model)
How many offspring do we expect at the next census for each
individual we see at this census? ($f_x$ in our model)
----------------------------------------------------------------------
Cumulative survivorship
The first key to understanding how much each organism will
contribute to the population is {\bf survivorship}
In the field, we estimate the probability of survival from age $x$
to age $x+1$: $p_x$
This is the probability you will be \emph{counted} at age $x+1$,
given that you were \emph{counted} at age $x$.
To understand how individuals contribute to the population, we are
also interested in the overall probability that individuals survive
to age $x$: $\ell_x$.
ANS $\ell_x = p_1 \times \ldots p_{x-1}$
ANS $\ell_x$ measures the probability that an
individual survives to be counted at age $x$, given that it is
ever counted at all (ie., it survives to its first census)
----------------------------------------------------------------------
Calculating \R
We calculate \R\ by figuring out the estimated contribution at each
age group, \emph{per individual who was ever counted}
We figure out expected contribution given you were ever counted by
multiplying:
ANS $f_x \times \ell_x$
----------------------------------------------------------------------
SS Examples
----------------------------------------------------------------------
Dandelion example
CLASS FIG webpix/dandy_field.jpg
----------------------------------------------------------------------
REPSLIDE Example: biennial dandelions
Adults produce 80 seeds each
1% of seeds survive to become adults
50% of first-year adults survive to reproduce again
Second-year adults never survive
What does the life table look like?
----------------------------------------------------------------------
QSLIDE Dandelion life table
INPUT Life_tables/dandy.skeleton.tab.tex
----------------------------------------------------------------------
REPSLIDE Dandelion life table
INPUT Life_tables/dandy.empty.tab.tex
----------------------------------------------------------------------
ASLIDE Dandelion life table
INPUT Life_tables/dandy.tab.tex
----------------------------------------------------------------------
Dandelion dynamics
FIG structure/dandy.Rout-0.pdf
----------------------------------------------------------------------
PSLIDE Dandelion population dynamics
FIG structure/dandy.Rout-1.pdf
----------------------------------------------------------------------
PSLIDE Dandelion age dynamics
FIG structure/dandy.Rout-2.pdf
----------------------------------------------------------------------
Dandelion dynamics
DOUBLEFIG structure/dandy.Rout-1.pdf structure/dandy.Rout-2.pdf
----------------------------------------------------------------------
Squirrel example
CLASS FIG webpix/grey_squirrel.jpg
----------------------------------------------------------------------
QSLIDE Gray squirrel population example
INPUT Life_tables/sq.empty.tab.tex
----------------------------------------------------------------------
Squirrel observations
POLL Do you notice anything strange? | What is strange about the squirrel life table?
ANS Older age groups seem to be grouped for fecundity.
ANS Strange pattern in survivorship; do we really believe
nobody survives past the last year?
ANS Might be better to use a model where they keep track of first year,
second year, and ``adult" -- not much harder.
ANS This is what we call stage structure
----------------------------------------------------------------------
ASLIDE Gray squirrel population example
INPUT Life_tables/sq.tab.tex
----------------------------------------------------------------------
Gray squirrel dynamics
FIG structure/squirrels.Rout-0.pdf
----------------------------------------------------------------------
PSLIDE Gray squirrel population dynamics
FIG structure/squirrels.Rout-1.pdf
----------------------------------------------------------------------
PSLIDE Gray squirrel age dynamics
FIG structure/squirrels.Rout-2.pdf
----------------------------------------------------------------------
Gray squirrel dynamics
DOUBLEFIG structure/squirrels.Rout-2.pdf structure/squirrels.Rout-1.pdf
----------------------------------------------------------------------
REPSLIDE The structured model
WIDEFIG my_images/structure_cc.png
----------------------------------------------------------------------
ONSLIDE Salmon example
What happens when a population has independent cohorts?
Does not necessarily converge to a SAD
----------------------------------------------------------------------
ONCOMM QSLIDE Salmon example
INPUT Life_tables/salmon.empty.tab.tex
----------------------------------------------------------------------
ONCOMM ASLIDE Salmon example
INPUT Life_tables/salmon.tab.tex
----------------------------------------------------------------------
ONCOMM PSLIDE Salmon example
WIDEFIG webpix/salmon.jpg
----------------------------------------------------------------------
ONCOMM PSLIDE Salmon dynamics
FIG structure/salmon.Rout-0.pdf
----------------------------------------------------------------------
ONCOMM PSLIDE Salmon population dynamics
FIG structure/salmon.Rout-1.pdf
----------------------------------------------------------------------
ONCOMM PSLIDE Salmon age dynamics
FIG structure/salmon.Rout-2.pdf
----------------------------------------------------------------------
ONSLIDE Salmon dynamics
DOUBLEFIG structure/salmon.Rout-2.pdf structure/salmon.Rout-1.pdf
----------------------------------------------------------------------
SS Calculation details
----------------------------------------------------------------------
DEFHEAD $f_x$ vs.~$m_x$
Here we focus on $f_x$ -- the number of offspring seen at the
next census (next year) per organism of age $x$ seen at this census
An alternative perspective is $m_x$: the total number of offspring
per reproducing individual of age $x$
POLL How would I calculate one from the other?
ANS How did we calculate $f$ in the dandelion example?
ANS To get $f_x$ we multiply $m_x$ by one or more survival terms,
depending on when the census is
ANS $f_x$ needs to close the loop from one census to the next
----------------------------------------------------------------------
When do we start counting?
Is the first age class called 0, or 1?
In this course, we will start from age class 1
How many times have we seen you (not, how old are you)?
If we count right {\em after} reproduction, this means we are
calling newborns age class 1.
If we count right {\em before} reproduction
ANS Age class 1 is about one year old the first time we see them
----------------------------------------------------------------------
REPSLIDE Example: biennial dandelions
Adults produce 80 seeds each ($m_x$)
1% of seeds survive to become adults
50% of first-year adults survive to reproduce again
Second-year adults never survive
What does the life table look like?
----------------------------------------------------------------------
ASLIDE Dandelion life table
INPUT Life_tables/pre.tab.tex
----------------------------------------------------------------------
ASLIDE Counting \emph{after} reproduction
INPUT Life_tables/post.tab.tex
COMMENT There are two different approaches to the third age class: if we assume that we count the two-year old adults ($x=3$), we can write $p_2 = 0.5$; $f_3=0$, and get the same answer (with one extra row that has zero contribution).
----------------------------------------------------------------------
Calculating \R
The reproductive number \R\ gives the average lifetime reproduction
of an individual, and is a valuable summary of the information in
the life table
$\R = \sum_x{\ell_x f_x}$
If $\R>1$ in the long (or medium) term, the population will
increase
If $\R$ is persistently $<1$, the population is in trouble
We can ask (for example):
Which ages have a large \emph{contribution} to \R?
How does \R\ respond to changes in various $p_x$ and $f_x$?
----------------------------------------------------------------------
The effect of old individuals
Estimating the effects of old individuals on a population can be
difficult, because both $f$ and $\ell$ can be extreme
The contribution of an age class to $\R$ is $\ell_x f_x$
POLL Extreme how? | How are these values extreme?
ANS In most populations $\ell$ can be very small for large $x$
ANS In many populations, $f$ can be very large for large $x$
Reproductive potential of old individuals \emph{may} or \emph{may
not} be important
ANS In many tree populations, most individuals don't survive to get huge,
but the huge trees may have most of the total reproduction
ANS In many bird populations, old birds produce well, but not
enough to outweigh the low probability of surviving to get old.
----------------------------------------------------------------------
CSLIDE Old individuals
BC
SIDEFIG webpix/big_tree.jpg
NC
HIDEFIG webpix/stork.jpg
EC
----------------------------------------------------------------------
SS Measuring growth rates
----------------------------------------------------------------------
SHORTCOMMENT Calculating $\bar\lambda$
In a constant population, each age class replaces itself:
$\R = \sum_x \ell_x f_x = 1$
In an exponentially changing population, each year's {\bf cohort} is
a factor of $\bar\lambda$ bigger (or smaller) than the previous one
$\bar\lambda$ is the finite rate of increase, like before
Looking back in time, the cohort $x$ years ago is $\bar\lambda^{-x}$ as
large as the current one
The existing cohorts need to make the next one:
$\sum_x \ell_x f_x \bar\lambda^{-x} = 1$
----------------------------------------------------------------------
ONSLIDE The Euler equation
If the life table doesn't change, then $\bar\lambda$ is given by $\sum_x
\ell_x f_x \bar\lambda^{-x} = 1$
We basically ask, if the population has the structure we would
expect from growing at rate $\lambda$, would it continue to grow at
rate $\lambda$.
On the left-side each cohort started as $\lambda$ times smaller than the
one after it
Then got multiplied by $\ell_x$.
Under this assumption, is the next generation $\lambda$ times bigger
again?
Example from spreadsheet
----------------------------------------------------------------------
DEFHEAD $\bar\lambda$ and \R
If the life table doesn't change, then $\bar\lambda$ is given by $\sum_x
\ell_x f_x \bar\lambda^{-x} = 1$
What's the relationship between $\bar\lambda$ and \R?
When $\bar\lambda=1$, the left hand side is just \R.
If $\R>1$, the population more than replaces itself when
$\bar\lambda=1$. We must make $\bar\lambda>1$ to decrease LHS and
balance.
If $\R<1$, the population fails to replace itself when
$\bar\lambda=1$. We must make $\bar\lambda<1$ to increase LHS and
balance.
So \R\ and $\bar\lambda$ tell the same story about whether the population
is increasing
----------------------------------------------------------------------
Time scales
$\bar\lambda$ gives the number of individuals per individual \emph{every
year}
In the long term
$\R$ gives the number of individuals per individual \emph{over a
lifetime}
POLL What relationship do we expect for an annual population (life span = census interval)? | What relationship do we expect for an annual population? R>lam; R<lam; R=lam; R between lam and 1; lam between R and 1.
ANS $\R=\lambda$; each organism observed reproduces \R\ offspring
on average, all in one time step
POLL For a longer-lived population? | What relationship do we expect for a longer-lived population? R>lam; R<lam; R=lam; R between lam and 1; lam between R and 1.
ANS The \R\ offspring are produced slowly, so population changes
slowly
ANS $\bar\lambda$ should be closer to 1 than \R\ is.
ANS But on the same side (same answer about whether population
is growing)
----------------------------------------------------------------------
Studying population growth
$\bar\lambda$ and \R\ give related information about your population
\R\ is easier to calculate, and more generally useful
But $\bar\lambda$ gives the actual rate of growth
More useful in cases where we expect the life table to be
constant with exponential growth or decline for a long time
----------------------------------------------------------------------
Growth and decline
If we think a particular period of growth or decline is important,
we might want to study how factors affect $\bar\lambda$
Complicated, but well-developed, theory
In a growing population, what happens early in life is more
important to $\bar\lambda$ than to \R.
In a declining population, what happens late in life is more
important to $\bar\lambda$ than to \R.
POLL Which phase is likely to be more important to ecology and evolution?
ANS The two phases (growth and decline) will be roughly balanced
ANS Because otherwise the population would go to zero or infinity
----------------------------------------------------------------------
SEC Life-table patterns
----------------------------------------------------------------------
SS Survivorship
----------------------------------------------------------------------
Patterns of survivorship
POLL What sort of patterns do you expect to see in $p_x$? | What sort of patterns do you expect to see in survival probabilities?
ANS Younger individuals usually have lower survivorship
ANS Older individuals often have lower survivorship