Skip to content
Sahithyan's S3
1
Sahithyan's S3 — Artificial Intelligence

Problem Solving Agent

A form of goal-based agents. An agent that plans ahead. Considers a sequence of actions that form a path to a goal state. Uses atomic representation. May or may not be optimal.

Usually designed for simple environments: single-agent, episodic, fully observable, static, discrete, and deterministic.

The computational process undertaken by a problem-solving agent.

The thinking process of a problem-solving agent.

Goals are what needs to be achieved.

The agent specifies:

  • current state
  • possible actions
  • goal test
  • transitions

The agent simulates sequences of actions in its model until it finds a sequence of actions that reaches the goal (solution).

The agent executes the actions in-order.