Assignment 1: AI Agents and Search Algorithms

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering AI agent structures, search algorithms (GBFS, A*, Hill Climbing), reflex agent types, and AI classification levels (ANI, AGI, ASI).

Last updated 6:56 PM on 9/3/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

AI Agent

An entity designed to interact with the environment, collect information through sensors, analyze it, and perform actions to achieve a goal.

2
New cards

Sensor

A component of an AI agent that collects information from its environment, such as through sensors, cameras, or user input.

3
New cards

Effectors (Actuators)

Components of an AI agent that perform actions in the environment to achieve a goal.

4
New cards

Greedy Best-First Search (GBFS)

An informed search algorithm that expands the node that appears closest to the goal based on a heuristic function f(n)=h(n)f(n) = h(n).

5
New cards

h(n)h(n)

The estimated cost from current node nn to the goal node in heuristic search algorithms.

6
New cards

AA^* Algorithm

An efficient informed search algorithm that combines the actual cost of reaching a node with the estimated cost from that node to the goal using f(n)=g(n)+h(n)f(n) = g(n) + h(n).

7
New cards

g(n)g(n)

The actual cost from the start node to the current node in the AA^* algorithm.

8
New cards

f(n)f(n)

The total estimated cost of the path in informed search algorithms such as AA^*.

9
New cards

Simple Reflex Agent

A type of AI agent that selects actions based only on the current percept, ignoring percept history, using condition-action rules.

10
New cards

Condition-Action Rule

An IF-THEN rule used by a simple reflex agent to map the current percept directly to an action.

11
New cards

Artificial Narrow Intelligence (ANI)

AI designed for a specific task with low flexibility, such as voice recognition or recommendation systems.

12
New cards

Artificial General Intelligence (AGI)

AI capable of performing any intellectual task like a human, featuring high flexibility based on real-world experience.

13
New cards

Artificial Super Intelligence (ASI)

A hypothetical future AI concept that would surpass human intelligence across all intellectual tasks with very high flexibility.

14
New cards

Hill Climbing Algorithm

A local heuristic search algorithm used to solve optimization problems by starting at an initial state and continuously moving to a neighboring state with a better heuristic value.