Slashdot Mirror


Travelling Salesman, Thriller Set In a World Where P=NP

mikejuk writes with this excerpt from I Programmer: "A movie that features science and technology is always welcome, but is it not often we have one that focuses on computer science. Travelling Salesman is just such a rare movie. As you can guess from its name, it is about the Travelling Salesman problem, more precisely about the P=NP question. Written and directed by Timothy Lanzone, and produced by Fretboard Pictures, it should premiere on June 16. As the blurb to the movie trailer says: 'Travelling Salesman is an intellectual thriller about four of the world's smartest mathematicians hired by the U.S. government to solve the most elusive problem in computer science history — P vs. NP. The four have jointly created a "system" which could be the next major advancement for humanity or the downfall of society.'"

23 of 165 comments (clear)

  1. In a world... by nitehawk214 · · Score: 5, Informative

    The trailer is:

    "In a world where P = NP... cryptography becomes meaningless."

    If you didn't hear that in Don LaFontaine's voice you are a bad person.

    --
    I'm a good cook. I'm a fantastic eater. - Steven Brust
    1. Re:In a world... by Anonymous Coward · · Score: 5, Funny

      I would've gone with "When everything you thought you knew about NP... is wrong"

  2. Re:Maybe they should solve by alendit · · Score: 4, Funny

    Not sure if troll or just stupid...

  3. Better yet... by Chemisor · · Score: 4, Funny

    "P. P never changes." in a Ron Perlman voice.

  4. Official Site by steamraven · · Score: 5, Informative
  5. Re:How come everyone in the movie is white? by Surt · · Score: 5, Interesting

    Intelligence is largely controlled by early childhood educational opportunity, so it would be unsurprising if the 4 smartest were white.

    --
    "Who is the Journal of Quantum Physics going to believe?" --Stephen Hawking
  6. Re:Cryptography? by Surt · · Score: 5, Informative

    It's uncertain what complexity class factorization in, but the best known techniques are not in P. P=NP therefore implies there is indeed a 'better' factorization algorithm. And so, you can crack encryption faster.

    --
    "Who is the Journal of Quantum Physics going to believe?" --Stephen Hawking
  7. Re:Cryptography? by adonoman · · Score: 3, Informative

    Cryptography relies on problems that are very hard to solve without a key, but when you have the key are easy. NP problems have the property that if you know the solution, it's easy to prove that you have the solution, but finding a solution is otherwise really hard. Take factoring for example, which is an NP problem - take two really big primes, and multiply them. Give the result away to anyone who asks. If the primes are big enough, they won't be able to figure out your original primes, but anyone who has either of the original primes can find the other with ease. RSA is dependant on that property. If I can find those two primes quickly from just public key, I've cracked RSA. If NP=P, then factoring is no longer a hard problem.

  8. Goose bumps, again? by G3ckoG33k · · Score: 4, Interesting

    I loved Pi!

    http://www.imdb.com/title/tt0138704/

    for those who missed it

  9. Re:Cryptography? by adonoman · · Score: 5, Informative

    Factoring is NP, since we can verify the results in polynomial time. It's not NP-complete, so finding a polynomial algorithm for factoring doesn't necesarily mean that there's one for 3-SAT or TSP, but if we find a polynomial algorithm for TSP, then there is one for factoring.

  10. Re:How come everyone in the movie is white? by TheCarp · · Score: 4, Insightful

    I often wonder why people invoke racism so often when it comes to these issues when the reality is... disadvantaged white kids often fare pretty poorly too. If one of your strongest indicators, do you really need race to explain why, generation after generation, racial dmeographics shift less than we "would like".

    Yes the smartest in this society are probably mostly a bunch of white guys. Not because being white makes you better, or smarter, but because there are more white people who can give their children the opportunity to advance. Which isn't to say that being white people gave them that ability, but just that, the "initial condition" that we started with has done more to influence the outcome than we want to give it credit.

    In short, I often feel racism is used as an excuse to deny the lack of real mobility within society....because if you don't think race/genetics is a major factor, then how do you explain the "lack of progress" along racial lines, if there is very high mobility? Seems to me it may be the lack of real mobility.

    --
    "I opened my eyes, and everything went dark again"
  11. It's like a sequel to Sneakers by Deliveranc3 · · Score: 5, Insightful

    Which was pretty rad.

  12. Re:Cryptography? by betterunixthanunix · · Score: 5, Insightful

    Factorization is most likely not NP complete. Rather, it is in the intersection of NP and coNP, and it is widely believed that no NP complete problems are in coNP, for reasons similar to the reasons it is believed that no NP complete problems are in P. It is also unlikely that there is a "complete" class for the intersection of NP and coNP, which casts some doubt on the hardness of integer factorization.

    Of course, if P=NP, integer factorization is definitely a theoretically feasible problem; this does not mean that it can be easily solved in practice, though. Maybe the best algorithm for integer factorization runs in O(n^100) time -- polynomial but still beyond the reach of any reasonable computer. P=NP would not imply that cryptography is impossible; rather, it would require some new definitions of security and entirely different approaches to cryptography.

    --
    Palm trees and 8
  13. Re:How come everyone in the movie is white? by Culture20 · · Score: 3, Interesting

    Your question is irrelevant since it didn't happen that way. The movie was filmed in a country that claims to be a melting pot and yet the "4 smartest ppl in the world" are a bunch of skinny white guys.

    You're talking about an extremely small set. Let's reduce it further to just one: "The smartest person in the world". Now are you going to be upset if this person isn't representative of every culture?

  14. Re:Cryptography? by Doubting+Thomas · · Score: 4, Informative

    In cryptography you're looking for a problem that is asymmetric. NP is your ideal, but as a lot of other people have pointed out, practical cryptographic algorithms are a not ideal. IBM actually had a cryptography algorithm based on the TSP once, but they must have found a flaw because it was never popularized.

    A lot of people confuse NP and/or 'intractable' with 'impossible'. They do not mean the same thing. Intractable problems are often practically impossible, if for instance it would require more mass than the entire universe to calculate the answer. But since our understanding of physics is incomplete, we can't say for sure how big a 'perfect' computer you'd need to solve a certain problem, so you can't categorically say that it's impossible. All you can say is "we can't do it today." or "That's a problem for my grandchildren to deal with... hopefully."

    Remember that for certain inputs an NP-Complete problem can be solved on the back of an envelope. If I tell you to place a dot in the middle of the envelope, and one more or less near each corner, you can find the shortest path in a few minutes. It's an NP complete problem, but it's still trivial to solve. NP is not a magic wall. It all depends on the context (ie, the inputs).

    --
    Just because it works, doesn't mean it isn't broken.
  15. Re:How come everyone in the movie is white? by rs1n · · Score: 5, Insightful

    I often wonder why people invoke racism so often when it comes to these issues when the reality is... disadvantaged white kids often fare pretty poorly too. If one of your strongest indicators, do you really need race to explain why, generation after generation, racial dmeographics shift less than we "would like".

    Yes the smartest in this society are probably mostly a bunch of white guys. Not because being white makes you better, or smarter, but because there are more white people who can give their children the opportunity to advance. Which isn't to say that being white people gave them that ability, but just that, the "initial condition" that we started with has done more to influence the outcome than we want to give it credit.

    In short, I often feel racism is used as an excuse to deny the lack of real mobility within society....because if you don't think race/genetics is a major factor, then how do you explain the "lack of progress" along racial lines, if there is very high mobility? Seems to me it may be the lack of real mobility.

    The lack of real mobility is a myth. I can say this because I come from a family that emigrated and came to the United States and started off on welfare, living in government projects, and going to very poorly supported schools. What made the difference for me were parents to valued education and pushed their kids to go beyond what was considered average. They convinced me, my siblings, and themselves, that the government handouts were temporary aids for us, and that continuing to live off the government when we have the ability to eventually make it on our own is shameful. My parents were farmers and made it as far as completing elementary school back in their homeland. So it isn't as if they had a great start, either. Yet my siblings and I, on the other hand, completed college, and I completed my Ph. D. in mathematics -- and we all went through public schools prior to college. If I were an exception, then we might call it "lack of mobility." The problem I see is that our government has made it too easy for those who have to rely on its social programs to do it for so long. For many, it is much easier to accept a very modest, but not-uncomfortable lifestyle of welfare and food stamps rather than to make an honest effort to move out of their current conditions.

    Many immigrants who come to the US will have very similar stories of how they or their parents moved to the US with hopes of finding better opportunities. They often come from places where the conditions are so terrible that even the living in government projects and relying on the US welfare system is heavenly in comparison. Yet they do not fall into the welfare trap and eventually contribute to society like the rest of US citizens who were born and raised here. What they have that a lot of folks who are "stuck on welfare" is a drive. In my own parents' case, what drove them was their belief that if they could escape a communist government (that sought to execute anyone who defied it) by risking everything on a 2-piston boat set off into unknown waters, then they can certainly get out of welfare. This drive is lacking in a lot of families who are currently relying on government programs (I'm referring to families in which welfare reliance occurs for generations).

  16. Re:It is offcial by Darinbob · · Score: 3, Insightful

    I'll hold off a bit on that. However once I hear hipsters using it in casual conversations at parties, or new age psychics explaining their abilities with it, then I'll know that P=NP is the new string theory.

  17. Re:It is offcial by maxwell+demon · · Score: 4, Funny

    That's not the complete solution. The complete solution reads: N=1 or P=0

    --
    The Tao of math: The numbers you can count are not the real numbers.
  18. Re:How come everyone in the movie is white? by Anonymous Coward · · Score: 3, Insightful

    Seriously, Stallman instead of Knuth?!

  19. Re:How come everyone in the movie is white? by maxwell+demon · · Score: 4, Informative

    However it does not say "the world's four smartest mathematicians." It says "four of the world's smartest mathematicians."

    --
    The Tao of math: The numbers you can count are not the real numbers.
  20. Re:How come everyone in the movie is white? by K.+S.+Kyosuke · · Score: 4, Funny

    And we know that Asians aren't known for that or anything... Really, it wouldn't have been shocking to have a Japanese guy, or an Indian guy, or heck, maybe a woman.

    The way the movie industry works, the cast would be three white guys and a blind black lesbian smarter than all of them.

    --
    Ezekiel 23:20
  21. Re:Cryptography? by maxwell+demon · · Score: 4, Informative

    You forget that there is no way to decide in polynomial time if the text you got is the plaintext. That's why the one-time pad is provably secure: Every text of the same length could be the plaintext, and without knowing the key, you cannot distinguish between "Attack tomorrow 10:00" and "We should surrender!!"

    --
    The Tao of math: The numbers you can count are not the real numbers.
  22. Re:Wasn't Numb3rs cancelled? by MisterZimbu · · Score: 5, Funny

    How long is this movie

    O(n!)