Artificial Intelligence (Written Midterm) Flashcards
(96 cards)
What is intelligence?
The ability to:
* Gain and apply experience.
* Develop knowledge, skills, and problem-solving abilities.
* Adapt to new situations.
What is human intelligence?
Arises from biological processes.
What does artificial intelligence (AI) refer to?
Systems that can:
* Think like humans or act rationally.
* Solve complex problems using algorithms and technology.
What is Narrow AI?
Specialized in specific tasks (e.g., recommendation systems).
What is General AI?
Hypothetical, capable of performing any human task (understand, learn, and apply knowledge).
What is Superintelligence?
Theoretical, surpassing human intelligence.
What is the Turing-test approach in AI?
Acting humanly; example: Chatbot that can successfully ‘look human’.
What is the cognitive modeling approach in AI?
Thinking humanly; involves experimental observation and study of humans and living beings.
What does the logic-based approach in AI focus on?
Thinking rationally; includes syllogism, deductive systems, formal logic, and probability theory.
What is a rational agent?
An entity acting autonomously that acts to maximize its performance measure.
What is the role of sensors and actuators in agents?
Sensors perceive the environment (e.g., camera, microphone) and actuators affect the environment (e.g., motors, display).
What is the sequence in relation to an agent’s perception?
Everything the agent has ever perceived.
What does a rational agent’s behavior depend on?
Its built-in knowledge and the entire sequence of observations it has observed so far.
How is an agent’s behavior mathematically described?
By a function that maps the perception sequence to action.
What are the types of environments an agent can operate in?
- Fully or partially observable.
- Single- or multi-agent.
- Deterministic or non-deterministic (stochastic).
- Episodic or serial.
- Static or dynamic.
- Discrete or continuous.
- Rules are known or unknown.
True or False: A rational agent’s performance should be measured and adjusted to expectations.
True.
What is the formal definition of a search problem?
A search problem is defined by the state space, initial state, goal state, actions, state-transition model, and cost function.
A search problem involves finding a path from the initial state to the goal state using available actions.
What does the state space represent in a search problem?
The state space is the set of all possible states of the environment.
It encompasses every configuration that the agent might encounter.
What is the initial state in a search problem?
The initial state is the agent’s starting state.
This is where the search begins.
What is the goal state in a search problem?
The goal state is the set of one or more target states to be achieved.
It defines what the search is trying to accomplish.
What are the actions in a search problem?
Actions are a finite set of actions available in a given state.
These are the moves or operations that the agent can perform.
What is a state-transition model?
A state-transition model defines the result of each action.
It specifies how actions change the current state.
What is a cost function in a search problem?
A cost function is used for performance measurement, specifying the cost of actions.
It helps evaluate the efficiency of different paths.
What additional elements are associated with search problems?
Additional elements include:
* Path
* Solution
* Optimal solution
* State-transition graph
These elements help in understanding the structure and outcomes of the search process.