<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Algorithms Q&amp;A - Recent questions and answers in HMM</title>
<link>https://notexponential.com/qa/artificial-intelligence/hmm</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: MLE for the given MDP and Observation Sequence (RGB Color Cycler)</title>
<link>https://notexponential.com/1047/mle-for-the-given-mdp-and-observation-sequence-color-cycler?show=1099#a1099</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
Explanation:&lt;br /&gt;
&lt;br /&gt;
1. &amp;nbsp;Deterministic Transitions: The states follow a strict cycle: R -&amp;gt; G -&amp;gt; B -&amp;gt; R -&amp;gt; G. You cannot stay in a state or skip one.&lt;br /&gt;
&lt;br /&gt;
2. &amp;nbsp;Observation Check:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Observation 4 appears at index 4. Only state Blue can emit 4 (probability 0.4). Therefore, the state at step 4 must be Blue.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Working backward and forward from Step 4 (Blue) using the cycle R -&amp;gt; G -&amp;gt; B:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Step 4: Blue&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Step 3: Red (precedes Blue)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Step 2: Green (precedes Red)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Step 1: Blue (precedes Green)? Let&amp;#039;s check the start.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Let&amp;#039;s test the three possible starting positions for the cycle against the observations:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Case 1: Start with Red (Sequence: R, G, B, R, G, B, R, G, B)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 1 (State R): P(1|R) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 2 (State G): P(2|G) = 0.3&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 3 (State B): P(3|B) = 0.1&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 4 (State R): P(4|R) = 0 (Impossible)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Case 2: Start with Green (Sequence: G, B, R, G, B, R, G, B, R)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 1 (State G): P(1|G) = 0.3&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 2 (State B): P(2|B) = 0.1&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 3 (State R): P(3|R) = 0.1&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 4 (State G): P(4|G) = 0 (Impossible)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Case 3: Start with Blue (Sequence: B, R, G, B, R, G, B, R, G)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 1 (State B): P(1|B) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 2 (State R): P(2|R) = 0.5&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 3 (State G): P(3|G) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 4 (State B): P(4|B) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 5 (State R): P(1|R) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 6 (State G): P(3|G) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 7 (State B): P(1|B) = 0.4&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 8 (State R): P(2|R) = 0.5&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;Obs 9 (State G): P(3|G) = 0.4 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Only Case 3 is possible because it is the only one that allows Observation 4 to be emitted (by Blue) and Observation 4 to be emitted again? No, Obs 4 is only at index 4. But wait, in Case 1 and 2, the state at index 4 was R and G respectively, neither of which can emit 4. Only Blue emits 4. In the cycle $R \to G \to B$, Blue appears at positions 3, 6, 9 if starting at R; positions 2, 5, 8 if starting at G; and positions 1, 4, 7 if starting at B.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Since Observation 4 is at index 4, the state at index 4 MUST be Blue. This aligns perfectly with Case 3 (Start with Blue).&lt;br /&gt;
&lt;br /&gt;
The sequence is Blue, Red, Green, Blue, Red, Green, Blue, Red, Green.</description>
<category>HMM</category>
<guid isPermaLink="true">https://notexponential.com/1047/mle-for-the-given-mdp-and-observation-sequence-color-cycler?show=1099#a1099</guid>
<pubDate>Mon, 27 Apr 2026 13:30:50 +0000</pubDate>
</item>
<item>
<title>Answered: MLE for given HMM and Observation Sequence</title>
<link>https://notexponential.com/1050/mle-for-given-hmm-and-observation-sequence?show=1098#a1098</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
The most likely explanation is that any sequence of states is equally likely.&lt;br /&gt;
&lt;br /&gt;
Reasons:&lt;br /&gt;
&lt;br /&gt;
1. &amp;nbsp;Uniform Emissions: Every state (Red, Green, Blue) emits every observation (1, 2, 3) with the exact same probability 1/3. Therefore, the observations provide no information to distinguish which state you are in.&lt;br /&gt;
&lt;br /&gt;
2. &amp;nbsp;Uniform Transitions: From any state, you transition to any other state (including staying) with the exact same probability 1/3.&lt;br /&gt;
&lt;br /&gt;
3. &amp;nbsp;Uniform Initial State: You start in any state with equal probability 1/3.&lt;br /&gt;
&lt;br /&gt;
Because every possible path through the states has the exact same mathematical probability, there is no single &amp;quot;most likely&amp;quot; sequence. All 3^13 possible state sequences are equally probable.</description>
<category>HMM</category>
<guid isPermaLink="true">https://notexponential.com/1050/mle-for-given-hmm-and-observation-sequence?show=1098#a1098</guid>
<pubDate>Mon, 27 Apr 2026 13:24:27 +0000</pubDate>
</item>
<item>
<title>Answered: MLE for given HMM and Observation Sequence</title>
<link>https://notexponential.com/1053/mle-for-given-hmm-and-observation-sequence?show=1097#a1097</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
The most likely explanation (state sequence) is that the system starts in Red, transitions to Green at some point, and then eventually transitions to Blue, where it stays for the remainder of the sequence.&lt;br /&gt;
&lt;br /&gt;
However, looking closely at the specific probabilities:&lt;br /&gt;
&lt;br /&gt;
1. &amp;nbsp;Emissions are uniform 1/3 for all symbols in all states. This means the observations themselves provide no information to distinguish between states. The likelihood depends entirely on the transition probabilities.&lt;br /&gt;
&lt;br /&gt;
2. &amp;nbsp;Transitions:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;From R: You can go to R, G, or B with equal probability 1/3.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;From G: You must go to G or B 1/2 each. You cannot go back to R.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* &amp;nbsp;&amp;nbsp;From B: You must stay in B p=1. This is an absorbing state.&lt;br /&gt;
&lt;br /&gt;
Since emissions don&amp;#039;t help, we want the path with the highest transition probability.&lt;br /&gt;
&lt;br /&gt;
* &amp;nbsp;&amp;nbsp;Staying in R forever has probability (1/3)^(T-1).&lt;br /&gt;
&lt;br /&gt;
* &amp;nbsp;&amp;nbsp;Moving to G and staying there has probability involving 1/3 for the first step and 1/2 for subsequent steps. Since 1/2 &amp;gt; 1/3, staying in G is more likely than staying in R.&lt;br /&gt;
&lt;br /&gt;
* &amp;nbsp;&amp;nbsp;Moving to B and staying there has probability involving 1/3 or 1/2 for the entry step, and 1 for all subsequent steps. Since 1 &amp;gt; 1/2 &amp;gt; 1/3, once you enter B, the probability cost for remaining steps is zero (log-probability is 0).&lt;br /&gt;
&lt;br /&gt;
Therefore, the single most likely specific path is the one that enters the absorbing state Blue as early as possible, because staying in Blue has a probability of 1 per step, which is higher than staying in Red 1/3 or Green 1/2.&lt;br /&gt;
&lt;br /&gt;
The earliest you can enter Blue is at step 2 R -&amp;gt; B.&lt;br /&gt;
&lt;br /&gt;
Path: R, B, B, B, ..., B&lt;br /&gt;
&lt;br /&gt;
Let&amp;#039;s compare:&lt;br /&gt;
&lt;br /&gt;
* &amp;nbsp;&amp;nbsp;Path R, R, R...: Prob = (1/3)^24&lt;br /&gt;
&lt;br /&gt;
* &amp;nbsp;&amp;nbsp;Path R, G, G... Prob = 1/3 * (1/2)^23&lt;br /&gt;
&lt;br /&gt;
* &amp;nbsp;&amp;nbsp;Path R, B, B...: Prob = 1/3 * 1^23 = 1/3&lt;br /&gt;
&lt;br /&gt;
Clearly, 1/3 is much larger than the others.&lt;br /&gt;
&lt;br /&gt;
The most likely state sequence is:&lt;br /&gt;
&lt;br /&gt;
Red, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue, Blue</description>
<category>HMM</category>
<guid isPermaLink="true">https://notexponential.com/1053/mle-for-given-hmm-and-observation-sequence?show=1097#a1097</guid>
<pubDate>Mon, 27 Apr 2026 13:21:53 +0000</pubDate>
</item>
<item>
<title>Answered: Heads - 2 in a row</title>
<link>https://notexponential.com/1014/heads-2-in-a-row?show=1078#a1078</link>
<description>&lt;p&gt;&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;Hello Professor,&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;Let F be the fair coin and B be the biased coin.&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;At the start:&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(F) = 1/2&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(B) = 1/2&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;The fair coin gives heads with probability 1/2, while the biased coin always gives heads.&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;First, we find the probability of getting heads on the first toss:&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H1) = P(H1 | F)P(F) + P(H1 | B)P(B)&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H1) = (1/2)(1/2) + (1)(1/2)&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H1) = 1/4 + 1/2 = 3/4&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;Now, since we already saw heads on the first toss, we update the probability that the coin was biased:&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(B | H1) = [(1)(1/2)] / (3/4)&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(B | H1) = 2/3&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;So the probability that it was the fair coin is:&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(F | H1) = 1/3&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;Now we calculate the probability that the second toss is also heads:&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H2 | H1) = P(H2 | B)P(B | H1) + P(H2 | F)P(F | H1)&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H2 | H1) = (1)(2/3) + (1/2)(1/3)&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H2 | H1) = 2/3 + 1/6&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;P(H2 | H1) = 5/6&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;Final answer:&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;5/6, or about 83.33%&lt;/p&gt;&lt;p class=&quot;p1&quot;&gt;So after seeing one head, it becomes more likely that the coin is the biased coin, which makes the probability of getting heads again higher than 1/2&lt;/p&gt;</description>
<category>HMM</category>
<guid isPermaLink="true">https://notexponential.com/1014/heads-2-in-a-row?show=1078#a1078</guid>
<pubDate>Sun, 26 Apr 2026 13:13:29 +0000</pubDate>
</item>
<item>
<title>Robot States and Sensors</title>
<link>https://notexponential.com/819/robot-states-and-sensors</link>
<description>Suppose we have a robot that can be in one of two states: state 1 or state 2. The robot moves between states according to the following rules:&lt;br /&gt;
&lt;br /&gt;
If the robot is in state 1, it has a 70% chance of staying in state 1 and a 30% chance of transitioning to state 2.&lt;br /&gt;
&lt;br /&gt;
If the robot is in state 2, it has a 60% chance of staying in state 2 and a 40% chance of transitioning to state 1.&lt;br /&gt;
&lt;br /&gt;
The robot has two sensors: sensor 1 and sensor 2. The sensors are not perfect and sometimes give incorrect readings. The emission probabilities for each sensor are as follows:&lt;br /&gt;
&lt;br /&gt;
If the robot is in state 1, sensor 1 gives the correct reading with a probability of 0.8 and an incorrect reading with a probability of 0.2. If the robot is in state 2, sensor 1 gives the correct reading with a probability of 0.4 and an incorrect reading with a probability of 0.6.&lt;br /&gt;
&lt;br /&gt;
If the robot is in state 1, sensor 2 gives the correct reading with a probability of 0.3 and an incorrect reading with a probability of 0.7. If the robot is in state 2, sensor 2 gives the correct reading with a probability of 0.9 and an incorrect reading with a probability of 0.1.&lt;br /&gt;
&lt;br /&gt;
Assume that the robot starts in state 1 with equal probability and generates the following sensor readings over time:&lt;br /&gt;
&lt;br /&gt;
sensor 1: correct, correct, incorrect&lt;br /&gt;
&lt;br /&gt;
sensor 2: incorrect, correct, correct&lt;br /&gt;
&lt;br /&gt;
What is the most likely sequence of states that the robot went through to generate these observations?</description>
<category>HMM</category>
<guid isPermaLink="true">https://notexponential.com/819/robot-states-and-sensors</guid>
<pubDate>Mon, 08 May 2023 21:05:20 +0000</pubDate>
</item>
<item>
<title>Newsletter optimization using HMM</title>
<link>https://notexponential.com/762/newsletter-optimization-using-hmm</link>
<description>&lt;p&gt;You are trying to sell a product by using an email newsletter (delivered weekly).&amp;nbsp; A visitor can be interested in the product due to 2 different interests. &amp;nbsp;If they are interested due to interest 1 (for example “soccer”), they may click a link (link 1) you have in the newsletter.&amp;nbsp; If they are interested due to interest 2 (for example “tennis”), they may click a different link (link 2).&amp;nbsp; Here is the probability table that shows the likelihood of viewer clicking these two links:&lt;/p&gt;&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;&lt;strong&gt;Interest&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;&lt;strong&gt;Link 1&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;&lt;strong&gt;Link 2&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;No Interest&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.01&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.05&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;Interest 1&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.3&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.6&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;Interest 2&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.4&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.8&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p style=&quot;text-align:left&quot;&gt;Interest 1 and Interest 2&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.8&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:top; width:128px&quot;&gt;&lt;p&gt;0.95&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;We do not know the initial state of the visitor.&amp;nbsp; If the visitor has no interest in interest 1 or interest 2, she a 10% probability of developing either of those interests (independently) during the week. When she has one of the interests, there is&amp;nbsp;&amp;nbsp;a 20% probability of her developing the other interest as well.&amp;nbsp; Once an interest is developed, that interest is never lost.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Draw and explain an HMM to model this problem.&lt;/li&gt;&lt;li&gt;You make the following observations in 8 weeks of newsletter delivers: &amp;nbsp;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;No Click, Link 1, Link 1, No Click, Link 1, Link 1 and Link 2, Link 1 and Link 2, Link 2, Link 1 and Link What is the best explanation for the interest level of the visitor during those 8 weeks?&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description>
<category>HMM</category>
<guid isPermaLink="true">https://notexponential.com/762/newsletter-optimization-using-hmm</guid>
<pubDate>Sun, 02 May 2021 12:59:28 +0000</pubDate>
</item>
</channel>
</rss>