Laplace smoothing applied to the unigram probability of word wi with count ci, which is normalized by the total number of word tokens N and the number of words in the vocabulary V: PLaplace(wi)=N+Vci+1 It is more convenient to define an adjusted count ci∗, and turn it into a probability Pi∗ by normalizing by N: ci∗=(ci+1)N+VN The add-one smoothed bigram probability and adjusted count are given by: PLaplace∗(wn∣wn−1)=∑w(C(wn−1wn)+1)C(wn−1wn)+1=C(wn−1)+VC(wn−1wn)+1 c∗(wn−1wn)=C(wn−1)+V(C(wn−1wn)+1)×C(wn−1)