Curriculum
Course: Artificial Intelligence
Login
Text lesson

Unit 1: Summary – Artificial Intelligence

Artificial Intelligence: Approaches, History, and Foundations

Introduction

Artificial Intelligence (AI) represents one of the most transformative and disruptive fields within Computer Science. As the discipline continues to evolve, it plays a pivotal role in enabling machines to mimic cognitive functions like learning, reasoning, and problem-solving

1. Approaches to AI: Introduction and Applications

What is Artificial Intelligence?

Artificial Intelligence refers to the simulation of human intelligence in machines that are programmed to think, learn, and make decisions. These machines can perform tasks such as recognizing speech, interpreting images, solving complex problems, and even understanding natural language.

Symbolic vs. Sub-symbolic Approaches

There are several foundational approaches in AI. Understanding these helps in choosing the right technique for the right problem.

a) Symbolic AI (Good Old-Fashioned AI)

  • Based on explicit representations of knowledge using symbols and rules.
  • Programs operate using logical inference.
  • Ideal for structured problems like theorem proving or rule-based expert systems.
  • Examples: Chess programs, rule-based expert systems.

b) Sub-symbolic AI

  • Focuses on learning from data rather than explicit rules.
  • Inspired by how the human brain works.
  • Includes Machine Learning, Neural Networks, and Deep Learning.
  • Ideal for unstructured or complex data like images, audio, and text.

c) Hybrid Systems

  • Combine symbolic reasoning and sub-symbolic learning.
  • Example: An intelligent tutoring system using both logic and neural networks.

Applications of AI

AI’s impact is vast and continually expanding. Key areas include:

  • Healthcare: Diagnosis systems, medical image analysis.
  • Finance: Fraud detection, algorithmic trading.
  • Retail: Chatbots, personalized recommendation systems.
  • Transportation: Self-driving cars, traffic optimization.
  • Education: AI-powered tutoring systems, plagiarism detection.
  • Agriculture: Crop monitoring using drones and AI sensors.

2. History of AI: From Turing to Modern Day

Alan Turing – The Father of AI

  • In 1950, Alan Turing published the landmark paper “Computing Machinery and Intelligence”, where he posed the question: Can machines think?
  • He introduced the Turing Test — a criterion for determining if a machine exhibits human-like intelligence.

Timeline of Key Developments

Year

Milestone

1956

Term “Artificial Intelligence” coined at Dartmouth Conference.

1966

ELIZA – First chatbot simulating conversation.

1970s

Development of expert systems like MYCIN (medical diagnosis).

1980s

Rise of machine learning and connectionist models (neural nets).

1997

IBM’s Deep Blue defeats chess champion Garry Kasparov.

2012

Deep Learning boom begins (ImageNet competition).

2016

AlphaGo defeats Go world champion — huge leap in reinforcement learning.

2020s

Rise of transformer-based models like GPT and BERT.

AI’s Evolution and Winter

AI has gone through periods of hype and disillusionment, known as AI winters (e.g., 1974–1980, late 1980s), often due to over-promising and under-delivering. Each cycle, however, led to more robust theories and technologies.

3. Application Areas & Criteria for Success

Major Application Areas

  • Natural Language Processing (NLP): Machine translation, sentiment analysis.
  • Robotics: Autonomous movement, vision processing.
  • Computer Vision: Object detection, facial recognition.
  • Game Playing: Chess, Go, video game AI.
  • Intelligent Assistants: Siri, Alexa, Google Assistant.
  • Decision Support Systems: Healthcare diagnosis, financial advisors.

Criteria for Success in AI Systems

A successful AI system typically:

  • Solves real-world problems efficiently
  • Learns and adapts over time
  • Generalizes across tasks
  • Is interpretable and explainable
  • Operates ethically and safely

For example, an AI fraud detection system in banking must not only detect fraud accurately but also adapt to new fraudulent patterns and explain decisions for audit purposes.

4. Characteristics of AI Problems

Understanding the nature of a problem helps in choosing the right AI strategy.

Important Characteristics:

Characteristic

Description

Fully vs. Partially Observable

Is the system’s state fully known at each step?

Deterministic vs. Stochastic

Is the next state predictable?

Static vs. Dynamic

Does the environment change during decision-making?

Discrete vs. Continuous

Are variables countable or infinite?

Episodic vs. Sequential

Are actions independent or do they impact future decisions?

For instance, a chess game is deterministic and fully observable, whereas autonomous driving is dynamic, partially observable, and stochastic.

5. Problem Representation in AI

The ability of an AI system to represent and solve problems is fundamental. Different problems require different representations.

 a) State Space Representation

  • States: All possible configurations of the system.
  • Initial State: Where the problem-solving begins.
  • Actions: Possible moves or operations.
  • Goal State: The desired solution.
  • Example: Solving a puzzle like the 8-puzzle or pathfinding in a maze.

AI search algorithms like BFS, DFS, or A* are often used here.

b) Problem Reduction Representation

  • Problems are broken into sub-problems, forming an AND-OR graph.
  • Common in logic-based systems or planning algorithms.
  • Useful for diagnostic systems, where each symptom narrows down possible causes.

c) Production Systems

  • Consist of:

A set of rules (productions) in the form: IF <condition> THEN <action>

Working memory that stores current facts.

Control strategy to select which rule to apply.

  • Widely used in expert systems like MYCIN.

6. Introduction to Agents

 What is an Agent?

An agent is an entity that perceives its environment through sensors and acts upon it through actuators. In AI, we aim to build intelligent agents that act rationally to achieve goals.

Agent Types

Type

Description

Simple Reflex Agent

Reacts only to current input (no memory).

Model-based Reflex Agent

Has internal memory of past states.

Goal-based Agent

Uses goals to guide behavior.

Utility-based Agent

Chooses actions based on maximizing expected utility.

Learning Agent

Improves performance over time by learning.

Example: A self-driving car is a complex utility-based, learning agent.

7. Intelligent Software Systems

 What Are They?

These are software systems that incorporate AI to make intelligent decisions. Unlike traditional software, they:

  • Learn from data.
  • Adapt to new inputs.
  • Automate complex tasks.

Components

  • Knowledge Base: Facts and rules about the domain.
  • Inference Engine: Applies rules to infer conclusions.
  • User Interface: Interacts with users.
  • Learning Module: Enables system to improve over time.

Examples:

  • Expert Systems: Emulate decision-making abilities of human experts.
  • Recommender Systems: Suggest items (e.g., movies, books) based on user preferences.
  • Chatbots: Engage in intelligent conversation using NLP.

Summary

Artificial Intelligence is a multidisciplinary field combining logic, learning, perception, and reasoning.

The various approaches to AI, including symbolic and sub-symbolic techniques.

  • A historical progression from Turing’s foundational ideas to modern deep learning systems.
  • Diverse application areas and criteria for AI system success.
  • The characteristics of AI problems and how they impact representation and solution strategies.
  • Core AI concepts like state space, problem reduction, and production systems.

A detailed introduction to intelligent agents and software systems built with AI.

Scroll to Top