CS607 - Artificial Intelligence Assignment 2 Spring 2013
Page 1 of 1 • Share
CS607 - Artificial Intelligence Assignment 2 Spring 2013
[You must be registered and logged in to see this image.]
Assignment No. 02
Semester: Spring 2013
CS607: Artificial Intelligence
Total Marks: 20
Due Date: 08/05/2013
Instructions
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:
§ The assignment is submitted after due date.
§ The submitted assignment does not open or file is corrupt.
§ Solution is copied from any other source.
Objective
The objective of this assignment is to enhance your knowledge about;
§ Conversion of Maps/Graphs into Trees.
§ Application of different Search Algorithms.
Assignment
Dear Student, Let’s consider we have a connectivity map/graph of Nine cities as given below. Cities are named as A, B, C…I for simplicity. The labeled edges indicate the distance in Km between connected cities e.g. the edge between node B and C is labeled as 3 which indicate that there is 3Km distance between city B and C.
Suppose you are currently at city A and you need to carry certain object to city I. In other words, your starting position is city A and destination is city I. Your task is to transform this map/graph into Tree and apply selected search techniques to find the path from A to I.
[You must be registered and logged in to see this image.]
Questions
Part 1: Draw below your Connectivity Tree of the given Map/Graph. See Page#23 in your handouts for sample conversion of graph into tree.
Part 2: Apply the following search techniques on your connectivity tree and write the path found by each technique along with its cost in terms of total distance from A to I.
Search Technique Resultant Path/s Total Path Length/s
Sample Search A-B-C-F-H-I 2+3+3+2+3=13Km
Depth First Search
Breadth First Search
Best First Search
Beam Search (k=2)
(Sample search is just given as an example to show how you need to fill this table with desired values.)
Note:
· Total path length is the sum of all edges included in the selected path.
· Your connectivity tree shall be complete i.e. representing all possible paths from city A without any cycles/loops.
· Left Sub-tree will be processed first in Depth First Search.
· Resultant paths mainly depend upon your Tree. If your path is not correct as per your Tree then marks will be deducted.
· There is no aerial distance information available, so you have to use and make decision upon available local intercity distance information in case of Best First and Beam Search.
Submission
You are required to submit your solution in MS Word format through LMS.
Assignment No. 02
Semester: Spring 2013
CS607: Artificial Intelligence
Total Marks: 20
Due Date: 08/05/2013
Instructions
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:
§ The assignment is submitted after due date.
§ The submitted assignment does not open or file is corrupt.
§ Solution is copied from any other source.
Objective
The objective of this assignment is to enhance your knowledge about;
§ Conversion of Maps/Graphs into Trees.
§ Application of different Search Algorithms.
Assignment
Dear Student, Let’s consider we have a connectivity map/graph of Nine cities as given below. Cities are named as A, B, C…I for simplicity. The labeled edges indicate the distance in Km between connected cities e.g. the edge between node B and C is labeled as 3 which indicate that there is 3Km distance between city B and C.
Suppose you are currently at city A and you need to carry certain object to city I. In other words, your starting position is city A and destination is city I. Your task is to transform this map/graph into Tree and apply selected search techniques to find the path from A to I.
[You must be registered and logged in to see this image.]
Questions
Part 1: Draw below your Connectivity Tree of the given Map/Graph. See Page#23 in your handouts for sample conversion of graph into tree.
Part 2: Apply the following search techniques on your connectivity tree and write the path found by each technique along with its cost in terms of total distance from A to I.
Search Technique Resultant Path/s Total Path Length/s
Sample Search A-B-C-F-H-I 2+3+3+2+3=13Km
Depth First Search
Breadth First Search
Best First Search
Beam Search (k=2)
(Sample search is just given as an example to show how you need to fill this table with desired values.)
Note:
· Total path length is the sum of all edges included in the selected path.
· Your connectivity tree shall be complete i.e. representing all possible paths from city A without any cycles/loops.
· Left Sub-tree will be processed first in Depth First Search.
· Resultant paths mainly depend upon your Tree. If your path is not correct as per your Tree then marks will be deducted.
· There is no aerial distance information available, so you have to use and make decision upon available local intercity distance information in case of Best First and Beam Search.
Submission
You are required to submit your solution in MS Word format through LMS.
modi- Monstars
-
Posts : 632
Join date : 2011-02-13
Age : 37
Location : OnLion
Character sheet
Experience:
(0/500)
Re: CS607 - Artificial Intelligence Assignment 2 Spring 2013
Search Algorithms and Applications
Search algorithms aim to find solutions or objects with specified properties and constraints in a large solution search space or among a collection of objects. A solution can be a set of value assignments to variables that will satisfy the constraints or a sub-structure of a given discrete structure. In addition, there are search algorithms, mostly probabilistic, that are designed for the prospective quantum computer. This book demonstrates the wide applicability of search algorithms for the purpose of developing useful and practical solutions to problems that arise in a variety of problem domains. Although it is targeted to a wide group of readers: researchers, graduate students, and practitioners, it does not offer an exhaustive coverage of search algorithms and applications. The chapters are organized into three parts: Population-based and quantum search algorithms, Search algorithms for image and video processing, and Search algorithms for engineering applications.
Search algorithms aim to find solutions or objects with specified properties and constraints in a large solution search space or among a collection of objects. A solution can be a set of value assignments to variables that will satisfy the constraints or a sub-structure of a given discrete structure. In addition, there are search algorithms, mostly probabilistic, that are designed for the prospective quantum computer. This book demonstrates the wide applicability of search algorithms for the purpose of developing useful and practical solutions to problems that arise in a variety of problem domains. Although it is targeted to a wide group of readers: researchers, graduate students, and practitioners, it does not offer an exhaustive coverage of search algorithms and applications. The chapters are organized into three parts: Population-based and quantum search algorithms, Search algorithms for image and video processing, and Search algorithms for engineering applications.
modi- Monstars
-
Posts : 632
Join date : 2011-02-13
Age : 37
Location : OnLion
Character sheet
Experience:
(0/500)
Re: CS607 - Artificial Intelligence Assignment 2 Spring 2013
4 PATHS ARE HERE
1.A,B,C,F,H,I
2.A,B,G,I
3.A,D,C,F,H,I
4.A,D,E,F,H,I
RESULTANT PAth
1.2+3+3+2+3=13
2.2+1+3=6
3.3+3+3+2+3=14
4.3+1+1+2+3=10
1.A,B,C,F,H,I
2.A,B,G,I
3.A,D,C,F,H,I
4.A,D,E,F,H,I
RESULTANT PAth
1.2+3+3+2+3=13
2.2+1+3=6
3.3+3+3+2+3=14
4.3+1+1+2+3=10
modi- Monstars
-
Posts : 632
Join date : 2011-02-13
Age : 37
Location : OnLion
Character sheet
Experience:
(0/500)
Similar topics
» CS607 - Artificial Intelligence Assignment No. 03 Solution Required
» MCM 301 Assignment # 1 Solutoin Spring 2013
» ISL201 Assignment # 1 Spring 2013
» MGMT628 Assignment # 01 Solution Spring 2013
» PSY101 Assignment # 1 Solution Spring 2013
» MCM 301 Assignment # 1 Solutoin Spring 2013
» ISL201 Assignment # 1 Spring 2013
» MGMT628 Assignment # 01 Solution Spring 2013
» PSY101 Assignment # 1 Solution Spring 2013
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
Yesterday at 12:21 pm by ali001
» Hemangiom'App
Tue Nov 05, 2024 11:25 am by ali001
» MindfulMe - Mental Health App
Mon Nov 04, 2024 10:50 am by ali001
» Learn Candlestick Patterns
Tue Oct 15, 2024 5:51 am by ali001
» Woh Pagal Si Episode 52 to 62 - Top Pakistani Drama
Sat Sep 21, 2024 6:26 pm by Mir Emmad Ali Khan Domki
» Nearu - share your socials
Sat Sep 21, 2024 1:12 pm by ali001
» Nightclub Tycoon: Idle Empire
Thu Sep 19, 2024 9:16 pm by ali001
» Carnivore - Meat Diet Recipes
Wed Sep 18, 2024 2:37 pm by ali001
» Eid Milad un Nabi Mubarak 2024 (Rabiʻ I 14, 1446 AH)
Tue Sep 17, 2024 3:44 pm by Mir Emmad Ali Khan Domki