Our company is giving us time to learn and develop using a alternative programming language.

So we get every Friday afternoon as our own time to develop using a different programming language and have to produce some kind of useful application. Its an on-going thing.

I have decided to use swi Prolog, and I am coming from C programming.

The problem is that I don't know what application I can develop using Prolog. I don't want to develop just some simple knowledge base. I am looking for ideas from you experienced Prolog programmers.

Many thanks for any suggestions,

link|improve this question

3  
Best. Company. Ever. Sorta. – BoltClock Mar 19 '11 at 19:55
what sort of things does your company do. What sort of problem domains do you work in? – EvilTeach Mar 19 '11 at 20:01
Mostly in telecomms industry (IVR solutions, mobile solutions). Thanks. – ant2009 Mar 19 '11 at 20:12
feedback

closed as not a real question by Jeff Atwood Mar 20 '11 at 6:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

Any kind of problem where you have to search for a discrete structure as an answer.

Prolog's big strength is goal-directed programming, with details getting bound as you compute. A ideal first problem to solve in Prolog is, how to stack up blocks in the Blocks World, given a set of blocks already stacked the wrong way. (The discrete structure here is a sequence of actions (unstack, stack) parameterized by the name of the block to move] This can be solved in C, but the Prolog solution is much easier to code, and you will learn a lot from it.

link|improve this answer
feedback

Natural language processing. Prolog makes it relatively easy to develop grammars, esp. for domain-specific, restricted subsets of natural language. The same grammar can be used to parse or produce sentences.

Combinatorial problems such as scheduling or industrial planning. SWI-Prolog has an extension called constraint logic programming, which allows you to write very fast solvers for complicated combinatorial problems by mostly summing up the relations between the variables in the problem. Takes sudokus as an example.

link|improve this answer
2  
Prolog was a significant component for building IBM Watson (geek.com/articles/news/…), recently in the news (at least for us Jeopardy game show fans). – hardmath Mar 19 '11 at 23:56
feedback

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