Artificial Intelligence Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Admissable heuristic

A

Incomputer science, specifically inalgorithmsrelated topathfinding, aheuristic functionis said to beadmissibleif it never overestimates the cost of reaching the goal, i.e. the cost it estimates to reach the goal is not higher than the lowest possible cost from the current point in the path.

It is related to the concept ofconsistent heuristics. While all consistent heuristics are admissible, not all admissible heuristics are consistent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Hamming distance

A

Ininformation theory, theHamming distancebetween twostringsof equal length is the number of positions at which the correspondingsymbolsare different. In other words, it measures the minimum number ofsubstitutionsrequired to change one string into the other, or the minimum number oferrorsthat could have transformed one string into the other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Consistent heuristic

A

In the study ofpath-finding problemsinartificial intelligence, aheuristic functionis said to beconsistent, ormonotone, if its estimate is always less than or equal to the estimated distance from any neighbouring vertex to the goal, plus the cost of reaching that neighbour.

Formally, for every nodeNand eachsuccessorPofN, the estimated cost of reaching the goal fromNis no greater than the step cost of getting toPplus the estimated cost of reaching the goal fromP.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Heuristic

A

A heuristic function, also simply called a heuristic, is a function that ranks alternatives in search algorithms at each branching step based on available information to decide which branch to follow. For example, it may approximate the exact solution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Taxicab geometry (Manhattan distance)

A

A taxicab geometry or a Manhattan geometry is a geometry whose usual distance function or metric of Euclidean geometry is replaced by a new metric in which the distance between two points is the sum of the absolute differences of their Cartesian coordinates.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly