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?
|
4
|
|||||||||||
|
closed as not a real question by ocdecio, Espo, Steven A. Lowe, rp Feb 2 at 1:38 |
|
|
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. |
||
|
|
|
|
Proving the correctness of a program. |
||||||||||||||
|
|
|
Quite a few were described in an earlier question "What optimization problems do you want to have solved?" |
||
|
|
|
|
For me maybe was applied problems involving Laplace Transforms, Fourier Series and Differential Equations |
||
|
|
|
|
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.). |
|||
|
|
|
|
Aren't nearly all mathematical concepts applicable or potentially applicable in some way? |
||
|
|
|
|
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 ;-) |
||
|
|
|
|
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:
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. |
|||
|
|
|
|
I find a lot of the math used in computer vision to be particularly daunting. It's a combination of concepts though. |
||||
|
|
|
If you want some hard problems why don't you try Project Euler. |
|||
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Maurice Herlihy's work on distributed protocols as functions on simplexes (i.e. an algebraic topology setting) is hard for me: |
||
|

