Compute trigram probability from bigrams probabilities

Viewed 5407

Given bigram probabilities for words in a text, how would one compute trigram probabilities?

For example, if we know that P(dog cat) = 0.3 and P(cat mouse) = 0.2

how do we find the probability of P(dog cat mouse)?

Thank you!

1 Answers
Related