Sign Out
Logged In:
 
 
 
 
 
Tab Image

Latest News

Advanced analytics to ease supply chain worries
In the field of analytics, IBM are releasing new products for new analytics markets at a fast rate.

Hawk-Eye's inventor eyes football expansion
Hawk-eye is due to be installed at 20 Premier League grounds as well as Wembley Stadium.

Record investment planned for North Sea
14 new oilfields come into production, triggering a historic rise in oil and gas output after more than a decade of decline.

Artificial intelligence makes commercial sense
Advances in AI and analytics could result in the creation of successful business products with little human intervention.

Boom time ahead for high end analytics professionals
According to the Harvard Business Review, the 21st century’s sexiest job is the data scientist.

More

Tab Image

Features

The Education & Research Committee
- Roles and Responsibilities: Brian Dangerfield (Liaison with ESRC)
Ruth Kaufman, Inside OR February 2013

The Benefits of Membership
- a virtuous circle
Ruth Kaufman, Inside OR February 2013

Tab Image

Posted 22 October 2012

Maths

Hard problems at OR54

At OR54, this year’s annual conference held 4-6 September in Edinburgh, NP hard problems were very much in evidence.  One of the papers was given by Guido Diepen who has used a constraint programming approach to the problem which is apparently particularly good at solving Sudoku type problems. 

A problem is classified as “P” (or P-hard) if it can be solved quickly.  There is another group which have the property that if one is given the solution then one can quickly verify that the answer is true or false.  This group is known as “NP” (or NP-hard).  Note, if one can solve a problem quickly then one can verify the solution quickly so a P-hard problem is also an NP-hard problem.  The literary million dollar question is whether the reverse is true; can all problems whose solutions can be verified quickly also be solved quickly?  The Cray Foundation offered one million dollars in 2000 to the first person to prove this one way or the other – so far there have been no takers.  There is a third category called NP-complete – these are the key to “life, the universe and everything”.

Not only does Guido Diepen’s solution solve problems quickly, provided there is a feasible solution, it does so in a way which makes it relatively easy for the user to describe in terms of the constraints.  An example is that one can simply state that all values in row j have to be different (for rows j = 1, 9) similarly for columns and for the 3x3 boxes.  These constraints require quite of a lot of coding to achieve the same in a linear or integer programming model.  Although this approach greatly simplifies the problem in terms of setting up the constraints, it still uses a heuristic approach so does not reduce the problem from NP to P.