Artificial Intelligence: Introduction Department of Computer Science & Engineering Indian Institute of Technology Kharagpur.

Slides:



Advertisements
Similar presentations
ARTIFICIAL INTELLIGENCE [INTELLIGENT AGENTS PARADIGM] Professor Janis Grundspenkis Riga Technical University Faculty of Computer Science and Information.
Advertisements

Artificial Intelligence
Artificial Intelligence Created by Korbut Fyodor FTF,
Artificial Intelligence 0. Course Overview Course V231 Department of Computing Imperial College, London © Simon Colton.
Knowledge Based Systems: Logic and Deduction Department of Computer Science & Engineering Indian Institute of Technology Kharagpur.
An Introduction to Artificial Intelligence Presented by : M. Eftekhari.
CS440/ECE448: Artificial Intelligence
1 Module 2: Fundamental Concepts Problems Programs –Programming languages.
Approaches to AI. Robotics Versus Artificial Intelligence.
Lecture 2: Fundamental Concepts
1 Module 2: Fundamental Concepts Problems Programs –Programming languages.
1 Lecture 33 Introduction to Artificial Intelligence (AI) Overview  Lecture Objectives.  Introduction to AI.  The Turing Test for Intelligence.  Main.
Artificial Intelligence and Lisp Lecture 13 Additional Topics in Artificial Intelligence LiU Course TDDC65 Autumn Semester, 2010
CSCI 3 Introduction to Computer Science. CSCI 3 Course Description: –An overview of the fundamentals of computer science. Topics covered include number.
PSU CS 370 – Artificial Intelligence Dr. Mohamed Tounsi Artificial Intelligence 1. Introduction Dr. M. Tounsi.
COMP 3009 Introduction to AI Dr Eleni Mangina
Introduction to Artificial Intelligence Prof. Kathleen McKeown 722 CEPSR, TAs: Kapil Thadani 724 CEPSR, Phong Pham TA Room.
Introduction to AI, H. Feili 1 Introduction to Artificial Intelligence LECTURE 1: Introduction What is AI? Foundations of AI The.
C463 / B551 Artificial Intelligence Dana Vrajitoru Introduction.
Reference: "Artificial Intelligence, a Modern Approach, 3rd ed."
Artificial Intelligence Dr. Paul Wagner Department of Computer Science University of Wisconsin – Eau Claire.
CISC4/681 Introduction to Artificial Intelligence1 Introduction – Artificial Intelligence a Modern Approach Russell and Norvig: 1.
19/13/2015CS360 AI & Robotics CS360: AI & Robotics TTh 9:25 am - 10:40 am Shereen Khoja
Artificial Intelligence: Its Roots and Scope
Artificial Intelligence: Definition “... the branch of computer science that is concerned with the automation of intelligent behavior.” (Luger, 2009) “The.
1 Mathematical Institute Serbian Academy of Sciences and Arts, Belgrade DEUKS Meeting Valencia, September 9-11, 2008, Valencia New PhD modules proposal.
Artificial Intelligence: An Introduction Definition of AI Foundations of AI History of AI Advanced Techniques.
Artificial Intelligence Introductory Lecture Jennifer J. Burg Department of Mathematics and Computer Science.
Complexity theory and combinatorial optimization Class #2 – 17 th of March …. where we deal with decision problems, finite automata, Turing machines pink.
Artificial Intelligence Tarik Booker. What we will cover… History Artificial Intelligence as Representation and Search Languages used in Artificial Intelligence.
Artificial Intelligence Course Overview Course By Sukchatri PRASOMSUK University of Phayao, ICT.
Course Overview and Road Map Computability and Logic.
1 CS 2710, ISSP 2610 Foundations of Artificial Intelligence introduction.
1 The main topics in AI Artificial intelligence can be considered under a number of headings: –Search (includes Game Playing). –Representing Knowledge.
WEEK INTRODUCTION IT440 ARTIFICIAL INTELLIGENCE.
Introduction to Artificial Intelligence CS 438 Spring 2008 Today –AIMA, Chapter 1 –Defining AI Next Tuesday –Intelligent Agents –AIMA, Chapter 2 –HW: Problem.
KNOWLEDGE BASED SYSTEMS
Artificial Intelligence “Introduction to Formal Logic” Jennifer J. Burg Department of Mathematics and Computer Science.
University of Kurdistan Artificial Intelligence Methods (AIM) Lecturer: Kaveh Mollazade, Ph.D. Department of Biosystems Engineering, Faculty of Agriculture,
Introduction to Artificial Intelligence CS 438 Spring 2008.
What is Artificial Intelligence?
CMPT 308 — Computability and Complexity Fall 2004 Instructor: Andrei Bulatov, TA: Ramsay Dyer, Learning.
A Brief History of AI Fall 2013 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University.
CS382 Introduction to Artificial Intelligence Lecture 1: The Foundations of AI and Intelligent Agents 24 January 2012 Instructor: Kostas Bekris Computer.
COMP 4640 Intelligent & Interactive Systems Cheryl Seals, Ph.D. Computer Science & Software Engineering Auburn University.
1 Artificial Intelligence & Prolog Programming CSL 302.
Artificial Intelligence Hossaini Winter Outline book : Artificial intelligence a modern Approach by Stuart Russell, Peter Norvig. A Practical Guide.
COMPUTER SYSTEM FUNDAMENTAL Genetic Computer School INTRODUCTION TO ARTIFICIAL INTELLIGENCE LESSON 11.
Artificial Intelligence
ECE457 Applied Artificial Intelligence R. Khoury (2007)Page 1 Please pick up a copy of the course syllabus from the front desk.
Introduction to Artificial Intelligence Heshaam Faili University of Tehran.
Introduction to Artificial Intelligence Prof. Kathleen McKeown 722 CEPSR Tas: Andrew Rosenberg Speech Lab, 7 th Floor CEPSR Sowmya Vishwanath TA Room.
Theory of Computation. Introduction We study this course in order to answer the following questions: What are the fundamental capabilities and limitations.
CS440/ECE448: Artificial Intelligence. Section Q course website:
Chapter 7. Propositional and Predicate Logic
Artificial Intelligence
Artificial Intelligence and Lisp Lecture 13 Additional Topics in Artificial Intelligence LiU Course TDDC65 Autumn Semester,
Topics Covered in COSC 6368 More general topics:
First work in AI 1943 The name “Artificial Intelligence” coined 1956
Course Instructor: knza ch
Artificial Intelligence introduction(2)
CSE 415 Introduction to Artificial Intelligence Winter 2004
TA : Mubarakah Otbi, Duaa al Ofi , Huda al Hakami
Artificial Intelligence 0. Course Overview
CSE 415 Introduction to Artificial Intelligence Winter 2003
COMP3710 Artificial Intelligence Thompson Rivers University
Introduction to Artificial Intelligence Instructor: Dr. Eduardo Urbina
Artificial Intelligence
AI Application Session 12
Presentation transcript:

Artificial Intelligence: Introduction Department of Computer Science & Engineering Indian Institute of Technology Kharagpur

CSE, IIT Kharagpur2 What is AI? Acting humanly –Turing Test (1950) The computer is interrogated by a human via a teletype It passes if the human cannot tell if there is a computer or human at the other end –Natural Language Processing –Knowledge Representation –Automated Reasoning –Machine Learning –Computer vision and Robotics

CSE, IIT Kharagpur3 What is AI? Thinking humanly –Cognitive Science The study of how we do what we do How to make the computer do it in the same way Thinking rationally –Formal Logic

CSE, IIT Kharagpur4 Fundamentals The notion of expressing computation as an algorithm Godel’s Incompleteness Theorem (1931): –In any language expressive enough to describe the properties of natural numbers, there are true statements that are undecidable: that is, their truth cannot be established by any algorithm. Church-Turing Thesis (1936): –The Turing machine is capable of computing any computable function –This is the accepted definition of computability The notion of intractability –NP-completeness –Reduction

CSE, IIT Kharagpur5 Course Outline Problem solving by search –State space search, Problem reduction search, Game playing Logic and deduction –First-order logic, Temporal logic, Deduction Planning Reasoning under Uncertainty Learning Additional Topics