Quiz Questions Flashcards
(42 cards)
[Prob] Bayes’ Theorem is used in constructing ________
belief networks
[Lecture12] According to the class discussion, _____ probability associated with proposition X is the degree of belief accorded to it in the absence of any other information
prior
[Lecture12] According to the class discussion.Consider the wumpus world as shown below.
The Known facts are: { not Pit[1,1], not Pit[1,2], not Pit[2,1] }, and the presence of breeze (denoted as b) in cells: b = { b[1,2], b[2,1] }. The Query is for the probability of Pit in each frontier cell of { [1,3], [2,2], [3,1] }, and especially to compute what is the probability of Pit in the cell [1,3], that is, P(Pit[1,3]).
What is the normalization constant for this case to compute P(Pit13|known,b)?
Select the best answer as discussed in the class.
1/((0.2)3 + 3x(0.2)2x0.8 + 0.2x(0.8)2)
Lecture12] According to the class discussion. Consider two random variables s and m. Which one of the following is NOT correct?
P(s|m) = P(s,m) / [P(m|s)P(m) + P(m|¬s)P(m)]
[Prob] Uncertainty is a property of all environments that are ____________
partially observable or stochastic
[Lecture12] According to the class discussion.There are two discrete random variables X and Y where X describes weather conditions, with the domain: X={sunny, rain, cloudy, snow}, and Y describes clothes to wear, with the domain: Y={t-shirt, long-sleeves, coat}. The distributions of X and Y are:
X = <0.331, 0.26, 0.159, 0.25>
Y = <0.5, 0.3, 0.2>
And the joint probabilities are:
P(t-shirt, sunny)=0.32 P(t-shirt, rain)=0.08 P(t-shirt, cloudy)=0.09
P(t-shirt, snow)=0.01 P(long-sleeves, sunny)=0.01 P(long-sleeves, rain)=0.15
P(long-sleeves, cloudy)=0.05 P(long-sleeves, snow)=0.09 P(coat, sunny)=0.001
P(coat, rain)=0.03 P(coat, cloudy)=0.019 P(coat, snow)=0.15
To guess the weather from the clothes people wear: P(X|Y), What is Normalization Constant α to compute P(sunny | t-shirt).
α (0.32+0.08+0.09+0.01) = 1
[Lecture12] According to the class discussion.Consider the axioms of Probability (where a and b are random variables). Which one of the following is NOT correct?
P(a ∧ b) = P(a) * P(b)
[Lecture12] Consider the following table as we discussed in the class.
toothache not toothache
————|——————|———————|
catch !catch | catch !catch
————|——-|———–|———-|———–|
cavity | 0.18 | 0.012 | 0.072 | 0.0008
————|——-|———–|———-|———–|
!cavity | 0.016 | 0.064 | 0.144 | 0.576
————|——-|———–|———-|———–|
Let X be P(cavity | toothache), where αbe the normalization constant and X = αP(cavity, toothache). Then α = __________.
1/P(cavity, toothache)
[Prob] Probabilities are employed in ________ methods.
stochastic
[Prob] Beliefs ____________.
are changeable
[Lecture13] According to the class discussion. Consider the following probability tables for fever (concerning only three causes of cold, flu, malaria). These causes are independent of each other and are all causes of Fever.
What is the P(Fever |¬ Cold, ¬ Flu, Malaria) for the Entry (2)?
Probabilities of individual inhibitions
P( fever | cold, flu, malaria) = 0.6
P(-fever | -cold, flu, malaria) = 0.2
P(-fever| -cold, flu,malaria) = 0.1
From this information, the entire CPT can be built
0.9
[Lecture13] According to the class discussion. Which one of the following is NOT correct?The Bayesian Network consists of or is: ________.
A graph which may have a cycle but with leaf node only.
[Lecture13] According to the class discussion.Consider the following probability tables for fever (concerning only three causes of cold, flu, malaria). These causes are independent of each other and are all causes of Fever.
What is the P(Fever | ¬ Cold, ¬ Flu, ¬ Malaria) for the Entry (1)?
0.0
[Lecture13] According to the class discussion.Consider the following factoring equation and tables provided.
What is the answer for entry (1) in Table f(ExAxJxM) (that is, the right-most table)?
(E1) x (F1) + (E2) x (F2)
[AI-Ch10Plan] According to the authors. If we add function symbols to the language (e.g., blocks world), then _____.Which one of the following statements is NOT correct?
The Bounded problem remains undecidable even in the presence of function symbols.
[AI-Ch10Plan] According to the authors. Consider PDDL. Actions are described by a set of action schemas that implicitly define the ACTIONS(s) and _____ functions needed to do a problem-solving search.
RESULT(s, a)
[AI-Ch10Plan] According to the authors. The subgoal independence assumption can be ______ when subplans contain redundant actions—for instance, two actions that could be replaced by a single action in the merged plan.
pessimistic
[AI-Ch10Plan] According to the authors. The ______ heuristic drops all preconditions from action becomes applicable in every state, and any single goal fluent can be achieved in one step (if there is an applicable action—if not, the problem is impossible).
ignore preconditions
[AI-Ch10Plan] According to the authors. Consider PDDL. Which one of the following statements is NOT correct?
A fluent can be treated as a disjunction of potential actions, which can be manipulated with set operations.
(A in ACTIONS(S)) if and only if PRECONDITION(A) entails S.
The set of action schema provides the state of the system in planning.
[AI-Ch10Plan] According to the authors. With a planning graph, one can estimate the cost of achieving any goal literal G from a state S as the level at which the goal literal G first appears in planning graph constructed from initial state S. We call this the ______ of G.
level cost
[AI-Ch10Plan] According to the authors. Consider Planning Graph. To estimate the cost of a conjunction of goals, there are three simple approaches. The ____ heuristic, following the subgoal independence assumption, returns the sum of the level costs of the goals.
level-sum
[AI-Ch10Plan] According to the authors. Consider Planning Graph. For some heuristic guidance for choosing among actions during the backward search, one approach that works well in practice is a greedy algorithm based on the level cost of the literals. For any set of goals, we proceed in the fallowing order: Pick first the literal with the (1) ____ level cost. To achieve that literal, prefer actions with easier preconditions. That is, choose an action such that the sum (or maximum) of the level costs of its preconditions is (2) ____.
highest, smallest
[AI-Ch10Plan] According to the authors. The result of executing action A in state S is defined as a state S’ which is represented by the set of fluents formed by starting with S. Which one of the following statements is NOT correct?
As with all states, the open-world assumption is used. That is, any atoms that are not mentioned are false.
The fluents in the action schema should explicitly refer to time of each action.
[AI-Ch10Plan] According to the authors. Consider Planning Graph. Planning is ______.
PSPACE-complete