CT002-3-2 AI Methods: Overview of Module
CT002-3-2 AI Methods: Overview of Module
Overview of Module
Learning outcomes:
Further Reading
• Russell S and Norvig P (1995), Artificial Intelligence: A Modern
Approach, Prentice Hall, New Jersey, USA, (ISBN: 0137903952)
Email: [email protected]
• History of Computational.
• Computational Problem : Software Development Model Steps.
• Types of Computation Model : Decision Problem, Search
Problem & Optimizing Problem.
• Computational Algorithm
• Solution in computational
The salesman has to visit each one of the cities starting from a certain one (e.g. the
hometown) and returning to the same city.
The challenge of the problem is that the traveling salesman wants to minimize the total
length of the trip.
Optimization problem:
given an instance find a best solution according to some cost criterion.
Counting problem:
given an instance count the number of solutions.
EXAMPLE:
EXAMPLE:
CASE: No of PATH
INSTANCE: A graph (V,E) and nodes v,u ∈ V.
QUESTION: Count the number of simple paths from v to u
x1 ∧(x2 ∨ ¬x2)
CLIQUE (CORELATION)
INSTANCE: A graph (V,E) and a positive integer k
QUESTION:
•(D) Is there a k-clique in the graph, i.e. a set of k nodes such that
•there is an edge between every pair of vertices from the set.
•(S) Find a k-clique.
•(O) Find an l-clique with the largest number l of vertices.
QUESTION:
•(D) Is there a tour of length at most B, i.e. a permutation π of the cities
such that the length n
∑ dπ(i)π(i+1)
i=1
– is at most B (where π(n+1) = π(1))?
– (S) Find a tour of length at most B.
– (O) Find the shortest tour of the cities.
• Greedy Algorithm
•A decision problem reduces to the corresponding search problem trivially, i.e., if a search
problem can be solved efficient so can the corresponding decision problem.
•But also a search problem reduces to the corresponding decision problem.
Machine Learning