SlideShare a Scribd company logo
1 of 13
Download to read offline
Written examination
TIN172/DIT410, Artificial Intelligence
Contact person: Peter Ljunglöf, 0736–24 24 76
(I will visit some time around 15:30 to answer questions)
19 August 2014, 14:00–18:00
This examination consists of eight basic questions (numbered 1–8) and three advanced (numbered A–C).
There are no points awarded for the questions, but you can either give a correct answer, or fail.
Grading
The number of questions (basic plus advanced) that you need to answer correctly in order to get a certain
grade is shown in the following table:
Basic questions Advanced questions Final grade
≥ 5 — 3/G
≥ 6 ≥ 1 4/VG
≥ 7 ≥ 2 5
Accessories
• Paper and pencil.
• Crayons, paper glue, scissors.
• One A4 cheat sheet with any information you want on it.
• No books or calculators.
Notes
• Answer directly on the question page,
but you can also use empty papers if you run out of space.
• Write readable, and explain your answers!
TIN172/DIT410 Written examination 19 August 2014
1 Complexity dimensions of poker
Assume that you want to write a program that can play the card game of poker against other players. Classify
this program according to the complexity dimensions below. (Note that you could select more than one
value). Also explain why you chose that/those value(s).
Dimension Possible values Value(s) Explanation
Modularity (F)lat
(M)odular
(H)ierarchical
Anything goes (with a good explanation).
Representation (S)tates
(F)eatures
(I)ndividuals
+relations
Anything goes (with a good explanation).
Planning
horizon
(S)tatic
(F)inite
(I)ndefinite
(∞)Infinite
It’s not static, but the other ones are fine for some
implementations
Observability (F)ull
(P)artial
P
The agent cannot see the other players’ cards, or the deck.
Dynamics (D)eterministic
(S)tochastic Depends on how you view dynamicity: it’s deterministic in
the sense that you know the results of your own actions, but
it’s stochastic in the way the other agents react.
Number of
agents
(S)ingle
(M)ultiple
M
Since the computer plays against several opponents, it has to
be able to reason about them.
Answer: Most answers are fine, if you have a good explanation. For specific comments, see the table.
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
2 Escaping a maze
You ( ) are trapped in a maze and needs to escape from it. Unfortunately there is a locked door (÷) between
you and the exit (⇒), and you have to take the key ( ) before you can unlock the door.
You are not facing any special direction and can move one step in any direction at any time step, as long as
there is no wall in the way. Alternatively you can pick up the key (if you are in the right location), or you
can unlock the door (if you have the key and are in the right location). Neither the key nor the door can
move around on their own. Your goal is to find a plan for escaping the maze using as few moves as possible.
Assume that the grid has size M × N.
⇒
÷
Give a suitable representation of the states in this searching problem.
Answer: 〈m, n, k, d〉 or 〈m, n, k〉, where
• 1 ≤ m ≤ M, 1 ≤ n ≤ N, representing the position of the agent,
• k ∈ {true,false} tells whether the key has been collected, and
• d ∈ {true,false} tells whether the door is unlocked.
Note that d is not strictly necessary, since you can never drop the key or lock the door2 anyway.
What is the size of the state space?
Answer:
M × N × 2 × 2, alternatively M × N × 2.
One can also reason that it’s impossible that the door is unlocked but the agent is not carrying the key, which
means that one of the 2 × 2 boolean alternatives disappear, so we get M × N × 3.
Finally one can argue that to the right of the door, the agent has to carry the key and the door must be
unlocked, so we can shrink the state space even further.
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
3 Cost-based search
The following is a representation of a search problem, where A is the start node and G is the goal.
There is also a heuristics h which is defined in the table. Note that h(B) is unknown.
A
B
C
D
E
F
G
1
4
2
3
5
2
4
3
1
n h(n)
A 5
B ?
C 4
D 3
E 3
F 1
G 0
What values of h(B) make h admissible?
Answer: 0 ≤ h(B) ≤ 6, since the minimal cost from B to G is 6
For each of the following search strategies, mark which of the listed paths it could return.
Assume that the heuristics h is admissible. Note that for some search strategies, the returned path might
depend on tie-breaking. In these cases, make sure to mark all paths that could be returned.
Search algorithm A− C − E − G A− B − C − E − G A− B − D − G A− B − D − F − G
Depth-first X X X X
Breadth-first X X
A∗ with heuristic h X
Answer: See the table
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
4 Cryptoarithmetic puzzle
A cryptarithmetic puzzle is a mathematical game where the digits of some numbers are represented by let-
ters (or symbols). Each letter represents a unique digit. The goal is to find the digits such that a given
mathematical equation is verified.
Formulate the following puzzle as a CSP:
O D D
+ O D D
E V E N
Answer:
One possibility is to introduce two additional carry variables, cN , cE:
(2D) % 10 = N [1]
(2D) ÷ 10 = cN [2]
(2D + cN ) % 10 = E [3]
(2D + cN ) ÷ 10 = cE [4]
(2O + cE) % 10 = V [5]
(2O + cE) ÷ 10 = E [6]
D, N, V ∈ {0,...,9}
O, E ∈ {1,...,9}
cN , cE ∈ {0,1}
(Where ÷ and % correspond to integer division and remainder).
And here is the correpsponding constraint graph:
N D cN
cE
E
O
V
1 2
3
4 5
6
Note that it can be solved without extra carry variables, but then the constraints become much larger.
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
5 Knowledge base
a ← b ∧ c. a ← g. a ← c ∧ k. b ← g ∧ j. b ← k.
b ← j ∧ a. c ← f . d ← m ∧ j. d ← p ∧ a. f ← m.
g ← f ∧ p. k ← j. k ← b ∧ p. m. p.
Give a nontrivial model of the knowledge base above.
(A trivial interpretation or model is where all atoms are true or all atoms are false).
Answer:
There are only two nontrivial models:
• the minimal model: M = {a, c, d, f , g, m, p}
• the minimal model plus b and k: M ∪ {b, k}
Give a nontrivial interpretation that is not a model of the knowledge base.
Answer:
Any interpretation that assigns at least one of the following atoms to false: a, c, d, f , g, m, p.
Alternatively, any interpretation that assigns k to true but b and j to false.
(And a lot of other interpretations)
Give all atoms that are logical consequences of the knowledge base.
Answer: a, c, d, f , g, m, p
Give all atoms that are not logical consequences of the knowledge base.
Answer: b, j, k
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
6 Rolling the dice
Assume that you roll two fair 6-sided dice.
What is the probability that one of them turns up six ( ), given that their sum is 8?
Answer:
Let S = “one of the dice turns up six” = {16,...,56,66,65,...,61},
and T = “their sum is 8” = {26,35,44,53,62}.
S ∩ T = {26,62}, so |S ∩ T| = 2 and |T| = 5.
P(S|T) = P(S, T)/P(T) = |S ∩ T|/|T| = 2/5
What is the probability that one of them turns up six ( ), given that they show different values?
Answer:
Let S = “one of the dice turns up six” = {16,...,56,66,65,...,61},
and T = “they show different numbers” = Ω − {11,...,66}.
S ∩ T = S − {66}, so |S ∩ T| = |S| − 1 = 10 and |T| = 62
− 6 = 30.
P(S|T) = P(S, T)/P(T) = |S ∩ T|/|T| = 1/3
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
7 Belief network
a s
t l b
e
x d
Mark which of the following independence assumptions that are true in the belief network above.
Assumption true / false
a and t are independent false
a and s are independent true
l and b are conditionally independent given s true
s and d are conditionally independent given e false
s and x are conditionally independent given e true
Answer: See the table
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
8 A medical conundrum
(Note: the figures below are not really accurate, as they are liberally adapted from different studies.)
Many patients arriving at an emergency room, suffer from chest pain. This may indicate acute coronary
syndrome (ACS). Patients suffering from ACS that go untreated may die with probability 2% in the next
few days. Successful diagnosis results lowers the short-term mortality rate to 0.2%. Consequently, a prompt
diagnosis is essential.
Approximately 50% of patients presenting with chest pain turn out to suffer from ACS (either acute myocar-
dial infraction or unstable angina pectoris). Approximately 10% suffer from lung cancer.
Of ACS sufferers in general, 2⁄3 are smokers and 1⁄3 non-smokers. Only 1⁄4 of non-ACS sufferers are smokers.
In addition, 90% of lung cancer patients are smokers. Only 1⁄4 of non-cancer patients are smokers.
Assumption 1 A patient may suffer from none, either or both conditions!
Assumption 2 When the smoking history of the patient is known, the development of cancer or ACS are
independent.
One can perform an ECG to test for ACS. An ECG test has sensitivity of 66.67% (i.e., it correctly detects 2⁄3 of
all patients that suffer from ACS), and a specificity of 75% (i.e., 1⁄4 of patients that do not have ACS, still test
positive).
An X-ray can diagnose lung cancer with a sensitivity of 90% and a specificity of 90%.
Assumption 3 Repeated applications of a test produce the same result for the same patient, i.e. that ran-
domness is only due to patient variability.
Assumption 4 The existence of lung cancer does not affect the probability that the ECG will be positive.
Conversely, the existence of ACS does not affect the probability that the X-ray will be positive.
For the problem questions, please see next page.
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
A medical conundrum, the questions
What does the description on the previous page imply about the dependencies between the patient condition,
smoking and test results? Assume the following events (i.e., variables that can be either true or false):
A: ACS C: Lung cancer S: Smoking E: Positive ECG result X: Positive X-ray result
Draw a belief network for the problem.
Answer:
According to our information, only the presence of ACS affects the results of ECG, and only the presence of
lung cancer affects the results of the X-ray. Consequently P(E|A, C) = P(E|A) and P(X|A, C) = P(X|C). At the
same time, smoking is linked with both ACS and cancer.
S
A E
C X
What is the probability that the patient suffers from ACS if the patient is a smoker?
Answer:
We need to find out P(A|S), and Bayes theorem says that P(A|S) = P(S|A)P(A)/P(S). From the description
we know that P(S|A) = 2/3 (“of ACS sufferers in general, 2⁄3 are smokers”) and P(A) = 1/2 (“approximately
50% of patients presenting with chest pain turn out to suffer from ACS”). P(S) can be calculated like this:
P(S) = P(S|¬A)P(¬A) + P(S|A)P(A) = 1/4 × 1/2 + 2/3 × 1/2 =
11
24
From the text we know that P(S|¬A) = 1/4 (“only 1⁄4 of non-ACS sufferers are smokers”), and we also know
that P(¬A) = 1 − P(A) = 1/2.
Then we plug this in Bayes formula to obtain:
P(A|S) =
P(S|A)P(A)
P(S)
=
2/3 × 1/2
11/24
=
24
33
=
8
11
≈ 72.7%
So smoking is a strong indicator for heart attack.
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
A [Advanced] Cost-based search, continued
The search graph and heuristics from question 3 is repeated here.
A
B
C
D
E
F
G
1
4
2
3
5
2
4
3
1
n h(n)
A 5
B ?
C 4
D 3
E 3
F 1
G 0
Recall that a heuristics is monotone, or consistent, if the difference in the heuristic values for any two nodes
is always less than or equal to the actual cost of the lowest-cost path between the nodes. Or in mathematical
notation: for any two nodes n and n , |h(n) − h(n )| ≤ lowest-cost(n, n ).
What values of h(B) make h monotone/consistent?
Answer: It’s enough to check these constraints:
h(A) ≤ cost(AB) + h(B)
h(B) ≤ cost(BC) + h(C)
h(B) ≤ cost(BD) + h(D)
This gives us 4 ≤ h(B) ≤ 6. (Note that this inequality is inclusive.)
What values of h(B) will cause A∗ search to expand node A, then node C, then node B in order?
Answer:
f (AB) = cost(AB) + h(B) = 1 + x
f (AC) = cost(AC) + h(C) = 4 + 4 = 8
f (ACE) = cost(ACE) + h(E) = 9 + 3 = 12
AC should be expanded before AB, which should be expanded before ACE. I.e., f (AC) < f (AB) < f (ACE),
i.e., 8 < 1+ x < 12. We don’t have to reason about the D node, since it cannot be expanded before B anyway.
So, 7 < h(B) < 11. (Note that this inequality is strict.)
What values of h(B) will cause A∗ to return a sub-optimal path?
Answer: We need to make it expand both C and E before B:
f (ACEG) < f (AB) = 1 + h(B)
Since f (ACEG) = 12, we get h(B) > 11. (Note that this inequality is strict.)
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
B [Advanced] Optimal policy for driving
Imagine that you are driving a car from town A to town C, passing through town B. For each part of the trip,
you have the choice of either taking the highway, or the country road. The travel time depends on whether
the roads are congested or not. They are shown in the table below. For simplicity, assume that whenever that
the state of congestion is global, i.e. that the roads are congested everywhere or nowhere and that your utility
is the negative travel time, i.e. that you want to minimise expected travel time. Initially, you know that the
probability of congestion is pc. However, as soon as you have completed the first part of the trip (A → B) you
will know whether or not there is congestion.
Route
Highway Country
No congestion Congestion No congestion Congestion
A → B 30 mins 60 mins 50 mins 55 mins
B → C 40 mins 60 mins 45 mins 55 mins
What is the complete optimal policy for the case when pc = 0.75?
Make a diagram to illustrate your calculations.
Answer:
The decision for the second part (B → C) is not a problem, since you know by then if there is a congestion or
not. So you don’t have to calculate any policy for that part, only for the first (A → B). Here is a decision tree
for the problem:
U = −(60 + 55) = −115
U = −(30 + 40) = −70
U = −(55 + 55) = −110
U = −(50 + 50) = −90
highway
country
congestion (p = 0.75)
no congestion (p = 0.25)
congestion (p = 0.75)
no congestion (p = 0.25)
country
highway
country
highway
Now, the expected utilities are like follows:
(U |highwayAB) = U(highwayAB ∧ congestion) × Pc + U(highwayAB ∧ ¬congestion) × (1 − Pc)
= −115 × 0.75 + −70 × 0.25
= −103.75
(U |countryAB) = U(countryAB ∧ congestion) × Pc + U(countryAB ∧ ¬congestion) × (1 − Pc)
= −110 × 0.75 + −90 × 0.25
= −105
So, since −103.75 > −105, the optimal policy is to take the highway for the first part (A → B), and then
select for the second part (B → C) depending on if there is a congestion or not.
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!
TIN172/DIT410 Written examination 19 August 2014
C [Advanced] A medical conundrum, continued
This is a continuation of question 8
Now consider the case where you have the choice between tests to perform. First, you observe S, whether or
not the patient is a smoker. Then, you select a test to make: d1 ∈ {X-ray, ECG}. Finally, you decide whether
or not to treat for ACS: d2 ∈ {treat, not treat}. An untreated ACS patient may die with probability 2%, while
a treated one with probability 0.2%. Treating a non-ACS patient results in death with probability 0.1%.
Draw a decision diagram, where
• S is an observed random boolean variable, taking values in {true, false}.
• A and C are hidden boolean variables, taking values in {true, false}.
• d1 and d2 are choice variables, taking values in {X-ray, ECG} and {treat, not treat}, respectively.
• r1 is a boolean result variable, corresponding to a positive (true) or a negative (false) test result.
• r2 is a boolean result variable, corresponding to the patient living (true) or dying (false).
Answer:
S
A
C
r1
r2
d1
d2
Let d1= X-ray, and assume the patient suffers from ACS, i.e. A = true. How is the posterior distributed?
Answer:
This is sort of a trick question, since the result doesn’t depend on the value of A at all.
The only possible variable that d1 can influence is r1, so we calculate the posterior of r1. But as stated in the
premises, the result of an X-ray is independent from the patient having ACS or not. So, the posterior of r1 is
the same as the probability that an X-ray gives a positive result (without knowing anything). I.e.:
P(r1 = true) = P(C)P(X-ray = positive| C) + P(¬C)P(X-ray = negative|¬C)
= 0.1 × 0.9 + (1 − 0.1) × (1 − 0.9)
= 0.18
Write your answers directly on the exam, but you can also use extra papers if you run out of space.
Write readable, and don’t forget to explain your answers!

More Related Content

What's hot

Simple overview of machine learning
Simple overview of machine learningSimple overview of machine learning
Simple overview of machine learningpriyadharshini R
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial IntelligenceMhd Sb
 
Floyd warshall-algorithm
Floyd warshall-algorithmFloyd warshall-algorithm
Floyd warshall-algorithmMalinga Perera
 
Ai 03 solving_problems_by_searching
Ai 03 solving_problems_by_searchingAi 03 solving_problems_by_searching
Ai 03 solving_problems_by_searchingMohammed Romi
 
Random Forest and KNN is fun
Random Forest and KNN is funRandom Forest and KNN is fun
Random Forest and KNN is funZhen Li
 
Yapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptx
Yapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptxYapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptx
Yapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptxAbbasgulu Allahverdili
 
Graph-Powered Machine Learning
Graph-Powered Machine LearningGraph-Powered Machine Learning
Graph-Powered Machine LearningDatabricks
 
Matrix Factorization In Recommender Systems
Matrix Factorization In Recommender SystemsMatrix Factorization In Recommender Systems
Matrix Factorization In Recommender SystemsYONG ZHENG
 
Graph Neural Networks for Recommendations
Graph Neural Networks for RecommendationsGraph Neural Networks for Recommendations
Graph Neural Networks for RecommendationsWQ Fan
 
DEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentation
DEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentationDEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentation
DEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentationSunil Rajput
 
Depth First Search, Breadth First Search and Best First Search
Depth First Search, Breadth First Search and Best First SearchDepth First Search, Breadth First Search and Best First Search
Depth First Search, Breadth First Search and Best First SearchAdri Jovin
 
AI_Session 10 Local search in continious space.pptx
AI_Session 10 Local search in continious space.pptxAI_Session 10 Local search in continious space.pptx
AI_Session 10 Local search in continious space.pptxAsst.prof M.Gokilavani
 
Algorithm chapter 10
Algorithm chapter 10Algorithm chapter 10
Algorithm chapter 10chidabdu
 

What's hot (20)

Bayesian networks
Bayesian networksBayesian networks
Bayesian networks
 
Simple overview of machine learning
Simple overview of machine learningSimple overview of machine learning
Simple overview of machine learning
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Clique
Clique Clique
Clique
 
BFS
BFSBFS
BFS
 
Floyd warshall-algorithm
Floyd warshall-algorithmFloyd warshall-algorithm
Floyd warshall-algorithm
 
AI Lecture 7 (uncertainty)
AI Lecture 7 (uncertainty)AI Lecture 7 (uncertainty)
AI Lecture 7 (uncertainty)
 
Breadth first search
Breadth first searchBreadth first search
Breadth first search
 
Ai 03 solving_problems_by_searching
Ai 03 solving_problems_by_searchingAi 03 solving_problems_by_searching
Ai 03 solving_problems_by_searching
 
Random Forest and KNN is fun
Random Forest and KNN is funRandom Forest and KNN is fun
Random Forest and KNN is fun
 
Unit7: Production System
Unit7: Production SystemUnit7: Production System
Unit7: Production System
 
Yapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptx
Yapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptxYapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptx
Yapay Zeka ile Araçların Yakıt Tüketimi Tahmini.pptx
 
Graph-Powered Machine Learning
Graph-Powered Machine LearningGraph-Powered Machine Learning
Graph-Powered Machine Learning
 
Matrix Factorization In Recommender Systems
Matrix Factorization In Recommender SystemsMatrix Factorization In Recommender Systems
Matrix Factorization In Recommender Systems
 
Graph Neural Networks for Recommendations
Graph Neural Networks for RecommendationsGraph Neural Networks for Recommendations
Graph Neural Networks for Recommendations
 
DEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentation
DEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentationDEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentation
DEVELOPING Air Conditioner Controller using MATLAB Fuzzy logic presentation
 
AI 6 | Adversarial Search
AI 6 | Adversarial SearchAI 6 | Adversarial Search
AI 6 | Adversarial Search
 
Depth First Search, Breadth First Search and Best First Search
Depth First Search, Breadth First Search and Best First SearchDepth First Search, Breadth First Search and Best First Search
Depth First Search, Breadth First Search and Best First Search
 
AI_Session 10 Local search in continious space.pptx
AI_Session 10 Local search in continious space.pptxAI_Session 10 Local search in continious space.pptx
AI_Session 10 Local search in continious space.pptx
 
Algorithm chapter 10
Algorithm chapter 10Algorithm chapter 10
Algorithm chapter 10
 

Similar to Ai exam-2014-08-19-solutions

Probability distribution of a random variable module
Probability distribution of a random variable moduleProbability distribution of a random variable module
Probability distribution of a random variable moduleMelody01082019
 
The University of Maine at Augusta Name ______.docx
The University of Maine at Augusta            Name ______.docxThe University of Maine at Augusta            Name ______.docx
The University of Maine at Augusta Name ______.docxchristalgrieg
 
Intro to PSAT Grade 10
Intro to PSAT Grade 10Intro to PSAT Grade 10
Intro to PSAT Grade 10IS Manila
 
A Step To The Future
A Step To The FutureA Step To The Future
A Step To The Futureguest56e386
 
A Step To The Future
A Step To The FutureA Step To The Future
A Step To The Futuresheasmith
 
Algebra 2 Midterm ExamScore ______ ______ Name _________.docx
Algebra 2 Midterm ExamScore ______  ______ Name _________.docxAlgebra 2 Midterm ExamScore ______  ______ Name _________.docx
Algebra 2 Midterm ExamScore ______ ______ Name _________.docxgalerussel59292
 
counting techniques
counting techniquescounting techniques
counting techniquesUnsa Shakir
 
Psat helpful hints
Psat helpful hintsPsat helpful hints
Psat helpful hintsjbianco9910
 
Lecture 5 Binomial Distribution.pptx
Lecture 5 Binomial Distribution.pptxLecture 5 Binomial Distribution.pptx
Lecture 5 Binomial Distribution.pptxABCraftsman
 
Question 1 In your own words, write a minimum of three sen.docx
Question 1 In your own words, write a minimum of three sen.docxQuestion 1 In your own words, write a minimum of three sen.docx
Question 1 In your own words, write a minimum of three sen.docxIRESH3
 
Mathematical Statistics Homework Help
Mathematical Statistics Homework HelpMathematical Statistics Homework Help
Mathematical Statistics Homework HelpExcel Homework Help
 
Pre-Algebra Final ExamScore ______ ______ Name _________.docx
Pre-Algebra Final ExamScore ______  ______ Name _________.docxPre-Algebra Final ExamScore ______  ______ Name _________.docx
Pre-Algebra Final ExamScore ______ ______ Name _________.docxChantellPantoja184
 
statiscs and probability math college to help student
statiscs and probability math college  to help studentstatiscs and probability math college  to help student
statiscs and probability math college to help studentcharlezeannprodonram
 
Mathematical reasoning
Mathematical reasoningMathematical reasoning
Mathematical reasoningAza Alias
 
Simple probability
Simple probabilitySimple probability
Simple probability06426345
 

Similar to Ai exam-2014-08-19-solutions (20)

Probability distribution of a random variable module
Probability distribution of a random variable moduleProbability distribution of a random variable module
Probability distribution of a random variable module
 
The University of Maine at Augusta Name ______.docx
The University of Maine at Augusta            Name ______.docxThe University of Maine at Augusta            Name ______.docx
The University of Maine at Augusta Name ______.docx
 
Intro to PSAT Grade 10
Intro to PSAT Grade 10Intro to PSAT Grade 10
Intro to PSAT Grade 10
 
A Step To The Future
A Step To The FutureA Step To The Future
A Step To The Future
 
A Step To The Future
A Step To The FutureA Step To The Future
A Step To The Future
 
Algebra 2 Midterm ExamScore ______ ______ Name _________.docx
Algebra 2 Midterm ExamScore ______  ______ Name _________.docxAlgebra 2 Midterm ExamScore ______  ______ Name _________.docx
Algebra 2 Midterm ExamScore ______ ______ Name _________.docx
 
Qp smc12
Qp smc12Qp smc12
Qp smc12
 
counting techniques
counting techniquescounting techniques
counting techniques
 
DLL_WEEK3_LC39-40.docx
DLL_WEEK3_LC39-40.docxDLL_WEEK3_LC39-40.docx
DLL_WEEK3_LC39-40.docx
 
Psat helpful hints
Psat helpful hintsPsat helpful hints
Psat helpful hints
 
Lecture 5 Binomial Distribution.pptx
Lecture 5 Binomial Distribution.pptxLecture 5 Binomial Distribution.pptx
Lecture 5 Binomial Distribution.pptx
 
Mathematical Statistics Homework Help
Mathematical Statistics Homework HelpMathematical Statistics Homework Help
Mathematical Statistics Homework Help
 
Stochastic Process Exam Help
Stochastic Process Exam HelpStochastic Process Exam Help
Stochastic Process Exam Help
 
Question 1 In your own words, write a minimum of three sen.docx
Question 1 In your own words, write a minimum of three sen.docxQuestion 1 In your own words, write a minimum of three sen.docx
Question 1 In your own words, write a minimum of three sen.docx
 
X maths 1
X maths 1X maths 1
X maths 1
 
Mathematical Statistics Homework Help
Mathematical Statistics Homework HelpMathematical Statistics Homework Help
Mathematical Statistics Homework Help
 
Pre-Algebra Final ExamScore ______ ______ Name _________.docx
Pre-Algebra Final ExamScore ______  ______ Name _________.docxPre-Algebra Final ExamScore ______  ______ Name _________.docx
Pre-Algebra Final ExamScore ______ ______ Name _________.docx
 
statiscs and probability math college to help student
statiscs and probability math college  to help studentstatiscs and probability math college  to help student
statiscs and probability math college to help student
 
Mathematical reasoning
Mathematical reasoningMathematical reasoning
Mathematical reasoning
 
Simple probability
Simple probabilitySimple probability
Simple probability
 

Recently uploaded

NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxPooja Bhuva
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 

Recently uploaded (20)

NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Ai exam-2014-08-19-solutions

  • 1. Written examination TIN172/DIT410, Artificial Intelligence Contact person: Peter Ljunglöf, 0736–24 24 76 (I will visit some time around 15:30 to answer questions) 19 August 2014, 14:00–18:00 This examination consists of eight basic questions (numbered 1–8) and three advanced (numbered A–C). There are no points awarded for the questions, but you can either give a correct answer, or fail. Grading The number of questions (basic plus advanced) that you need to answer correctly in order to get a certain grade is shown in the following table: Basic questions Advanced questions Final grade ≥ 5 — 3/G ≥ 6 ≥ 1 4/VG ≥ 7 ≥ 2 5 Accessories • Paper and pencil. • Crayons, paper glue, scissors. • One A4 cheat sheet with any information you want on it. • No books or calculators. Notes • Answer directly on the question page, but you can also use empty papers if you run out of space. • Write readable, and explain your answers!
  • 2. TIN172/DIT410 Written examination 19 August 2014 1 Complexity dimensions of poker Assume that you want to write a program that can play the card game of poker against other players. Classify this program according to the complexity dimensions below. (Note that you could select more than one value). Also explain why you chose that/those value(s). Dimension Possible values Value(s) Explanation Modularity (F)lat (M)odular (H)ierarchical Anything goes (with a good explanation). Representation (S)tates (F)eatures (I)ndividuals +relations Anything goes (with a good explanation). Planning horizon (S)tatic (F)inite (I)ndefinite (∞)Infinite It’s not static, but the other ones are fine for some implementations Observability (F)ull (P)artial P The agent cannot see the other players’ cards, or the deck. Dynamics (D)eterministic (S)tochastic Depends on how you view dynamicity: it’s deterministic in the sense that you know the results of your own actions, but it’s stochastic in the way the other agents react. Number of agents (S)ingle (M)ultiple M Since the computer plays against several opponents, it has to be able to reason about them. Answer: Most answers are fine, if you have a good explanation. For specific comments, see the table. Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 3. TIN172/DIT410 Written examination 19 August 2014 2 Escaping a maze You ( ) are trapped in a maze and needs to escape from it. Unfortunately there is a locked door (÷) between you and the exit (⇒), and you have to take the key ( ) before you can unlock the door. You are not facing any special direction and can move one step in any direction at any time step, as long as there is no wall in the way. Alternatively you can pick up the key (if you are in the right location), or you can unlock the door (if you have the key and are in the right location). Neither the key nor the door can move around on their own. Your goal is to find a plan for escaping the maze using as few moves as possible. Assume that the grid has size M × N. ⇒ ÷ Give a suitable representation of the states in this searching problem. Answer: 〈m, n, k, d〉 or 〈m, n, k〉, where • 1 ≤ m ≤ M, 1 ≤ n ≤ N, representing the position of the agent, • k ∈ {true,false} tells whether the key has been collected, and • d ∈ {true,false} tells whether the door is unlocked. Note that d is not strictly necessary, since you can never drop the key or lock the door2 anyway. What is the size of the state space? Answer: M × N × 2 × 2, alternatively M × N × 2. One can also reason that it’s impossible that the door is unlocked but the agent is not carrying the key, which means that one of the 2 × 2 boolean alternatives disappear, so we get M × N × 3. Finally one can argue that to the right of the door, the agent has to carry the key and the door must be unlocked, so we can shrink the state space even further. Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 4. TIN172/DIT410 Written examination 19 August 2014 3 Cost-based search The following is a representation of a search problem, where A is the start node and G is the goal. There is also a heuristics h which is defined in the table. Note that h(B) is unknown. A B C D E F G 1 4 2 3 5 2 4 3 1 n h(n) A 5 B ? C 4 D 3 E 3 F 1 G 0 What values of h(B) make h admissible? Answer: 0 ≤ h(B) ≤ 6, since the minimal cost from B to G is 6 For each of the following search strategies, mark which of the listed paths it could return. Assume that the heuristics h is admissible. Note that for some search strategies, the returned path might depend on tie-breaking. In these cases, make sure to mark all paths that could be returned. Search algorithm A− C − E − G A− B − C − E − G A− B − D − G A− B − D − F − G Depth-first X X X X Breadth-first X X A∗ with heuristic h X Answer: See the table Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 5. TIN172/DIT410 Written examination 19 August 2014 4 Cryptoarithmetic puzzle A cryptarithmetic puzzle is a mathematical game where the digits of some numbers are represented by let- ters (or symbols). Each letter represents a unique digit. The goal is to find the digits such that a given mathematical equation is verified. Formulate the following puzzle as a CSP: O D D + O D D E V E N Answer: One possibility is to introduce two additional carry variables, cN , cE: (2D) % 10 = N [1] (2D) ÷ 10 = cN [2] (2D + cN ) % 10 = E [3] (2D + cN ) ÷ 10 = cE [4] (2O + cE) % 10 = V [5] (2O + cE) ÷ 10 = E [6] D, N, V ∈ {0,...,9} O, E ∈ {1,...,9} cN , cE ∈ {0,1} (Where ÷ and % correspond to integer division and remainder). And here is the correpsponding constraint graph: N D cN cE E O V 1 2 3 4 5 6 Note that it can be solved without extra carry variables, but then the constraints become much larger. Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 6. TIN172/DIT410 Written examination 19 August 2014 5 Knowledge base a ← b ∧ c. a ← g. a ← c ∧ k. b ← g ∧ j. b ← k. b ← j ∧ a. c ← f . d ← m ∧ j. d ← p ∧ a. f ← m. g ← f ∧ p. k ← j. k ← b ∧ p. m. p. Give a nontrivial model of the knowledge base above. (A trivial interpretation or model is where all atoms are true or all atoms are false). Answer: There are only two nontrivial models: • the minimal model: M = {a, c, d, f , g, m, p} • the minimal model plus b and k: M ∪ {b, k} Give a nontrivial interpretation that is not a model of the knowledge base. Answer: Any interpretation that assigns at least one of the following atoms to false: a, c, d, f , g, m, p. Alternatively, any interpretation that assigns k to true but b and j to false. (And a lot of other interpretations) Give all atoms that are logical consequences of the knowledge base. Answer: a, c, d, f , g, m, p Give all atoms that are not logical consequences of the knowledge base. Answer: b, j, k Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 7. TIN172/DIT410 Written examination 19 August 2014 6 Rolling the dice Assume that you roll two fair 6-sided dice. What is the probability that one of them turns up six ( ), given that their sum is 8? Answer: Let S = “one of the dice turns up six” = {16,...,56,66,65,...,61}, and T = “their sum is 8” = {26,35,44,53,62}. S ∩ T = {26,62}, so |S ∩ T| = 2 and |T| = 5. P(S|T) = P(S, T)/P(T) = |S ∩ T|/|T| = 2/5 What is the probability that one of them turns up six ( ), given that they show different values? Answer: Let S = “one of the dice turns up six” = {16,...,56,66,65,...,61}, and T = “they show different numbers” = Ω − {11,...,66}. S ∩ T = S − {66}, so |S ∩ T| = |S| − 1 = 10 and |T| = 62 − 6 = 30. P(S|T) = P(S, T)/P(T) = |S ∩ T|/|T| = 1/3 Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 8. TIN172/DIT410 Written examination 19 August 2014 7 Belief network a s t l b e x d Mark which of the following independence assumptions that are true in the belief network above. Assumption true / false a and t are independent false a and s are independent true l and b are conditionally independent given s true s and d are conditionally independent given e false s and x are conditionally independent given e true Answer: See the table Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 9. TIN172/DIT410 Written examination 19 August 2014 8 A medical conundrum (Note: the figures below are not really accurate, as they are liberally adapted from different studies.) Many patients arriving at an emergency room, suffer from chest pain. This may indicate acute coronary syndrome (ACS). Patients suffering from ACS that go untreated may die with probability 2% in the next few days. Successful diagnosis results lowers the short-term mortality rate to 0.2%. Consequently, a prompt diagnosis is essential. Approximately 50% of patients presenting with chest pain turn out to suffer from ACS (either acute myocar- dial infraction or unstable angina pectoris). Approximately 10% suffer from lung cancer. Of ACS sufferers in general, 2⁄3 are smokers and 1⁄3 non-smokers. Only 1⁄4 of non-ACS sufferers are smokers. In addition, 90% of lung cancer patients are smokers. Only 1⁄4 of non-cancer patients are smokers. Assumption 1 A patient may suffer from none, either or both conditions! Assumption 2 When the smoking history of the patient is known, the development of cancer or ACS are independent. One can perform an ECG to test for ACS. An ECG test has sensitivity of 66.67% (i.e., it correctly detects 2⁄3 of all patients that suffer from ACS), and a specificity of 75% (i.e., 1⁄4 of patients that do not have ACS, still test positive). An X-ray can diagnose lung cancer with a sensitivity of 90% and a specificity of 90%. Assumption 3 Repeated applications of a test produce the same result for the same patient, i.e. that ran- domness is only due to patient variability. Assumption 4 The existence of lung cancer does not affect the probability that the ECG will be positive. Conversely, the existence of ACS does not affect the probability that the X-ray will be positive. For the problem questions, please see next page. Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 10. TIN172/DIT410 Written examination 19 August 2014 A medical conundrum, the questions What does the description on the previous page imply about the dependencies between the patient condition, smoking and test results? Assume the following events (i.e., variables that can be either true or false): A: ACS C: Lung cancer S: Smoking E: Positive ECG result X: Positive X-ray result Draw a belief network for the problem. Answer: According to our information, only the presence of ACS affects the results of ECG, and only the presence of lung cancer affects the results of the X-ray. Consequently P(E|A, C) = P(E|A) and P(X|A, C) = P(X|C). At the same time, smoking is linked with both ACS and cancer. S A E C X What is the probability that the patient suffers from ACS if the patient is a smoker? Answer: We need to find out P(A|S), and Bayes theorem says that P(A|S) = P(S|A)P(A)/P(S). From the description we know that P(S|A) = 2/3 (“of ACS sufferers in general, 2⁄3 are smokers”) and P(A) = 1/2 (“approximately 50% of patients presenting with chest pain turn out to suffer from ACS”). P(S) can be calculated like this: P(S) = P(S|¬A)P(¬A) + P(S|A)P(A) = 1/4 × 1/2 + 2/3 × 1/2 = 11 24 From the text we know that P(S|¬A) = 1/4 (“only 1⁄4 of non-ACS sufferers are smokers”), and we also know that P(¬A) = 1 − P(A) = 1/2. Then we plug this in Bayes formula to obtain: P(A|S) = P(S|A)P(A) P(S) = 2/3 × 1/2 11/24 = 24 33 = 8 11 ≈ 72.7% So smoking is a strong indicator for heart attack. Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 11. TIN172/DIT410 Written examination 19 August 2014 A [Advanced] Cost-based search, continued The search graph and heuristics from question 3 is repeated here. A B C D E F G 1 4 2 3 5 2 4 3 1 n h(n) A 5 B ? C 4 D 3 E 3 F 1 G 0 Recall that a heuristics is monotone, or consistent, if the difference in the heuristic values for any two nodes is always less than or equal to the actual cost of the lowest-cost path between the nodes. Or in mathematical notation: for any two nodes n and n , |h(n) − h(n )| ≤ lowest-cost(n, n ). What values of h(B) make h monotone/consistent? Answer: It’s enough to check these constraints: h(A) ≤ cost(AB) + h(B) h(B) ≤ cost(BC) + h(C) h(B) ≤ cost(BD) + h(D) This gives us 4 ≤ h(B) ≤ 6. (Note that this inequality is inclusive.) What values of h(B) will cause A∗ search to expand node A, then node C, then node B in order? Answer: f (AB) = cost(AB) + h(B) = 1 + x f (AC) = cost(AC) + h(C) = 4 + 4 = 8 f (ACE) = cost(ACE) + h(E) = 9 + 3 = 12 AC should be expanded before AB, which should be expanded before ACE. I.e., f (AC) < f (AB) < f (ACE), i.e., 8 < 1+ x < 12. We don’t have to reason about the D node, since it cannot be expanded before B anyway. So, 7 < h(B) < 11. (Note that this inequality is strict.) What values of h(B) will cause A∗ to return a sub-optimal path? Answer: We need to make it expand both C and E before B: f (ACEG) < f (AB) = 1 + h(B) Since f (ACEG) = 12, we get h(B) > 11. (Note that this inequality is strict.) Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 12. TIN172/DIT410 Written examination 19 August 2014 B [Advanced] Optimal policy for driving Imagine that you are driving a car from town A to town C, passing through town B. For each part of the trip, you have the choice of either taking the highway, or the country road. The travel time depends on whether the roads are congested or not. They are shown in the table below. For simplicity, assume that whenever that the state of congestion is global, i.e. that the roads are congested everywhere or nowhere and that your utility is the negative travel time, i.e. that you want to minimise expected travel time. Initially, you know that the probability of congestion is pc. However, as soon as you have completed the first part of the trip (A → B) you will know whether or not there is congestion. Route Highway Country No congestion Congestion No congestion Congestion A → B 30 mins 60 mins 50 mins 55 mins B → C 40 mins 60 mins 45 mins 55 mins What is the complete optimal policy for the case when pc = 0.75? Make a diagram to illustrate your calculations. Answer: The decision for the second part (B → C) is not a problem, since you know by then if there is a congestion or not. So you don’t have to calculate any policy for that part, only for the first (A → B). Here is a decision tree for the problem: U = −(60 + 55) = −115 U = −(30 + 40) = −70 U = −(55 + 55) = −110 U = −(50 + 50) = −90 highway country congestion (p = 0.75) no congestion (p = 0.25) congestion (p = 0.75) no congestion (p = 0.25) country highway country highway Now, the expected utilities are like follows: (U |highwayAB) = U(highwayAB ∧ congestion) × Pc + U(highwayAB ∧ ¬congestion) × (1 − Pc) = −115 × 0.75 + −70 × 0.25 = −103.75 (U |countryAB) = U(countryAB ∧ congestion) × Pc + U(countryAB ∧ ¬congestion) × (1 − Pc) = −110 × 0.75 + −90 × 0.25 = −105 So, since −103.75 > −105, the optimal policy is to take the highway for the first part (A → B), and then select for the second part (B → C) depending on if there is a congestion or not. Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!
  • 13. TIN172/DIT410 Written examination 19 August 2014 C [Advanced] A medical conundrum, continued This is a continuation of question 8 Now consider the case where you have the choice between tests to perform. First, you observe S, whether or not the patient is a smoker. Then, you select a test to make: d1 ∈ {X-ray, ECG}. Finally, you decide whether or not to treat for ACS: d2 ∈ {treat, not treat}. An untreated ACS patient may die with probability 2%, while a treated one with probability 0.2%. Treating a non-ACS patient results in death with probability 0.1%. Draw a decision diagram, where • S is an observed random boolean variable, taking values in {true, false}. • A and C are hidden boolean variables, taking values in {true, false}. • d1 and d2 are choice variables, taking values in {X-ray, ECG} and {treat, not treat}, respectively. • r1 is a boolean result variable, corresponding to a positive (true) or a negative (false) test result. • r2 is a boolean result variable, corresponding to the patient living (true) or dying (false). Answer: S A C r1 r2 d1 d2 Let d1= X-ray, and assume the patient suffers from ACS, i.e. A = true. How is the posterior distributed? Answer: This is sort of a trick question, since the result doesn’t depend on the value of A at all. The only possible variable that d1 can influence is r1, so we calculate the posterior of r1. But as stated in the premises, the result of an X-ray is independent from the patient having ACS or not. So, the posterior of r1 is the same as the probability that an X-ray gives a positive result (without knowing anything). I.e.: P(r1 = true) = P(C)P(X-ray = positive| C) + P(¬C)P(X-ray = negative|¬C) = 0.1 × 0.9 + (1 − 0.1) × (1 − 0.9) = 0.18 Write your answers directly on the exam, but you can also use extra papers if you run out of space. Write readable, and don’t forget to explain your answers!