vote up 9 vote down star

What business cases are there for using Markov chains? I've seen the sort of play area of a markov chain applied to someone's blog to write a fake post. I'd like some practical examples though? E.g. useful in business or prediction of stock market, or the like...

Edit: Thanks to all who gave examples, I upvoted each one as they were all useful.
Edit2: I selected the answer with the most detail as the accepted answer. All answers I upvoted.

flag

10 Answers

vote up 4 vote down check

There is a class of optimization methods based on Markov Chain Monte Carlo (MCMC) methods. These have been applied to a wide variety of practical problems, for example signal & image processing applications to data segmentation and classification. Speech & image recognition, time series analysis, lots of similar examples come out of computer vision and pattern recognition.

link|flag
vote up 6 vote down

The obvious one: Google's PageRank.

link|flag
Can you explain how Markov chains is obviously associated with Google's PageRank? – torial Sep 24 '08 at 18:57
en.wikipedia.org/wiki/PageRank#Damping_factor/… – mamama Sep 25 '08 at 8:38
vote up 4 vote down

I've seen spam email that was clearly generated using a Markov chain -- certainly that qualifies as a "business use". :)

link|flag
Yeah, illegitimate business – Jason Z Sep 24 '08 at 17:38
vote up 4 vote down

We use log-file chain-analysis to derive and promote secondary and tertiary links to otherwise-unrelated documents in our help-system (a collection of 10m docs).

This is especially helpful in bridging otherwise separate taxonomies. e.g. SQL docs vs. IIS docs.

link|flag
vote up 6 vote down

Hidden Markov models are based on a Markov chain and extensively used in speech recognition and especially bioinformatics.

link|flag
vote up 2 vote down

I know AccessData uses them in their forensic password-cracking tools. It lets you explore the more likely password phrases first, resulting in faster password recovery (on average).

link|flag
vote up 1 vote down

IBM has CELM. Check out this link: http://www.research.ibm.com/journal/rd/513/labbi.pdf

link|flag
vote up 1 vote down

If commercial graphics software counts, there are some Ray Tracing systems that implement Metropolis Light Transport (invented by Eric Veach, basically he applied metropolis hastings to ray tracing), and also Bi-Directional- and Importance-Sampling- Path Tracers use Markov-Chains.

The bold texts are googlable, I omitted further explanation for the sake of this thread.

link|flag
vote up 1 vote down

We plan to use it for predictive text entry on a handheld device for data entry in an industrial environment. In a situation with a reasonable vocabulary size, transitions to the next word can be suggested based on frequency. Our initial testing suggests that this will work well for our needs.

link|flag
vote up 0 vote down

I recently stumbled on a blog example of using markov chains for creating test data...

http://community.electric-cloud.com/display/eckb/Markov+chain+generator

link|flag
1  
The link provided is just the source code of a markov generator; the associated blog is at blog.electric-cloud.com/2009/09/… – Eric Melski Sep 26 at 4:43
If you post yours as the answer, I'd be happy to delete mine and up-vote you. – torial Sep 26 at 14:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.