views:

426

answers:

4

Behind the tables and tables of raw data, how does Wolfram Alpha work?

I imagine there are various artificial intelligence mechanisms driving the site but I can't fathom how anyone would put something like this together. Are there any explanations that would help a programmer understand how something like this is created? Does the knowledge base learn on its own or is it taught very specific details in a very organized manner? What kind of structure and language is used to store this type of data?

Obviously this is a huge question and can't fully be answered here but some of the general concepts would be nice to know so I can build off of them and do my own research.

+1  A: 

Take a look at the API

Serx
A: 

This official blog post has some portion of the explanation: the language Mathematica.

matt b
Interesting, but not very useful. That's like saying "Java" when someone asks, "How does Google's search engine work"? The post is just a whitepaper for Mathematica and doesn't even touch upon the complex natural language interface, and how it maps arbitrary phrases to discrete functions.
Chris S
+1  A: 

Looks like a large number of algorithms from which some that might be relevant are selected by pattern matching.

starblue
+4  A: 

Does the knowledge base learn on its own or is it taught very specific details in a very organized manner?

AI systems are usually something distinctly in between. The system will usually learn in a directed way, where the developers can apply a metric that measures the quality of the learning, and the system learns by attempting to maximise that metric. Where the expertise comes in is in developing efficient and effective representations of the data, so that it lends itself to this learning process and to the measurement of how well the learning is going.

Kylotan