vote up 4 vote down star
4

I love hard problems. The more mathematical they are the better they are for me. What are the hardest mathematical topics, fields or problems in Computer Science?

flag

Do you mean the most difficult currently unsolved problems, or do you mean what is typically the most difficult aspect of CS to learn? – Jason Feb 1 at 16:39
I mean the hardest mathematical things, that all math-phobics avoid. The question is open to your point. – Masi Feb 1 at 16:53
That's probably too broad a criteria. I imagine that all math-phobics would avoid balancing their checkbook or doing their taxes if they could, but those aren't particularly difficult . – Jason Feb 1 at 17:00
@Jason It is, but it was my intention. I want to get the general, or let say populist, picture what people are thinking. – Masi Feb 1 at 17:28
Thank you for your great answers so far! Please, keep them coming. Excellent answers indeed. – Masi Feb 1 at 17:34
show 2 more comments

closed as not a real question by ocdecio, Espo, Steven A. Lowe, rp Feb 2 at 1:38

14 Answers

vote up 6 vote down

Here's one idea: NP problems.

Of the problems that might be solvable, I'd say that the hardest math problems mirror the hardest problems in physics, biology, etc.: turbulence for fluids, multiphysics, modeling protein folding, etc.

link|flag
vote up 3 vote down

Proving the correctness of a program.

link|flag
What does that even mean, "The correctness of a program" ? – Chris Ballance Feb 1 at 17:46
1  
Go learn some math then you'll know. – ocdecio Feb 1 at 17:47
I have a degree in math. How is "correctness" difficult? Either it matches the specification or it does not. – Chris Ballance Feb 1 at 17:52
1  
en.wikipedia.org/wiki/Halting_problem – Nils Pipenbrinck Feb 1 at 18:01
@Nils Good link, thanks for jogging my memory. – Chris Ballance Feb 1 at 18:16
vote up 1 vote down

Quite a few were described in an earlier question "What optimization problems do you want to have solved?"

link|flag
vote up 3 vote down

For me maybe was applied problems involving Laplace Transforms, Fourier Series and Differential Equations

link|flag
vote up 4 vote down

Some of the 'hardest' are presumably not in Computer Science itself, but in domain-specific problems (e.g. molecular biology, fluid dynamics, etc.) which people want software to help them with.

Another way to approach your question would be to ask, "What's the hardest question in Mathematics?", and then, "How does this relate to Computer Science?" For example, if Riemann's hypothesis is the hardest question in Mathematics, then argue that this a Computer Science problem too (because of prime numbers, and therefore encryption, etc.).

link|flag
vote up 0 vote down

Aren't nearly all mathematical concepts applicable or potentially applicable in some way?

link|flag
vote up 5 vote down

Is hard the opposite of soft (hard ~ firm), or the opposite of easy (hard ~ challenging)?

You can find firm problems in some (most?) subfields of CS. Go for algorithmics, cryptography, automata theory (regexps, parsing, and computability all lumped into one), type systems, semantics, complexity or algorithmic game theory. [Warning: my selection of subfields may reflect what teaching I've been given more than any objective truth]

You can find challenging problems anywhere, and what's challenging to you might be easy for someone else. Here's an interesting human-factors challenge: come up with a good cost model of human cognition (especially arithmetic). Why? Because I want to know how many seconds I should set each skip-key to in my mplayer configuration such that I minimize the average time I spend while seeking to a particular second in the range [-60, 3600].

As other people have suggested, NP-completeness and cryptography offer challenging problems, but solving instances is beyond intuition for humans and brute-forcing is really really boring (and slow for the computers even). OTOH, I'm not honestly thinking you want to three-color graphs or factor products of pairs of primes ;-)

link|flag
vote up 10 vote down

I also think Cryptography features the hardest mathematics. The reason for this is simple economics - if you manage to crack your opponent's math (i.e. make quicker methods to do the same, or find mistakes and loopholes), the wins are very large.

And the maths is very varied - number theory is popular there, and number theory is very heavy math when taken to an advanced level (see the proof of Fermat's last theorem for an example).

There's also ECC, which is above most people's heads.

And another great example is factorization algorithms, with their various sieves. If you want to be overwhelmed, try to dive into the math of proving their complexity. And keep in mind that even the smallest gains can be very economical (or important from a strategic point of view), so the brightest minds grind their brains at these problems on a daily basis. The complexity of the General Number Field sieve, is:

alt text

You can imagine this thing isn't easy to compute/prove. And reading on the GNFs is an exciting insight into some really heavy math.

link|flag
vote up 2 vote down

I find a lot of the math used in computer vision to be particularly daunting. It's a combination of concepts though.

link|flag
As a computer vision student, I have to agree. :) – kigurai Feb 1 at 17:45
As another computer vision students, I feel the same! – Ray Hidayat Feb 2 at 1:27
vote up 1 vote down

If you want some hard problems why don't you try Project Euler.

link|flag
Your link is broken (extra 'r') – Jonik Feb 1 at 17:31
Good point! I have done them. Highly recommended. – Masi Feb 2 at 3:19
vote up 5 vote down

Computational Geometry is on the top list when it comes to hard problems that require a good deal of math but are still not entirely math based. You need very good programming skills for these as well.

Digital Signal Processing is hard as well. However, the problem solving process it is more biased towards math. The programming part is often just manual translating the equations into code.

link|flag
vote up 2 vote down

There's some fascinating, deep mathematics in data compression.

The nice thing about it is that you can start with dead simple algorithms, progress through some slightly more complex ideas and gradually work up to the state of the art techniques.

Personally, when the fundamental connection between wavelet compression and quantum mechanics became clear, it blew my mind.

On top of all that, it's extremely useful (and a marketable skill), and for such an intellectually demanding field, remains intimately linked to real-world data and problems.

The fact that your new compression scheme is going to have to take advantage of redundancy in the data itself, along with our own sensory capabilities, means you have exposure to lots of other engaging fields, too.

link|flag
vote up 2 vote down

I've found some of the math in the more advanced Complexity Theory pretty inaccessible in my graduate studies. Basically, the lecturer would go on and on during class and nobody would understand anything, and then 50% would fail the exam. But that might be just that lecturer.

The ideas aren't very hard to grasp on the popular science kind of level but when you start going into the exact definitions and proofs the shit really hits the fan.

link|flag
vote up 1 vote down

Maurice Herlihy's work on distributed protocols as functions on simplexes (i.e. an algebraic topology setting) is hard for me:

http://www.cs.brown.edu/~mph/topology.html

link|flag
Very interesting finding! Great thanks for sharing. Unfortunately, someone closed this important question :( – Masi Feb 2 at 3:15

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