• Tidak ada hasil yang ditemukan

Assignment 3 - Nptel

N/A
N/A
Protected

Academic year: 2024

Membagikan "Assignment 3 - Nptel"

Copied!
5
0
0

Teks penuh

(1)

X

NPTEL (https://swayam.gov.in/explorer?ncCode=NPTEL) » Artificial Intelligence Search Methods For Problem Solving (course)

Unit 6 - Week 3

(https://swayam.gov.in)

(https://swayam.gov.in/nc_details/NPTEL)

[email protected]

Announcements (announcements) About the Course (preview) Ask a Question (forum) Progress (student/home) Mentor (student/mentor)

Course outline

How does an NPTEL online course work?

Pre-requisite Assignment Week 0

Week 1 Week 2 Week 3

Week 4 Week 5 Week 6 Week 7 Week 8 Week 9 Week 10 Week 11 Week 12

DOWNLOAD VIDEOS Heuristic Search (unit?

unit=19&lesson=134) Heuristic Functions and the Search Landscape (unit?

unit=19&lesson=135) Solution Space Search (unit?

unit=19&lesson=136) The Traveling Salesman Problem (unit?

unit=19&lesson=137) Escaping Local Optima (unit?

unit=19&lesson=138) Stochastic Local Search (unit?unit=19&lesson=139) Week 3- Feedback : Artificial Intelligence Search Methods for problem Solving (unit?

unit=19&lesson=23) Lecture Materials (unit?

unit=19&lesson=174) Quiz : Assignment 3 (assessment?name=194)

Due on 2020-10-07, 23:59 IST.

1)

2 points 2)

Assignment 3

The due date for submitting this assignment has passed.

As per our records you have not submitted this assignment.

The figure shows a map with several locations on a grid where each tile is 10km x 10km in size. In this map, S is the start node and G is the goal node, the locations are connected by two way edges (or roads). The MoveGen returns nodes in alphabetical order. Assume that RemoveSeen procedure removes children already in OPEN or CLOSED list. Use Manhattan distance when needed.

In the map, starting with node S, list the first 7 nodes inspected (or expanded) by Depth First Search (DFS) algorithm. List the nodes in the order they were inspected. If the algorithm terminates early then list all the nodes seen.

Enter a comma separated list of node labels. Do not enter spaces, periods or other characters in the textbox

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) S,L,D,A,K,F,C

In the map, starting with node S, what is the 15th node inspected (or expanded) by Depth First Search (DFS) algorithm? If the algorithm terminates early then name the last node inspected.

Enter a node label in the textbox

No, the answer is incorrect.

Score: 0 Accepted Answers:

(2)

2 points 3)

2 points 4)

2 points 5)

1 point 6)

1 point 7)

1 point 8)

1 point 9)

(Type: String) Z1

In the map, starting with node S, list the first 7 nodes inspected (or expanded) by the Breadth First Search (BFS) algorithm. List the nodes in the order they were inspected. If the algorithm terminates early then list all the nodes seen.

Enter a comma separated list of node labels. Do not enter spaces, periods or other characters in the textbox.

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) S,L,O,U,V,D,H

In the map, starting with node S, what is the 15th node inspected (or expanded) by Breadth First Search (BFS) algorithm? If the algorithm terminates early then name the last node inspected.

Enter a node label in the textbox.

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) K

What is the heuristic value of node E?

Enter an integer in the textbox.

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: Numeric) 90

What is the heuristic value of node W?

Enter an integer in the textbox

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: Numeric) 140

Which node has the largest heuristic value? What is its heuristic value?

Enter the node label and the heuristic value as a comma separated list. For example: A,170

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) P1,270

Which node has the smallest heuristic value? What is its heuristic value?

Enter the node label and the heuristic value as a comma separated list. For example: A,170

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) G,0

In the map, starting with node S, list the first 7 nodes inspected (or expanded) by the Best First Search algorithm. If the algorithm terminates early then list the nodes inspected including the goal node. List the nodes in the order they were inspected.

Enter a comma separated list of node labels. Do not enter spaces, periods or other characters in the textbox.

No, the answer is incorrect.

Score: 0 Accepted Answers:

(3)

2 points 10)

1 point 11)

2 points 12)

1 point 1 point 13)

2 points 14)

1 point 15)

1 point 16)

(Type: String) S,O,Q,M,E,B,G

In the map, starting with node S, what is the 15th node inspected (or expanded) by Best First Search algorithm? If the algorithm terminates early then list the last node inspected.

Enter a node label in the textbox.

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) G

In the map, starting with node S, list the first 7 nodes inspected (or expanded) by Hill Climbing algorithm. If the algorithm terminates early then list the nodes inspected. List the nodes in the order they were inspected.

Enter a comma separated list of node labels. Do not enter spaces, periods or other characters in the textbox.

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) S,O,Q,M

In the map, starting with node S, what is the 15th node inspected (or expanded) by Hill Climbing algorithm? If the algorithm terminates early then list the last node inspected.

Enter a node label in the textbox

No, the answer is incorrect.

Score: 0 Accepted Answers:

(Type: String) M

For the given map, which of the algorithms finds a path from the start node S to the goal node G?

Depth First Search Breadth First Search Hill Climbing Best First Search No, the answer is incorrect.

Score: 0 Accepted Answers:

Depth First Search Breadth First Search Best First Search

For the city map given above, ignore all nodes with only one edge. Now try and find a TSP tour for the remaining nodes. Note: It is not a complete graph and only the given edges are to be considered. Choose the correct options below. For the remaining nodes,

I could not find a tour No one can find a tour I found one tour

There appears to be more than one tour There is definitely more than one tour No, the answer is incorrect.

Score: 0 Accepted Answers:

I could not find a tour No one can find a tour

For the above problem assume that the edge cost is equal to the Euclidean distance between the two nodes. Then the Nearest Neighbour algorithm finds a tour

the Nearest Neighbour algorithm finds an optimal tour the Greedy algorithm finds an optimal tour None of the above

No, the answer is incorrect.

Score: 0 Accepted Answers:

None of the above

Select the correct statements

(4)

1 point 17)

1 point 18)

1 point 19)

1 point 20)

Heuristic function gives an estimate of the distance between a node and its nearest goal node Heuristic function gives the actual distance between a node and its nearest goal node Heuristic search always finds the optimal solution

Heuristic search is goal directed No, the answer is incorrect.

Score: 0 Accepted Answers:

Heuristic function gives an estimate of the distance between a node and its nearest goal node Heuristic search is goal directed

Given a finite state space or a finite solution space, which of these algorithms will always find a path/solution if one exists?

Depth First Search Breadth First Search Best First Search Beam Search Hill Climbing

Variable Neighbourhood Descent Tabu Search

No, the answer is incorrect.

Score: 0 Accepted Answers:

Depth First Search Breadth First Search Best First Search

Working with the 2-City-Exchange or the 2-Edge-Exchange operator means that:

one is using a Constructive method to solve the TSP one is searching for the solution in the State Space one is using a Perturbative method to solve the TSP one is searching for the solution in the Solution Space No, the answer is incorrect.

Score: 0 Accepted Answers:

one is using a Perturbative method to solve the TSP one is searching for the solution in the Solution Space

The Iterated Hill Climbing algorithm works only for planning problems works only for configuration problems

can work for both planning and configuration problems is one of the approaches for State Space Search is one of the approaches for Solution Space Search No, the answer is incorrect.

Score: 0 Accepted Answers:

works only for configuration problems

is one of the approaches for Solution Space Search

In Week 3 lecture on "The Traveling Salesman Problem" a web resource for TSP (http://comopt.ifi.uni-heidelberg.de/software/TSPLIB95/) was provided. Which of the following types of problems are supported/discussed in that site?

Hamiltonian cycle problem (HCP)

Symmetric traveling salesman problem (TSP) Asymmetric traveling salesman problem (ATSP) Sequential ordering problem (SOP)

Capacitated vehicle routing problem (CVRP) No, the answer is incorrect.

Score: 0 Accepted Answers:

Hamiltonian cycle problem (HCP) Symmetric traveling salesman problem (TSP) Asymmetric traveling salesman problem (ATSP) Sequential ordering problem (SOP)

Capacitated vehicle routing problem (CVRP)

(5)

Referensi

Dokumen terkait

Score: 0 Accepted Answers: will decrease partition coefficient Decrease salt concentration in the bottom phase of two phase extraction increases protein amount in upper phase

Score: 0 Accepted Answers: tends to infinity The solutions of a 1- dimensional wave equation can be written as Here, F and G functions represents _________ respectively Forward

Score: 0 Accepted Answers: Pressure In carbon microphones, a variation in which of the following parameter was correlated to find out sound pressure level SPL?.

Score: 0 Accepted Answers: B False Saying NO is one of the best ways to save one’s personal time, and not considered negative in business.. Score: 0 Accepted Answers: A True End

Score: 0 Accepted Answers: Atomic number All elements belonging to second period are Normal elements Transitional Stable elements Halogens No, the answer is incorrect.. Score: 0

Score: 0 Accepted Answers: False Let be two orthonormal bases of with the usual inner product.. Suppose there exists a matrix such

Score: 0 Accepted Answers: State whether True or False.. The REF of any matrix is

Score: 0 Accepted Answers: A square matrix is said to be skew symmetric if.. State whether True or