A Naive Bayes spam filter is trained on a labelled email corpus built from a vocabulary of exactly distinct words.
Across the whole training set:
The raw training counts of three particular words are:
| word | count in Spam | count in Ham |
|---|---|---|
| offer | ||
| meeting | ||
| click |
The filter uses add-one (Laplace) smoothing, so every word probability is estimated as
A new message arrives containing exactly the three words offer, meeting and click, each once. The classifier assumes the words are conditionally independent given the class.
What is ?
Give your answer as a percentage, rounded to 2 decimal places.