'Computer'에 해당되는 글 568건

  1. 2008.04.04 윈도우 방화벽 설정 시 특정 포트 허용하기 by 알 수 없는 사용자
  2. 2008.04.04 NP-complete by 알 수 없는 사용자
  3. 2008.04.04 Operations research by 알 수 없는 사용자
  4. 2008.04.04 Maxima and minima by 알 수 없는 사용자
  5. 2008.04.04 NP (complexity) by 알 수 없는 사용자
  6. 2008.04.04 P (complexity) by 알 수 없는 사용자 1
  7. 2008.04.04 Complexity class by 알 수 없는 사용자
  8. 2008.04.03 Pointclass by 알 수 없는 사용자
  9. 2008.04.03 Descriptive set theory by 알 수 없는 사용자
  10. 2008.04.03 Structural proof theory by 알 수 없는 사용자

시작 -> 설정 -> 제어판 클릭

Windows 방화벽 클릭

예외 탭에서 포트 추가 버튼을 눌러서 설정한다.

Posted by 알 수 없는 사용자
,

NP-complete

Computer/Terms 2008. 4. 4. 10:02

In computational complexity theory, the complexity class NP-complete, also known as NP-C or NPC, is a subset of NP ("non-deterministic polynomial time"). Problems are designated "NP-complete" if their solutions can be quickly checked for correctness, and if the same solving algorithm used can solve all other NP problems. They are the most difficult problems in NP in the sense that a deterministic, polynomial-time solution to any NP-complete problem would provide a solution to every other problem in NP (and conversely, if any one of them provably lacks a deterministic polynomial-time solution, none of them has one). Problems in NP-complete are known as NP-complete problems. A more formal definition is given below.

One example of an NP-complete problem is the subset sum problem which is: given a finite set of integers, determine whether any non-empty subset of them sums to zero. A supposed answer is very easy to verify for correctness, but there is no known efficient algorithm to find an answer; that is, all known algorithms are impractically slow for large sets of integers.

Reference:
http://en.wikipedia.org/wiki/NP-complete

Posted by 알 수 없는 사용자
,

Operations Research (OR) in the US, and Operational Research in the UK, is an interdisciplinary branch of applied mathematics which uses methods like mathematical modeling, statistics, and algorithms to arrive at optimal or good decisions in complex problems which are concerned with optimizing the maxima (profit, faster assembly line, greater crop yield, higher bandwidth, etc) or minima (cost loss, lowering of risk, etc) of some objective function. The eventual intention behind using operations research is to elicit a best possible solution to a problem mathematically, which improves or optimizes the performance of the system.

Reference:
http://en.wikipedia.org/wiki/Operations_research
Posted by 알 수 없는 사용자
,

Maxima and minima

Computer/Terms 2008. 4. 4. 09:35

In mathematics, maxima and minima, known collectively as extrema, are the largest value (maximum) or smallest value (minimum), that a function takes in a point either within a given neighbourhood (local extremum) or on the function domain in its entirety (global extremum).

Reference:
http://en.wikipedia.org/wiki/Maxima_and_minima
Posted by 알 수 없는 사용자
,

NP (complexity)

Computer/Terms 2008. 4. 4. 09:27

In computational complexity theory, NP is one of the most fundamental complexity classes. The abbreviation NP refers to "Non-deterministic Polynomial time".

Intuitively, NP contains all decision problems for which the 'yes'-answers have simple proofs of the fact that the answer is indeed 'yes'. More precisely, these proofs have to be verifiable in polynomial time by a deterministic Turing machine. In an equivalent formal definition, NP is the set of decision problems solvable in polynomial time by a non-deterministic Turing machine.

The complexity class P is contained in NP, but NP contains many important problems, called NP-complete problems, for which no polynomial-time algorithms are known. The most important open question in complexity theory, the P = NP problem, asks whether such algorithms actually exist for NP-complete problems. It is widely believed that this is not the case.

Reference:
http://en.wikipedia.org/wiki/NP_%28complexity%29

Posted by 알 수 없는 사용자
,

P (complexity)

Computer/Terms 2008. 4. 4. 09:13

In computational complexity theory, P is one of the most fundamental complexity classes. It contains all decision problems which can be solved by a deterministic Turing machine using a polynomial amount of computation time, or polynomial time.

P is often taken to be the class of computational problems which are "efficiently solvable" or "tractable", although there are potentially larger classes that are also considered tractable such as RP and BPP. Also, there exist problems in P which are intractable in practical terms; for example, some require at least n^1000000 operations. See even harder problems of complexity classes for further discussion.

Reference:
http://en.wikipedia.org/wiki/P_%28complexity%29

Posted by 알 수 없는 사용자
,

Complexity class

Computer/Terms 2008. 4. 4. 09:05

In computational complexity theory, a complexity class is a set of problems of related complexity. A typical complexity class has a definition of the form:

the set of problems that can be solved by abstract machine M using O(f(n)) of resource R (n is the size of the input)
For example, the class NP is the set of decision problems that can be solved by a non-deterministic Turing machine in polynomial time, while the class PSPACE is the set of decision problems that can be solved by a deterministic Turing machine in polynomial space. Some complexity classes are sets of function problems, such as FP.

Many complexity classes can be characterized in terms of the mathematical logic needed to express them; see descriptive complexity.

The Blum axioms can be used to define complexity classes without referring to a concrete computational model.

Reference:
http://en.wikipedia.org/wiki/Complexity_class

Posted by 알 수 없는 사용자
,

Pointclass

Computer/Terms 2008. 4. 3. 12:39

In the mathematical field of descriptive set theory, a pointclass is a collection of sets of points, where a point is ordinarily understood to be an element of some perfect Polish space. In practice, a pointclass is usually characterized by some sort of definability property; for example, the collection of all open sets in some fixed collection of Polish spaces is a pointclass. (An open set may be seen as in some sense definable because it cannot be a purely arbitrary collection of points; for any point in the set, all points sufficiently close to that point must also be in the set.)

Pointclasses find application in formulating many important principles and theorems from set theory and real analysis. Strong set-theoretic principles may be stated in terms of the determinacy of various pointclasses, which in turn implies that sets in those pointclasses (or sometimes larger ones) have regularity properties such as Lebesgue measurability (and indeed universal measurability), the property of Baire, and the perfect set property.

Reference:
http://en.wikipedia.org/wiki/Lightface

Posted by 알 수 없는 사용자
,

In mathematical logic, descriptive set theory is the study of certain classes of "well-behaved" subsets of the real line and other Polish spaces. One of the primary areas of research in set theory, it has applications to other areas of mathematical logic as well as areas of mathematics such as functional analysis.

Reference:
http://en.wikipedia.org/wiki/Descriptive_set_theory
Posted by 알 수 없는 사용자
,

In mathematical logic, structural proof theory is the subdiscipline of proof theory that studies proof calculi that support a notion of analytic proof.

The notion of analytic proof was introduced by Gerhard Gentzen for the sequent calculus; there the analytic proofs are those that are cut-free. His natural deduction calculus also supports a notion of analytic proof, as was shown by Dag Prawitz; the definition is slightly more complex — we say the analytic proofs are the normal forms, which are related to the notion of normal form in term rewriting.

Reference:
http://en.wikipedia.org/wiki/Structural_proof_theory

Posted by 알 수 없는 사용자
,