Final answer:
(a) The simulate_moran function in R simulates the Moran process, returning the number of generations and the dominant type.
(b) The for loop in R calls simulate_moran 1000 times with n = 100, calculating the percentage of mutant takeovers and the average generations per simulation.
Step-by-step explanation:
(a) The `simulate_moran` function is developed in R to model the Moran process. Initially, a population vector is constructed, reflecting n-1 type 0 individuals and one type 1 individual. The function iterates through a while loop simulating each generation until either type 0 or type 1 dominates the entire population. The function then returns information about the duration of the process (number of generations) and which type eventually takes over the population.
(b) A for loop is utilized to run the `simulate_moran` function 1000 times with n = 100. The percentage of times the population was taken over by the mutants is computed by counting the occurrences where type 1 dominates and dividing it by the total simulations (1000). To determine the average number of generations per simulation, the total number of generations across all simulations is summed up and divided by the total simulations.
This process offers insights into the behavior of the Moran process by simulating numerous scenarios and assessing the frequency and duration of each outcome, providing a statistical perspective on the population dynamics.