4
$\begingroup$

How should I understand the definition of computational problem?

A computational problem is a mathematical object representing a collection of questions that computers might be able to solve. For example, the problem of factoring

"Given a positive integer n, find a nontrivial prime factor of n."

What is the mathematical object in the example above? Quoting Wikipedia again:

Commonly encountered mathematical objects include numbers, permutations, partitions, matrices, sets, functions, and relations.

So how can you 'represent' a collection of questions with numbers or permutations, matrices etc.? What is meant here is probably the following collection of sentences:

'find a nontrivial prime factor of 1', 'find a nontrivial prime factor of 2' and so on...

But the thing is - these sentences are not mathematical objects.

A little further in the article it reads:

A computational problem can be viewed as an infinite collection of instances together with a solution for every instance.

which makes perfect sense, but I don't quite see the relationship with the first definition.

Raphael
73.3k31 gold badges184 silver badges406 bronze badges
asked Oct 1, 2015 at 8:19
$\endgroup$
4
  • 2
    $\begingroup$ Hint: get a textbook. $\endgroup$ Commented Oct 1, 2015 at 16:04
  • $\begingroup$ @Raphael which one do you recommend? $\endgroup$ Commented Oct 1, 2015 at 16:23
  • $\begingroup$ I don't have experience with English textbooks on computability, sorry. You can check syllabus of introductory university courses. $\endgroup$ Commented Oct 1, 2015 at 19:56
  • 2
    $\begingroup$ Sorry, but the answers like "get a textbook" are so unhelpful. Why is it always so elitist in math communities? $\endgroup$ Commented Apr 27, 2020 at 6:56

3 Answers 3

1
$\begingroup$

But the thing is - these sentences are not mathematical objects.

Yes, they are. A set of sentences can be a mathematical object. Just about anything can be a mathematical object.

A computational problem can be viewed as an infinite collection of instances together with a solution for every instance.

[...] but I don't quite see the relationship with the first definition

Well, "an infinite collection of instances together with a solution for every instance" is a mathematical object (representing a collection of questions that computers might be able to solve).

answered Oct 1, 2015 at 9:26
$\endgroup$
0
$\begingroup$

The mathematical object is "a collection of questions". A "collection" is another word for a "set". You listed sets as one kind of mathematical object.

The connection between the two definitions is: each instance represents a slightly different question that a computer might be able to solve. So, you have one instance per question.

answered Oct 1, 2015 at 9:47
$\endgroup$
0
$\begingroup$

A sentence can be a mathematical object, but it isn't very helpful in your case. One way to approach the answer would be to analytically decompose the problem into simple and familiar mathematical objects and then to build a more complex mathematical object representing your problem. So:

"Given a positive integer n, find a nontrivial prime factor of n."

  1. You can salvage $n$ - a familiar mathematical object, an integer.
  2. Investigating further, you can salvage $p$ - a prime factor of $n$.
  3. The question establishes a relation between $n$ and $p,ドル restated using Greek and Hebrew of mathematics: $R = \{(n, p) \;|\; \forall q \in (\mathbb{N} \setminus \{1, p\}): (p \div q) \not \in \mathbb{N} \land \exists m \in \mathbb{N}: p \cdot m = n \},ドル which is a relation, a familiar mathematical object, further written as $n R p$.
  4. Now it's time to state the problem. For example, you could use the language of first order logic to formulate it: $p \impliedby n R p$. The logical interpretation of such formula is "if $p$ is a non-trivial prime factor of $n,ドル then $p$. Computational interpretation of this formula is "find all $p$ which are non-trivial factors of $n$".
  5. Finally, you can go one step further and implement it in a programming language, for example, in Prolog:

    prime_factor_of_n(P, N) :- M in 2..N, P is N / M, prime(P).
    
answered Oct 1, 2015 at 14:07
$\endgroup$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.