NeuromatchAcademy / course-content

NMA Computational Neuroscience course

Home Page:https://compneuro.neuromatch.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typo in notation in W3D1_Tutorial1

formozov opened this issue · comments

P(m = fish) = P(m = fish, s = left) + P(m = fish, s = right)
= P(m = fish, s = left)P(s = left) + P(m = fish, s = right)P(s = right)

It should be

P(m = fish) = P(m = fish, s = left) + P(m = fish, s = right)
= P(m = fish | s = left)P(s = left) + P(m = fish | s = right)P(s = right)

The same for "2".

Thanks, #830 corrected the typos.