Noc20 Cs81 Assignment 01 Week 04
Noc20 Cs81 Assignment 01 Week 04
(https://swayam.gov.in) (https://swayam.gov.in/nc_details/NPTEL)
NPTEL (https://swayam.gov.in/explorer?ncCode=NPTEL) » Artificial Intelligence Search Methods For Problem Solving (course)
Announcements (announcements) About the Course (preview) Ask a Question (forum) Progress (student/home) Mentor (student/mentor)
Unit 7 - Week 4
Course outline
Week 1
Week 2
Week 3
Week 4
2) In Week 4, a famous study on creating virtual creatures using genetic algorithms was discussed and the following web resources were listed in 1 point
Week 5
the lecture.
Week 6
Evolved Virtual Creatures,https://www.karlsims.com/evolved-virtual-creatures.html
(https://www.karlsims.com/evolved-virtual-creatures.html)
Week 7
Pirouette - Evolved Virtual Creature, https://www.youtube.com/watch?v=GS18h-_h6IM (https://www.youtube.com/watch?
v=GS18h-_h6IM)
Week 8
The fitness vs time (generation number) from the 2nd web resource is reproduced here.
Week 9
Week 10
Week 11
Week 12
DOWNLOAD VIDEOS
https://onlinecourses.nptel.ac.in/noc20_cs81/unit?unit=24&assessment=195 1/6
1/23/2021 Artificial Intelligence Search Methods For Problem Solving - - Unit 7 - Week 4
3) The following articles (freely available) are from the first web resource listed in the previous question. 1 point
https://onlinecourses.nptel.ac.in/noc20_cs81/unit?unit=24&assessment=195 2/6
1/23/2021 Artificial Intelligence Search Methods For Problem Solving - - Unit 7 - Week 4
4) The idea of using population based methods to solve optimization problems 1 point
5) Which of the following are true? Mark all correct answers 1 point
8) Which one of the following completes the quote from Paul Valery in the context of Genetic Algorithms? “It takes two to invent anything. The one 1 point
makes up combinations, _________________”
9) The single point crossover can be used to solve the TSP problem if the representation is 1 point
https://onlinecourses.nptel.ac.in/noc20_cs81/unit?unit=24&assessment=195 3/6
1/23/2021 Artificial Intelligence Search Methods For Problem Solving - - Unit 7 - Week 4
11) When Christof Koch said “The most complex object in the known universe” he was referring to 1 point
12) What is the role an individual ant plays in the Ant Colony Algorithm? 1 point
BEGIN GROUP
A tour is shown in the figure, where the edges are bidirectional. Use A,B,C,D,E,F,G,H,I,J as the reference sequence (index sequence) for preparing
ordinal representation and adjacency representation.
13) Which of the following are valid path representations of the tour shown in the figure? 1 point
A,F,E,J,B,G,D,I,C,H,A
A,F,E,J,B,G,D,I,C,H
A,F,E,B,J,D,G,I,C,H
I,C,H,A,F,E,J,B,G,D
I,D,G,B,J,E,F,A,H,C
E,F,A,H,C,I,D,G,B,J
No, the answer is incorrect.
Score: 0
Accepted Answers:
A,F,E,J,B,G,D,I,C,H
I,C,H,A,F,E,J,B,G,D
I,D,G,B,J,E,F,A,H,C
E,F,A,H,C,I,D,G,B,J
14) Which of the following are valid adjacency representations of the tour shown in the figure? 1 point
A,B,C,D,E,F,G,H,I,J
H,J,I,G,F,D,B,C,A,E
F,G,H,I,J,E,D,A,C,B
F,G,H,I,J,A,D,E,C,B
H,J,I,G,F,A,B,C,D,E
None of the above
No, the answer is incorrect.
Score: 0
Accepted Answers:
F,G,H,I,J,E,D,A,C,B
H,J,I,G,F,A,B,C,D,E
15) Question 13 lists many path representations of the tour shown in the figure. Which of the following are the ordinal representations of the valid path 1 point
representations in question 13?
https://onlinecourses.nptel.ac.in/noc20_cs81/unit?unit=24&assessment=195 4/6
1/23/2021 Artificial Intelligence Search Methods For Problem Solving - - Unit 7 - Week 4
1,5,4,1,6,2,2,3,1,1
1,5,4,7,1,3,2,3,1,1
9,3,7,1,4,3,4,1,2,1
9,4,6,2,6,3,3,1,2,1
5,5,1,5,2,4,2,2,1,1
5,5,5,4,2,2,2,1,1,1
No, the answer is incorrect.
Score: 0
Accepted Answers:
1,5,4,7,1,3,2,3,1,1
9,3,7,1,4,3,4,1,2,1
9,4,6,2,6,3,3,1,2,1
5,5,1,5,2,4,2,2,1,1
16) The path representation of two tours are given below. Generate offsprings using Partially Mapped Crossover between P1 and P2 and use locations from
4 to 7 (including 4 and 7) as the mapping segment.
P1: A,F,E,J,B,G,D,I,C,H
P2: B,D,G,I,H,C,F,J,E,A
Enter one of the resulting child tours in the textbox. Use path representation (comma separated list of city labels) without extraneous characters like
spaces, period, parenthesis, etc.
1 point
17) The path representation of two tours are given below. Generate offsprings using Order Crossover between P1 and P2 and use locations from 4 to 7
(including 4 and 7) as the mapping segment. In the child tour, place the mapping segment in the last part of the tour. For example, C1 =
?,?,?,?,?,?,J,B,G,D
P1: A,F,E,J,B,G,D,I,C,H
P2: B,D,G,I,H,C,F,J,E,A
Enter one of the resulting child tours in the textbox. Use path representation (comma separated list of city labels) without extraneous characters like
spaces, period, parenthesis, etc.
1 point
18) The path representation of two tours are given below. Generate offsprings using Cycle Crossover between P1 and P2. Inherit odd cycles from one parent
and even cycles from the other parent to create the offsprings.
P1: A,F,E,J,B,G,D,I,C,H
P2: B,D,G,I,H,C,F,J,E,A
Enter one of the resulting child tours in the textbox. Use path representation (comma separated list of city labels) without extraneous characters like
spaces, period, parenthesis, etc.
1 point
19) The path representation of two tours are given below. Compute the ordinal representations of the parent tours. Use single point (mid point) crossover to
generate offsprings.
P1: A,F,E,J,B,G,D,I,C,H
P2: B,D,G,I,H,C,F,J,E,A
Enter one of the resulting child tours in the textbox. Use ordinal representation (comma separated list of numbers) without extraneous characters like
spaces, period, parenthesis, etc.
https://onlinecourses.nptel.ac.in/noc20_cs81/unit?unit=24&assessment=195 5/6
1/23/2021 Artificial Intelligence Search Methods For Problem Solving - - Unit 7 - Week 4
1 point
20) Taking the answers from the previous question, convert the offsprings from ordinal representation to path representation.
Enter one of the resulting child tours in the textbox. Use path representation (comma separated list of city labels) without extraneous characters like
spaces, period, parenthesis, etc.
1 point
END GROUP
https://onlinecourses.nptel.ac.in/noc20_cs81/unit?unit=24&assessment=195 6/6