Simulation of the Coevolution of Insects and Flowers

Size: px
Start display at page:

Download "Simulation of the Coevolution of Insects and Flowers"

Transcription

1 Simulation of the Coevolution of Insects and Flowers Alexander Bisler Fraunhofer Institute for Computer Graphics, Darmstadt, Germany Abstract. Flowers need insects for their pollination and insects rely on the nectar and the pollen as a food resource. But instead of visiting all flowers, the insects limit their visits to a small number. This paper presents a simulation of the behavior of the insects which results in a specialized perception of blossom colors and fragrances by the insects. A coevolution can be observed only based on simple interactions modified over generations by a genetic algorithm. The results show a mutual benefit expressed in more rewards for the insects and more efficient pollination of the flowers. 1 Introduction Pollination is an important step in the reproduction of seed plants. The process of pollination requires pollinators as agents that carry or move the pollen grains from the anther to the receptive part of the carpel [1 3]. In order to be pollinated flowers developed different ways. A few flowers are able to self-pollinate (autogamy). Others rely upon water (hydrophily) or wind pollination (anemophily) which is only useful in situations where large populations of a very limited number of species are present. Most flowers are pollinated by animals; for example insects (entomophily), birds or bats (zoophily). In order to attract animals the flowers use visual and olfactory cues. Some species use color patterns to stand out against a background of green foliage. The colors used are adapted to the sensors of the animals. Showy petals or sepals with obvious shape, size, and color for the animal s visual sensor are important. Flowers have also evolved a wide array of odors to assist in attracting animals. After the pollinator landed on the blossom, a means of putting pollen onto the pollinator had to be developed, so that the pollen would be transferred effectively to the next flower visited. The animal s reward for its visit is usually nectar or pollen. During the evolution, certain flower species have specialized to attract only specific pollinators. On the other hand, certain insect species have specialized to collect nectar and pollen only from specific flowers. At some point certain species became totally dependent on others and vice versa. This paper reports on the results of a simulation which explains how this coevolution takes place, to show the benefit for both flowers and insects, and

2 to demonstrate that this mutual evolutionary influence is based only on selforganization. Only insect pollination will be considered for this paper. 2 Computational Model Self-Organization can be found in many complex systems [4] which include biological systems [5]. Computer simulations are used to understand the collective behavior of (artificial) societies [6]. After a model has been established, it can be used to examine the significance of each single parameter and therefore provide some insight. In order to model this example of self-organization in living systems insects and flowers are modeled as agents. While the flowers remain immobile on a meadow, the insects show a typical behavior by flying around searching for flowers to collect nectar. A genetic algorithm is used to make an adaptation of the attributes of insects and flowers possible [7,8]. The attributes of insects and flowers are encoded in genomes. As each species can only use their own genotypes for the production of offspring, each species will run its own genetic algorithm. This implies that there is no competition between flower species or between insect species, since the population size of each genetic algorithm remains unmodified. The modification of the population sizes remains to be solved in future versions. In the following two subsections the genetic information is presented which is used to describe the genotypes of flowers and insects. Additionally, the construction of their phenotypes is explained. Since the genetic algorithm runs offline, an explicit graphical modeling of the agents was not necessary. A visualization has been implemented only for debugging and representational purposes. 2.1 Modeling Flowers Prusinkiewicz and Lindenmayer wrote a standard book on the modeling of plants [9]. The stem of a flower is not explicitly modeled as only the blossom is crucial for the insect s awareness. A manually created model has been used for graphical representations. The blossom is composed of petals which are circularly arranged. Other shapes are not supported. Lu et al. proposed a construction of petals based on Bezier patches with 16 control points [10]. For our purposes, an alpha texture of a petal is mapped on a quad strip which is bent along a Bezier curve. The internal organs of the blossom are not modeled. Genotype of a Flower The genome contains the following information: size of the blossom which is defined by a bounding box number of petals color of petals

3 shape of petals control points of the Bezier curve along which a petal is bent fragrance The colors are encoded in the HSV system 1 which provides a better interpolation between colors than the RGB system. This is, of course, a simplification. The visual sensors of insects are also known to use different bands of the spectrum where flowers can be detected more easily. For example bee vision does not include red, but extends into the ultraviolet. This simplification can be justified to show the principles, rather than the details, of this coevolution. The shape of a petal is given by a limited number of prepared alpha textures. The way, the quad strip is bent, is controlled by two Bezier curves which are defined by seven control points 2. The number of fragrances is limited to 10 types. They are circularly organized like the hue value in the HSV system to avoid border effects while mutating the value. Phenotype of a Flower The alpha textures are gray-scaled bitmaps. Thus, they can be easily modulated by the flower s color. A variation of blossoms is shown in Fig. 1. Fig.1. Variety of blossoms. 2.2 Modeling Insects The body of an insect is not explicitly modeled. The simulation focuses more on the insect s behavior. The size of an insect is not modifiable. Only a radius is used to approximate the insect s body size. The radius is constant for all insects of the same species 1 Hue Saturation Value 2 They share one.

4 but varies between species. The simulation is meant to model only the adaptation of the insects sensors and behavior and not their body shape or size. The radius of the visual sensor and the capability of the olfactory sensor to smell flowers in a specific distance are also constant. Genotype of an Insect The genome contains the following information: favorite blossom color favorite fragrance consistency The consistency value is a parameter of the behavior routines as the other two values are. It decides whether an insect after it decided to fly towards a specific flower changes its decision again. The higher the value the less likely a new flower is chosen. Phenotype of an Insect The phenotype consists of an autonomous agent which flies over a meadow full of flowers and shows a behavior which depends on the genetically encoded parameters. The radius of the body is used to test whether the insect can crawl into a blossom to collect nectar. Since the behavioral model of the insects represents the most interesting part of the simulation, it is described in its own section (see section 3). 2.3 Fitness Functions Each flower is given a fitness value according to the number of successful pollinations. For the insects the number of visits, during which nectar could be collected, is used as the fitness value. 2.4 Mutation Basically, a mutation of a specific parameter is done by adding a positive or negative offset. If a hue value of the HSV colors or a fragrance value leaves the defined range, they are corrected by a modulo operation. The offset for fragrances is limited to±1. Some constraints are applied when mutating the control points of the two Bezier curves which define the bending of a petal. They ensure that the mutation would only result in curve types which are acceptable as outlines of blossoms. The Bezier curves are also restricted by the bounding box which defines the overall size of a blossom. The larger a flower grows the more its visibility improves. But in order to stop infinite growth, a limit is set which can be interpreted as a maximal stability. If this limit were passed, the stem could no longer hold the blossom due to its heavy weight.

5 3 Insect Behavior The insect s behavior is modeled with a simple finite state machine. The main states are: searching, flying towards a flower, and landing & collecting nectar. The insect starts in the state searching. It flies over the meadow. If one or more flowers come within the range of its sensors, it can decide whether or not to fly towards one of these flowers. The radius of the olfactory sensor is always larger than that of the visual sensor. First the insect tries to find a flower which matches its favorite color and/or fragrance. Other flowers are more likely ignored. The favorite color expresses the part of the color spectrum which can be perceived better than other parts. This also applies to the fragrance. 3 The longer an insect searches for a specific type of flower the more likely it decides to fly towards other types. Additionally, the closer a flower is to the insect s position the more likely it is chosen. Fig.2. Visibility of different colors. 3.1 Perception of Flowers How well a flower is perceived by an insect depends on the flower s size, the area covered by all petals, its distance to the insect, its color, and its fragrance. 3 Putting the perception this way was easier than modeling a complex, physically correct sensor.

6 The area covered by all petals is calculated using an overhead camera view of the blossom. Then the ratio is calculated of pixels belonging to the blossom (with a color differing from the background) to all pixels of the maximal area which is a circle around the center of the blossom (shown in Fig. 1). The visibility of the color is determined by calculating the distance to green. Since green blossoms would not stand out against the background of green foliage, they receive the worst value. The greater the difference of the color s hue value to that of green, the better the visibility. All colors are rated the same, as shown in Fig. 2, relative to a specific limit. If the flower s fragrance matches the insect s favorite, it is better perceived than other flowers in that vicinity. Otherwise the distance of the fragrance value to the value of the favorite fragrance is calculated and weighted. 3.2 Pollination After reaching a flower, the insect lands on it and tries to crawl into the blossom. Depending on the shape of the blossom this might not be possible. If the petals form a closed calyx, the radius of the insect s body is tested against the inner radius (Fig. 3). If the insect is too big, it has to leave without any reward. Fig.3. Inner radius of a calyx. Pollen is attached to the insect when it successfully collects its reward. If one of the next visited flowers is of the same species it is successfully pollinated. The amount of pollen an insect can carry is limited and, after several visits, older pollen is shaken off. 3.3 Reinforcement Learning Some insects use a simple reinforcement mechanism to achieve better results and to be able to adapt to what kind of blossoms are actually available in their vicinity (see for example [11]). For this purpose, a simple memory has been implemented which associates colors and fragrances with a success value. This value is increased each time the insect gains a reward for visiting a flower and decreases otherwise. This success value influences the flower preference. The

7 capacity of the memory is limited to distinguish 10 types of fragrances and also 10 types of colors 4. 4 Implementation The program used the GAlib for the genetic algorithms [12]. Each species runs its own genetic algorithm. The algorithms of the flowers have to be divided into two steps which frame the algorithms of the insect species. For example after constructing all flower populations, their phenotypes are randomly placed on a meadow (a central data structure). Then, for each insect population, each insect flies over the meadow; starting from a random location. After a specific number of simulation steps, the number of successful collections of nectar is used as the insect s fitness value. But the successful pollination of the flowers still have to be added together. After the last insect has been handled, the flowers on the meadow contain the necessary data for their fitness value. 5 Test Scenarios Several test scenarios have been evaluated. After finding a parameter set for which the simulation resulted in a specialization of flowers and insects, single parameters were modified to see their influence on the system. There were 4 flower species and 4 insect species. The genetic algorithms ran over 50 generations. The population size for each species was set to 50. The probability of mutation was set to 30% and the probability of crossover to 90%. The offsets used by the mutations had to be limited, otherwise the system did not converge. Fig.4. These diagrams show for each flower species (differently shaded bars) the percentage of pollination by each insect species. 4 All possible colors are reduced to 10 types.

8 6 Results The simulation s output consisted of huge amounts of data for which many diagrams had to be displayed. Here, only the most interesting diagrams are shown to describe the results 5. Fig.5. These diagrams show for each insect species (differently shaded bars) the percentage of rewarded visits on each flower species. Instead of starting with one specific blossom color per flower species, they were randomly distributed. The same applied for the flower s fragrances and for the insect s favorite colors and fragrances. As a result, not all flowers of a certain species had the same blossom color, but the variety decreased over time and was very limited at the conclusion. This can be explained with a feedback loop: flowers which happened to be chosen more often in the beginning received a higher fitness value and therefore had a greater chance to produce offspring. On the other hand, insects with the corresponding favorite color or fragrance could find these flowers more often and receive more rewards. In Fig. 4, the distribution of visits (in percentage) from each insect species is shown for each flower species. Flower species 1 (black bars) started with a quite even distribution and ended with a distribution which favored insect species 1, 3, and 4, while 2 contributed only 13%. Flower species 2 (gray bars) was mostly visited by insect species 1 right from the beginning and specialized even more. Finally, its pollination depended over 90% on insect species 1. Flower species 3 (bars with horizontal stripes) specialized in insect species 2 followed by 3 and 4 and flower species 4 (bars with diagonal stripes) specialized more in insect species 3 followed by 2 and 4. The corresponding specialization can also be observed for the insects (Fig. 5) where species 1 (black bars) specialized in flower species 2, and 2 (bars with 5 In all diagrams the y-axis is a percentage ranging from 0 to 1. I.e. the value 1 corresponds to 100%.

9 Fig.6. Percentage of rewarded visits for each insect species. horizontal stripes) in 3 and 4. Insect species 3 (bars with diagonal stripes) favored flower species 4 closely followed by 1 and 3, while 4 (gray bars) favored 1 followed by 4 and 3. The number of visits successful plus unsuccessful ones was quite constant while the ratio of successful visits rose (Fig. 6). The number of successful pollinations through the insects also rose (Fig. 7). This might be the most important result. The specialization process leads to an increased productivity for the insects (more rewards per visits) and to an increased efficiency of pollination which is a benefit for the flowers. 7 Conclusion and Future Work The simulation of the coevolution of colors and fragrances used by flowers and the colors and fragrances best perceived by insects could be based on a simple behavioral model for the insects. Driven by reinforcing feedback loops, the system moved to specialization due to its mutual benefits for insects and flowers. In future versions, the competition between species could be introduced by calculating an average fitness value for each species which can be compared to others. According to the order of these fitness values, the population sizes could be adjusted. But then flower populations should start with a limited set of genomes to distinguish them at the beginning. Since this scenario can lead to the extinction of entire populations, the system should be open so that new species can be established. The implementation of a more physically based simulation of the insect s visual and olfactory sensors might lead to other interesting results. However, it is not considered to be of sufficient importance to further demonstrate the principles of coevolution for this paper. Further research regarding the influence of insects which only take the reward and do not contribute to the pollination process would be beneficial.

10 Fig.7. Percentage of pollinations done by each insect species. 8 Acknowledgment I wish to thank Tobias Saul for the implementation of the simulation in the context of his Master thesis. References 1. E. Strasburger, P. Sitte, and H. Ziegler, Lehrbuch der Botanik fuer Hochschulen. Spektrum Akad. Verlag, S. L. Buchmann and G. P. Nabhan, The Forgotten Pollinators. Island Press, R. E. Koning, Pollination adaptations, 1994, ( ). 4. S. A. Kauffman, Origins of Order: Self-Organization and Selection in Evolution. Oxford: Oxford University Press, C. Camazine, J. Deneubourg, N. Franks, J. Sneyd, G. Theraulaz, and E. Bonabeau, Self-Organization in Biological Systems. Princetown University Press, G. N. Gilbert and K. G. Troitzsch, Simulation for the Social Scientist. Taylor & Francis, Inc., J. H. Holland, Adaptation in Natural and Artificial Systems. Ann Arbor: University of Michigan Press, D. E. Goldberg, Genetic Algorithms in Search, Optimization and Machine Learning. Addison-Wesley Longman Publishing Co., Inc., P. Prusinkiewicz and A. Lindenmayer, The Algorithmic Beauty of Plants. Springer-Verlag New York, Inc., Z. Lu, C. Willis, and D. Paddon, Perceptually realistic flower generation, in Proceedings of the 8th International Conference in Central Europe on Computer Graphics, Visualization and Interactive Digital Media 2000, A. Balkenius, A. Kelber, and C. Balkenius, Simulations of learning and behaviour in the hawkmoth deilephila elpenor, in ICSAB: Proceedings of the seventh international conference on simulation of adaptive behavior in From animals to animats. Cambridge, MA, USA: MIT Press, 2002, pp M. Wall, GAlib: A C++ library of genetic algorithm components, 1996.

Chapter 24-Flowering Plant and Animal Coevolution

Chapter 24-Flowering Plant and Animal Coevolution Chapter 24-Flowering Plant and Animal Coevolution coevolutionary plant-animal associations alliances that have influenced the evoluton of both partners. These examples show that plants have acquired traits

More information

FLOWERS AND POLLINATION. This activity introduces the relationship between flower structures and pollination.

FLOWERS AND POLLINATION. This activity introduces the relationship between flower structures and pollination. FLOWERS AND POLLINATION This activity introduces the relationship between flower structures and pollination. Objectives for Exam #1 1. Identify flower structures and match those structures to specific

More information

Mutualism: Inter-specific relationship from which both species benefit

Mutualism: Inter-specific relationship from which both species benefit Mutualism Mutualism: Inter-specific relationship from which both species benefit Mutualism Symbiosis: Intimate (generally obligate) inter-specific relationships from which both partners benefit 1 Mutualism

More information

Mutualism. Mutualism. Mutualism. Early plants were probably wind pollinated and insects were predators feeding on spores, pollen or ovules

Mutualism. Mutualism. Mutualism. Early plants were probably wind pollinated and insects were predators feeding on spores, pollen or ovules Mutualism Mutualism: Inter-specific relationship from which both species benefit Mutualism Symbiosis: Intimate (generally obligate) inter-specific relationships from which both partners benefit Mutualism

More information

BIOL 305L Spring 2018 Laboratory Seven

BIOL 305L Spring 2018 Laboratory Seven Please print Full name clearly: BIOL 305L Spring 2018 Laboratory Seven Flowering and reproduction Introduction Flowers are not simple structures, and the diversity of flower shape, color, and fragrance

More information

Honey, It's Electric: Bees Sense Charge On Flowers

Honey, It's Electric: Bees Sense Charge On Flowers Honey, It's Electric: Bees Sense Charge On Flowers Flowers are nature's ad men. They'll do anything to attract the attention of the pollinators that help them reproduce. That means spending precious energy

More information

Plant hormones: a. produced in many parts of the plant b. have many functions

Plant hormones: a. produced in many parts of the plant b. have many functions Plant hormones: a. produced in many parts of the plant b. have many functions Illustrated with 4 plant hormones: Gibberellins Auxin Cytokinins Ethylene Gibberellins Gibberellins illustrate how plant hormones

More information

Coevolution and Pollination

Coevolution and Pollination Coevolution and Pollination Coevolution is the the mutual evolutionary influence between two species (the evolution of two species totally dependent on each other). Each of the species involved exerts

More information

How Does Pollination Work?

How Does Pollination Work? How Does Pollination Work? What is pollination? What is pollination? Pollination the transfer of pollen from the anther of one flower to the stigma of another flower Fertilization occurs when the male

More information

Flower Power!! Background knowledge material and dissection directions.

Flower Power!! Background knowledge material and dissection directions. Flower Power!! Background knowledge material and dissection directions. 96 Plant Dissection 3.2 Plants Essential Question: Why do plants have flowers? Questions: As you read the lab background, complete

More information

Pollinator Adaptations

Pollinator Adaptations Adapted from: Life Lab Garden Pollinators unit Pollinator Adaptations Overview: Students will learn about pollinators and their adaptations, and match flowers to the kinds of pollinators they attract.

More information

Name Section Lab 4 Flowers, Pollination and Fruit

Name Section Lab 4 Flowers, Pollination and Fruit Name Section Lab 4 Flowers, Pollination and Fruit Flowers are designed on plants for sexual reproduction. They contain organs that produce gametes (sex cells), which, after fertilization, lead to the formation

More information

Lab 9: The Reproduction of Angiosperms and the Role of the Pollinator

Lab 9: The Reproduction of Angiosperms and the Role of the Pollinator Lab 9: The Reproduction of Angiosperms and the Role of the Pollinator Understanding the role and structure of a flower Flowers are the reproductive organs of angiosperms. They are not simple structures,

More information

gene is passed on. The extra gene can be altered and mutated, allowing for mutations and fitness differences in the plants. This can happen in a

gene is passed on. The extra gene can be altered and mutated, allowing for mutations and fitness differences in the plants. This can happen in a Describe the selective pressures which contributed to the radiation of the angiosperms, providing examples of natural selection acting on angiosperm traits today The evolution of a huge diversity and frequency

More information

Ch. 4- Plants. STRUCTURE AND FUNCTION And Taxonomy

Ch. 4- Plants. STRUCTURE AND FUNCTION And Taxonomy Ch. 4- Plants STRUCTURE AND FUNCTION And Taxonomy Plants belong to the kingdom: Plantae PLANTS AND PLANT REPRODUCTION STRUCTURE AND FUNCTION And Classification Two types of seed plants are gymnosperms

More information

Parts of a Flower. A lesson from the New Jersey Agricultural Society Learning Through Gardening Program

Parts of a Flower. A lesson from the New Jersey Agricultural Society Learning Through Gardening Program Parts of a Flower A lesson from the New Jersey Agricultural Society Learning Through Gardening Program OVERVIEW: Students create a flower with craft materials in order to learn the parts of flowers and

More information

Case Studies in Ecology and Evolution

Case Studies in Ecology and Evolution 3 Non-random mating, Inbreeding and Population Structure. Jewelweed, Impatiens capensis, is a common woodland flower in the Eastern US. You may have seen the swollen seed pods that explosively pop when

More information

Plant Growth & Reproduction

Plant Growth & Reproduction Water loss (ml) Water loss (ml) Water loss (ml) Water loss (ml) 4/24/2014 Plant Growth & Reproduction BI 103 Plant-Animal Systems Turn in Homework #1 Lab Wed! (schedule change) 1.2 1 0.8 0.6 0.4 no wind

More information

Zoophilous Pollination. Plant Cost-Benefits. Plant Cost-Benefits. rewards

Zoophilous Pollination. Plant Cost-Benefits. Plant Cost-Benefits. rewards Zoophilous Pollination 1 Plant Cost-Benefits! Animal vs. wind vectors Animals actively seek specific flowers Animals carry pollen farther! Outcrossing possible at lower popn densities! Low wind habitats

More information

GENERAL CURRICULUM MULTI-SUBJECT SUBTEST

GENERAL CURRICULUM MULTI-SUBJECT SUBTEST GENERAL CURRICULUM MULTI-SUBJECT SUBTEST SUPPLEMENTAL SAMPLE OPEN-RESPONSE ITEM WITH SAMPLE RESPONSES AND ANALYSES NOTE: This sample open-response item is provided as a supplement to the Test Information

More information

U.S. Fish & Wildlife Service. Attracting Pollinators to Your Garden

U.S. Fish & Wildlife Service. Attracting Pollinators to Your Garden U.S. Fish & Wildlife Service Attracting Pollinators to Your Garden Why are Pollinators Important? Pollinators are nearly as important as sunlight, soil and water to the reproductive success of over 75%

More information

Pea Patch Pollination Game

Pea Patch Pollination Game Pea Patch Pollination Game Classroom Activity: 5-8 Time: One 45-60-minute class period Overview: In this activity, students play a simulation game modeling changes in a plant population (a Pea Patch) caused

More information

Lesson Adapted from Food, Land, People

Lesson Adapted from Food, Land, People Theme: Spring in the Garden Grade Level: K- 5 th Time Required: 45 minutes Number of Students: 15-25 Buzzy Buzzy Bee! Lesson Adapted from Food, Land, People Description Students learn about pollination

More information

Teacher Packs in Experimental Science. Bio Pack 4. Agents of pollination

Teacher Packs in Experimental Science. Bio Pack 4. Agents of pollination Teacher Packs in Experimental Science Bio Pack 4 Agents of pollination Pack contents: A. Teacher s Guide B. Students Guide C. Assessment Student s sheet D. Extensions to experiment E. Useful Links F. Health

More information

Andy Norris. Dario Sanches

Andy Norris. Dario Sanches Andy Norris Hardy fuchsia Dario Sanches Hummingbird Comet orchid Morgan s sphinx moth Dan Mullen Common blue violet Dan Mullen Common blue violet Wild celery Water Sumatran corpse flower Carrion beetle

More information

IGCSE Double Award Extended Coordinated Science

IGCSE Double Award Extended Coordinated Science IGCSE Double Award Extended Coordinated Science Biology 8.2 - Sexual Reproduction in Plants Sexual Reproduction in Plants In a plant, the flower is the sexual organ, and it has both male and females parts.

More information

AP Biology Summer 2017

AP Biology Summer 2017 Directions: Questions 1 and 2 are long free response questions that require about 22 minutes to answer and are worth 10 points each. Questions 3-6 are short free- response questions that require about

More information

Pollination Lab Bio 220 Ecology and Evolution Fall, 2016

Pollination Lab Bio 220 Ecology and Evolution Fall, 2016 Pollination Lab Bio 220 Ecology and Evolution Fall, 2016 Journal reading: Comparison of pollen transfer dynamics by multiple floral visitors: experiments with pollen and fluorescent dye Introduction: Flowers

More information

Evolutionary computation

Evolutionary computation Evolutionary computation Andrea Roli andrea.roli@unibo.it DEIS Alma Mater Studiorum Università di Bologna Evolutionary computation p. 1 Evolutionary Computation Evolutionary computation p. 2 Evolutionary

More information

3 Types of Interactions

3 Types of Interactions CHAPTER 18 3 Types of Interactions SECTION Interactions of Living Things BEFORE YOU READ After you read this section, you should be able to answer these questions: What determines an area s carrying capacity?

More information

EVOLUTION change in populations over time

EVOLUTION change in populations over time EVOLUTION change in populations over time HISTORY ideas that shaped the current theory James Hutton (1785) proposes that Earth is shaped by geological forces that took place over extremely long periods

More information

BOTANY, PLANT PHYSIOLOGY AND PLANT GROWTH Lesson 6: PLANT PARTS AND FUNCTIONS Part 4 - Flowers and Fruit

BOTANY, PLANT PHYSIOLOGY AND PLANT GROWTH Lesson 6: PLANT PARTS AND FUNCTIONS Part 4 - Flowers and Fruit BOTANY, PLANT PHYSIOLOGY AND PLANT GROWTH Lesson 6: PLANT PARTS AND FUNCTIONS Part 4 - Flowers and Fruit Script to Narrate the PowerPoint, 06PowerPointFlowers and Fruit.ppt It is not permitted to export

More information

Introduction to Digital Evolution Handout Answers

Introduction to Digital Evolution Handout Answers Introduction to Digital Evolution Handout Answers Note to teacher: The questions in this handout and the suggested answers (in red, below) are meant to guide discussion, not be an assessment. It is recommended

More information

Section 2: Evolution. The Organization of Life Section 2

Section 2: Evolution. The Organization of Life Section 2 Section 2: Evolution Preview Classroom Catalyst Objectives Evolution by Natural Selection Nature Selects Coevolution Evolution by Artificial Selection Section 2: Evolution Preview Evolution of Resistance

More information

The Utility of Pollination for Autonomic Computing

The Utility of Pollination for Autonomic Computing The Utility of Pollination for Autonomic Computing Holger Kasinger and Bernhard Bauer University of Augsburg Universitaetsstrasse 14 86135 Augsburg, Germany kasinger bauer@informatik.uni-augsburg.de Abstract.

More information

BIOS 5970: Plant-Herbivore Interactions Dr. Stephen Malcolm, Department of Biological Sciences

BIOS 5970: Plant-Herbivore Interactions Dr. Stephen Malcolm, Department of Biological Sciences BIOS 5970: Plant-Herbivore Interactions Dr. Stephen Malcolm, Department of Biological Sciences Week 8. Pollination and fruit dispersal: Lecture summary: Mutualisms between plants and animals: Pollination

More information

Evolutionary Design I

Evolutionary Design I Evolutionary Design I Jason Noble jasonn@comp.leeds.ac.uk Biosystems group, School of Computing Evolutionary Design I p.1/29 This lecture Harnessing evolution in a computer program How to construct a genetic

More information

The Organization of Life Section 2. Chapter 4 The Organization of Life Section 2: Evolution DAY 1

The Organization of Life Section 2. Chapter 4 The Organization of Life Section 2: Evolution DAY 1 Chapter 4 The Organization of Life Section 2: Evolution DAY 1 Evolution by Natural Selection English naturalist Charles Darwin observed that organisms in a population differ slightly from each other in

More information

Evolution. Species Changing over time

Evolution. Species Changing over time Evolution Species Changing over time Objectives I can differentiate between natural selection and artificial selection and I can give examples of each. I can explain several reasons for genetic variation

More information

Name Date Block. Plant Structures

Name Date Block. Plant Structures Name Date Block What are the Functions of Roots, Stems, and Leaves? Plant Structures Each part of a plant plays an important role in its structure and function. Roots, stems, and leaves are just three

More information

Plant Systematics and Plant/Pollinator Interactions. Jacob Landis

Plant Systematics and Plant/Pollinator Interactions. Jacob Landis Plant Systematics and Plant/Pollinator Interactions Jacob Landis Why study plants Important for food Clothing Drugs Bryophytes Lycophytes,Monilophytes Gymnosperms Angiosperms Mosses, Liverworts, Hornworts

More information

Assessment Schedule 2017 Biology: Demonstrate understanding of biological ideas relating to the life cycle of flowering plants (90928)

Assessment Schedule 2017 Biology: Demonstrate understanding of biological ideas relating to the life cycle of flowering plants (90928) NCEA Level 1 Biology (90928) 2017 page 1 of 5 Assessment Schedule 2017 Biology: Demonstrate understanding of biological ideas relating to the life cycle of flowering plants (90928) Evidence Statement QUESTION

More information

Pollination A Sticky Situation! A lesson from the New Jersey Agricultural Society s Learning Through Gardening program

Pollination A Sticky Situation! A lesson from the New Jersey Agricultural Society s Learning Through Gardening program Pollination A Sticky Situation! A lesson from the New Jersey Agricultural Society s Learning Through Gardening program OVERVIEW: Pollination is a sticky situation. In this active lesson, students learn

More information

*Modifications in reproduction were key adaptations enabling plants to spread into a variety of terrestrial habitats.

*Modifications in reproduction were key adaptations enabling plants to spread into a variety of terrestrial habitats. Plant Reproduction *Modifications in reproduction were key adaptations enabling plants to spread into a variety of terrestrial habitats. Reproduction In Plants Plant reproduction is the production of new

More information

EVOLUTION change in populations over time

EVOLUTION change in populations over time EVOLUTION change in populations over time HISTORY ideas that shaped the current theory James Hutton & Charles Lyell proposes that Earth is shaped by geological forces that took place over extremely long

More information

Click Teacher Guide: May/June 2018

Click Teacher Guide: May/June 2018 Flower Power Flowers are more than meet the eye and nose! Students learn all about and how they are pollinated to make seeds that grow into new young plants. CONVERSATION QUESTION How do plants use? TEACHING

More information

TOPIC 9.4 REPRODUCTION OF PLANTS

TOPIC 9.4 REPRODUCTION OF PLANTS TOPIC 9.4 REPRODUCTION OF PLANTS INTRO https://media1.britannica.com/eb-media/41/62941-004-e3f5377b.jpg IB BIO 9.4 2 Flowers are reproductive structures found in flowering plants. Their function is to

More information

Pollen Identification Lab

Pollen Identification Lab Name Pollen Identification Lab Objectives Practice using a microscope to see what pollen looks like, to observe the diversity of pollen morphology. Compare reference pollen from flowers with local pollen

More information

Anatomy of Flowering Plants

Anatomy of Flowering Plants Dry Lab BIOLOGY Anatomy of Flowering Plants Investigation Manual ANATOMY OF FLOWERING PLANTS Table of Contents 2 Overview 2 Outcomes 2 Time Requirements 3 Background 6 Safety 6 Materials 7 Activity 1 10

More information

Worksheet for Morgan/Carter Laboratory #16 Plant Diversity II: Seed Plants

Worksheet for Morgan/Carter Laboratory #16 Plant Diversity II: Seed Plants Worksheet for Morgan/Carter Laboratory #16 Plant Diversity II: Seed Plants BE SURE TO CAREFULLY READ THE INTRODUCTION PRIOR TO ANSWERING THE QUESTIONS!!! You will need to refer to your text book to answer

More information

Evolutionary Computation. DEIS-Cesena Alma Mater Studiorum Università di Bologna Cesena (Italia)

Evolutionary Computation. DEIS-Cesena Alma Mater Studiorum Università di Bologna Cesena (Italia) Evolutionary Computation DEIS-Cesena Alma Mater Studiorum Università di Bologna Cesena (Italia) andrea.roli@unibo.it Evolutionary Computation Inspiring principle: theory of natural selection Species face

More information

Unit 10.4: Macroevolution and the Origin of Species

Unit 10.4: Macroevolution and the Origin of Species Unit 10.4: Macroevolution and the Origin of Species Lesson Objectives Describe two ways that new species may originate. Define coevolution, and give an example. Distinguish between gradualism and punctuated

More information

Welcome and I m so glad to see you guys today. Thank you for inviting me. I m sorry to use this title but don t you think Propagation is kind of

Welcome and I m so glad to see you guys today. Thank you for inviting me. I m sorry to use this title but don t you think Propagation is kind of Welcome and I m so glad to see you guys today. Thank you for inviting me. I m sorry to use this title but don t you think Propagation is kind of boring? And truly, when we are talking about propagation

More information

Lesson: The Buzz on Bees

Lesson: The Buzz on Bees Lesson: The Buzz on Bees Environmental Literacy Question: How have humans affected the Chesapeake Bay and its watershed? Topic/Essential Questions: How do the structures of plants help them survive in

More information

Evolution. Before You Read. Read to Learn

Evolution. Before You Read. Read to Learn Evolution 15 section 3 Shaping Evolutionary Theory Biology/Life Sciences 7.e Students know the conditions for Hardy-Weinberg equilibrium in a population and why these conditions are not likely to appear

More information

Selection 10: Theory of Natural Selection

Selection 10: Theory of Natural Selection Selection 10: Theory of Natural Selection Darwin began his voyage thinking that species could not change His experience during the five-year journey altered his thinking Variation of similar species among

More information

The Orchid s Secret By Josh Adler

The Orchid s Secret By Josh Adler The Orchid s Secret The Orchid s Secret By Josh Adler Deep in the jungles of Colombia there is a kind of flower that attracts bees with its unique perfume. The male bees store as much scent as possible

More information

POST-TRIP LESSON: PLANT PARTS BINGO

POST-TRIP LESSON: PLANT PARTS BINGO POST-TRIP LESSON: PLANT PARTS BINGO Overview: Students play a game to reinforce vocabulary and concepts learned in the Plant Parts, Seed to Harvest, and Pollination modules during the field trip. Sauvie

More information

1. What is genetics and who was Gregor Mendel? 2. How are traits passed from one generation to the next?

1. What is genetics and who was Gregor Mendel? 2. How are traits passed from one generation to the next? Chapter 11 Heredity The fruits, vegetables, and grains you eat are grown on farms all over the world. Tomato seeds produce tomatoes, which in turn produce more seeds to grow more tomatoes. Each new crop

More information

2. Which of the following is an organism that is made of only one cell? A. a larva B. an oyster C. an amoeba D. a mold

2. Which of the following is an organism that is made of only one cell? A. a larva B. an oyster C. an amoeba D. a mold 1. I am the barrier between the inside and the outside of the cell. I allow food, oxygen, and other needed materials to enter the cell. I am a part of animal and plant cells. A. cell membrane B. cell wall

More information

Artificial Ecosystems for Creative Discovery

Artificial Ecosystems for Creative Discovery Artificial Ecosystems for Creative Discovery Jon McCormack Centre for Electronic Media Art Monash University Clayton 3800, Australia www.csse.monash.edu.au/~jonmc Jon.McCormack@infotech.monash.edu.au 1

More information

Cell parts. nucleus cytoplasm cell surface membrane. cell wall vacuole chloroplast

Cell parts. nucleus cytoplasm cell surface membrane. cell wall vacuole chloroplast 7Ab/12 Cell parts nucleus cytoplasm cell surface membrane cell wall vacuole chloroplast found in plant cells only found in plant cells only found in plant cells only found in animal and plant cells found

More information

Vocabulary. photosynthesis p.48. chlorophyll p.49. sepal p.55. pistil p.55. stamen p.55. ovary p.56. fertilization p.56. dormant p.

Vocabulary. photosynthesis p.48. chlorophyll p.49. sepal p.55. pistil p.55. stamen p.55. ovary p.56. fertilization p.56. dormant p. Name: Section: 2 3 4 Vocabulary Word Definition photosynthesis p.48 chlorophyll p.49 sepal p.55 pistil p.55 stamen p.55 ovary p.56 fertilization p.56 dormant p.62 5 6 7 Chapter 2 Lesson 1 What are plants

More information

Year 7 Science 7B1: Microscopes, Cells and Plant Reproduction PPA Challenge

Year 7 Science 7B1: Microscopes, Cells and Plant Reproduction PPA Challenge Year 7 Science 7B1: Microscopes, Cells and Plant Reproduction PPA Challenge Name: Form: Task Sheet 1 (Bronze Challenge): What parts does a microscope have? Use the words in the boxes below to label the

More information

Darwin spent 20 years conducting research, after his voyage, in attempt to understand HOW evolution occurs.

Darwin spent 20 years conducting research, after his voyage, in attempt to understand HOW evolution occurs. Darwin spent 20 years conducting research, after his voyage, in attempt to understand HOW evolution occurs. One of his biggest influences was the work of farmers and breeders. He noticed that domesticated

More information

Environmental Influences on Adaptation

Environmental Influences on Adaptation Have you ever noticed how the way you feel sometimes mirrors the emotions of the people with whom you spend a lot of time? For example, when you re around happy people, do you tend to become happy? Since

More information

Name period date assigned date due date returned. Plant Adaptations

Name period date assigned date due date returned. Plant Adaptations Name period date assigned date due date returned or each plant structure, write down its function and adaptations it can have to help the plant survive and reproduce. structure function adaptations root

More information

AP Curriculum Framework with Learning Objectives

AP Curriculum Framework with Learning Objectives Big Ideas Big Idea 1: The process of evolution drives the diversity and unity of life. AP Curriculum Framework with Learning Objectives Understanding 1.A: Change in the genetic makeup of a population over

More information

2nd Grade. Slide 1 / 106. Slide 2 / 106. Slide 3 / 106. Plants. Table of Contents

2nd Grade. Slide 1 / 106. Slide 2 / 106. Slide 3 / 106. Plants. Table of Contents Slide 1 / 106 Slide 2 / 106 2nd Grade Plants 2015-11-24 www.njctl.org Table of Contents Slide 3 / 106 Click on the topic to go to that section What are plants? Photosynthesis Pollination Dispersal Slide

More information

Community Involvement in Research Monitoring Pollinator Populations using Public Participation in Scientific Research

Community Involvement in Research Monitoring Pollinator Populations using Public Participation in Scientific Research Overview Community Involvement in Research Monitoring Pollinator Populations using Public Participation in Scientific Research Public Participation in Scientific Research (PPSR) is a concept adopted by

More information

Towards Synthesizing Artificial Neural Networks that Exhibit Cooperative Intelligent Behavior: Some Open Issues in Artificial Life Michael G.

Towards Synthesizing Artificial Neural Networks that Exhibit Cooperative Intelligent Behavior: Some Open Issues in Artificial Life Michael G. Towards Synthesizing Artificial Neural Networks that Exhibit Cooperative Intelligent Behavior: Some Open Issues in Artificial Life Michael G. Dyer Computer Science Department, UCLA Overview Introduction

More information

EVOLUTION. HISTORY: Ideas that shaped the current evolutionary theory. Evolution change in populations over time.

EVOLUTION. HISTORY: Ideas that shaped the current evolutionary theory. Evolution change in populations over time. EVOLUTION HISTORY: Ideas that shaped the current evolutionary theory. Evolution change in populations over time. James Hutton & Charles Lyell proposes that Earth is shaped by geological forces that took

More information

Changing Planet: Changing Mosquito Genes

Changing Planet: Changing Mosquito Genes Changing Planet: Changing Mosquito Genes Name Background As the climate changes around the globe, organisms will need to adapt in order to survive. But what does it mean to adapt? When you put on a sweater

More information

Maximizing productivity of wheat and barley under dry-land systems HYBRIDIZATION. Faddel Ismail NCARE June,

Maximizing productivity of wheat and barley under dry-land systems HYBRIDIZATION. Faddel Ismail NCARE June, Maximizing productivity of wheat and barley under dry-land systems HYBRIDIZATION Faddel Ismail NCARE June, 8-10 2015 Hybridization Hybridization is the process of crossing two genetically different individuals

More information

Structure and Function

Structure and Function Name period date assigned date due date returned Certain structures help an organism perform a certain function. For example, teeth on a shark help the animal get food. On your own, list at least five

More information

A Statistical Genetic Algorithm

A Statistical Genetic Algorithm A Statistical Genetic Algorithm Angel Kuri M. akm@pollux.cic.ipn.mx Centro de Investigación en Computación Instituto Politécnico Nacional Zacatenco México 07738, D.F. Abstract A Genetic Algorithm which

More information

Speciation Plant Sciences, 2001Updated: June 1, 2012 Gale Document Number: GALE CV

Speciation Plant Sciences, 2001Updated: June 1, 2012 Gale Document Number: GALE CV is the process of evolution by which new species arise. The key factor causing speciation is the appearance of genetic differences between two populations, which result from evolution by natural selection.

More information

Outcomes of Evolution: Species and Ecotypes. Reading Assignment: Chapter 6 in GSF 9/8/2009

Outcomes of Evolution: Species and Ecotypes. Reading Assignment: Chapter 6 in GSF 9/8/2009 Outcomes of Evolution: Species and Ecotypes Reading Assignment: Chapter 6 in GSF Objectives 9/2/2009 1. Observe, describe, and measure phenotypic variation among individuals in a population. 2. Characterize

More information

Flowering Plants (Angiosperms)

Flowering Plants (Angiosperms) Flowering Plants (Angiosperms) Flowering Plants (Angiosperms) Inside ovary: Structures called ovules.. Meiosis occurs in these, producing four haploid female spores. Three of these disintegrate. The fourth

More information

Evolution. Part 1: Historical Perspective on the Theory of Natural Selection

Evolution. Part 1: Historical Perspective on the Theory of Natural Selection Evolution Part 1: Historical Perspective on the Theory of Natural Selection 1. In the 1860 s, what types of evidence were available to indicate that evolution had occurred on Earth? 2. How did knowledge

More information

Modes of Natural Selection Guided Notes What is Natural Selection?

Modes of Natural Selection Guided Notes What is Natural Selection? What is Natural Selection? Natural selection is a random process in which an organism containing some desirable traits are most likely to survive and can reproduce in the environment in which it is living.

More information

Grade 7 Lesson Instructions Friend or Foe? Preparation: Background information: Activity:

Grade 7 Lesson Instructions Friend or Foe? Preparation: Background information: Activity: Instructions Friend or Foe? You can use monarchs to teach about many things! Stone Mountain Memorial Association (SMMA) uses the monarch butterfly to help students apply their knowledge in other contexts

More information

Extension of cellular automata by introducing an algorithm of recursive estimation of neighbors

Extension of cellular automata by introducing an algorithm of recursive estimation of neighbors Extension of cellular automata by introducing an algorithm of recursive estimation of neighbors Yoshihiko Kayama BAIKA Women s University, Japan (Tel: 81-72-643-6221, Fax: 81-72-643-8473) kayama@baika.ac.jp

More information

Biology Y9 HY Page 1 of 12

Biology Y9 HY Page 1 of 12 S E C O N D A R Y S C H O O L - M R I E Ħ E L HALF-YEARLY EXAMINATIONS 2017/2018 YEAR 9 Biology Time: 2 hours Name: Class: Section A: Answer ALL the questions in this section in the space provided. This

More information

Big Idea 1: The process of evolution drives the diversity and unity of life.

Big Idea 1: The process of evolution drives the diversity and unity of life. Big Idea 1: The process of evolution drives the diversity and unity of life. understanding 1.A: Change in the genetic makeup of a population over time is evolution. 1.A.1: Natural selection is a major

More information

GARDENING WITH NATIVE PLANTS: POLLINATION PARTNERS: THE CHEMICAL ATTRACTION BETWEEN PLANTS AND INSECTS by Leslie Saul-Gershenz

GARDENING WITH NATIVE PLANTS: POLLINATION PARTNERS: THE CHEMICAL ATTRACTION BETWEEN PLANTS AND INSECTS by Leslie Saul-Gershenz California Native Plant Society Newsletter, 2002 http://www.cnps-yerbabuena.org/gard_saul_ger_pollination.html GARDENING WITH NATIVE PLANTS: POLLINATION PARTNERS: THE CHEMICAL ATTRACTION BETWEEN PLANTS

More information

Chapter III- The Flower

Chapter III- The Flower Worksheet Class 8-Flower, Pollination and Fertilization, Ecosystem. Chapter III- The Flower 1.Name the following. a.a flower in which both male and female reproductive organs are lacking. b.the groups

More information

biologically-inspired computing lecture 6 Informatics luis rocha 2015 INDIANA UNIVERSITY biologically Inspired computing

biologically-inspired computing lecture 6 Informatics luis rocha 2015 INDIANA UNIVERSITY biologically Inspired computing lecture 6 -inspired Sections I485/H400 course outlook Assignments: 35% Students will complete 4/5 assignments based on algorithms presented in class Lab meets in I1 (West) 109 on Lab Wednesdays Lab 0 :

More information

Exercise 3 Exploring Fitness and Population Change under Selection

Exercise 3 Exploring Fitness and Population Change under Selection Exercise 3 Exploring Fitness and Population Change under Selection Avidians descended from ancestors with different adaptations are competing in a selective environment. Can we predict how natural selection

More information

Simulation of Floral Specialization in Bees

Simulation of Floral Specialization in Bees Simulation of Floral Specialization in Bees Dan Ashlock Mathematics Department Iowa State University Ames, Iowa 511 danwell@iastate.edu Jessica Oftelie Mathematics Department Iowa State University Ames,

More information

2a. General: Describe 3 specialised uses for plants. Plants can be used as: i. raw materials ii. foods iii. medicines

2a. General: Describe 3 specialised uses for plants. Plants can be used as: i. raw materials ii. foods iii. medicines 1a. General: Give examples of advantages of there being a wide variety of plants. Greater number of characteristics for breeding. Bigger choice for use as raw materials, foods and medicines. Provide different

More information

Plant Reproduction - Pollination

Plant Reproduction - Pollination Plant Adaptations Plant Reproduction - Pollination Pollination is the process where male genetic information (called pollen) from one flower is transferred to the female part of another flower. This is

More information

Guided Reading Chapter 1: The Science of Heredity

Guided Reading Chapter 1: The Science of Heredity Name Number Date Guided Reading Chapter 1: The Science of Heredity Section 1-1: Mendel s Work 1. Gregor Mendel experimented with hundreds of pea plants to understand the process of _. Match the term with

More information

Elementary Science: Pollination

Elementary Science: Pollination Elementary Science: Pollination A collection of hands-on lessons and activities for the elementary classroom that explore the process and importance of pollination and pollinators. Table of Contents A

More information

Complex Systems Theory and Evolution

Complex Systems Theory and Evolution Complex Systems Theory and Evolution Melanie Mitchell and Mark Newman Santa Fe Institute, 1399 Hyde Park Road, Santa Fe, NM 87501 In Encyclopedia of Evolution (M. Pagel, editor), New York: Oxford University

More information

2/17/17. B. Four scientists important in development of evolution theory

2/17/17. B. Four scientists important in development of evolution theory UNIT 4: EVOLUTION Chapter 10: Principles of Evolution I. Early Ideas about Evolution (10.1) A. Early scientists proposed ideas about evolution 1. Evolution- process of biological change by which descendants

More information

Unit 9 - Evolution Practice Quiz

Unit 9 - Evolution Practice Quiz Unit 9 - Evolution Practice Quiz Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Lamarck s theory of evolution includes the concept that new organs in

More information

Evolution. 1. The figure below shows the classification of several types of prairie dogs.

Evolution. 1. The figure below shows the classification of several types of prairie dogs. Name: Date: 1. The figure below shows the classification of several types of prairie dogs. 3. Which statement describes the best evidence that two species share a recent common ancestor? A. The species

More information

Introduction to Swarm Robotics

Introduction to Swarm Robotics COMP 4766 Introduction to Autonomous Robotics Introduction to Swarm Robotics By Andrew Vardy April 1, 2014 Outline 1 Initial Definitions 2 Examples of SI in Biology 3 Self-Organization 4 Stigmergy 5 Swarm

More information

Outline. 1 Initial Definitions. 2 Examples of SI in Biology. 3 Self-Organization. 4 Stigmergy. 5 Swarm Robotics

Outline. 1 Initial Definitions. 2 Examples of SI in Biology. 3 Self-Organization. 4 Stigmergy. 5 Swarm Robotics Outline COMP 4766 Introduction to Autonomous Robotics 1 Initial Definitions Introduction to Swarm Robotics 2 Examples of SI in Biology 3 Self-Organization By Andrew Vardy 4 Stigmergy April 1, 2014 5 Swarm

More information