symmetric subset - definição. O que é symmetric subset. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é symmetric subset - definição

DECISION PROBLEM IN COMPUTER SCIENCE
Subset sum; Subset-sum problem; Subset sums; Subset Sum; Sum of subsets; Subset-sum

Elementary symmetric polynomial         
HOMOGENEOUS SYMMETRIC POLYNOMIAL IN WHICH EACH POSSIBLE MONOMIAL OCCURS EXACTLY ONCE WITH COEFFICIENT 1
Elementary symmetric function; Elementary symmetric polynomials; Fundamental theorem of symmetric polynomials; Fundamental Theorem of Symmetric Polynomials
In mathematics, specifically in commutative algebra, the elementary symmetric polynomials are one type of basic building block for symmetric polynomials, in the sense that any symmetric polynomial can be expressed as a polynomial in elementary symmetric polynomials. That is, any symmetric polynomial is given by an expression involving only additions and multiplication of constants and elementary symmetric polynomials.
Cofinal (mathematics)         
IN ORDER THEORY, A SUBSET 𝑌 OF A POSET 𝑋 SUCH THAT FOR ANY ELEMENT OF 𝑋, THERE EXISTS AN ELEMENT OF 𝑌 LARGER THAN IT
Cofinal subset; Cofinal function; Cofinal sequence; Cofinal net; Coinitial; Cofinal set; Final function
In mathematics, a subset B \subseteq A of a preordered set (A, \leq) is said to be cofinal or frequent in A if for every a \in A, it is possible to find an element b in B that is "larger than a" (explicitly, "larger than a" means a \leq b).
Symmetric-key algorithm         
ALGORITHM
Symmetric Algorithms; Symmetric key; Symmetric encryption; Symmetric key cryptography; Symmetric cypher; Shared key; Symmetric cipher; Symmetric-key cipher; Symmetric key algorithms; Symmetric cryptography; Private-key cryptography; Symmetric key encryption; Symmetric key algorithm; Reciprocal cipher; Reciprocal encipherment; Private key cryptography; Symmetric-key encryption algorithm; Symmetric-key cryptography; Private-key; Symmetric algorithm; Private-key encryption; Symmetrical encryption
Symmetric-key algorithms are algorithms for cryptography that use the same cryptographic keys for both the encryption of plaintext and the decryption of ciphertext. The keys may be identical, or there may be a simple transformation to go between the two keys.

Wikipédia

Subset sum problem

The subset sum problem (SSP) is a decision problem in computer science. In its most general formulation, there is a multiset S {\displaystyle S} of integers and a target-sum T {\displaystyle T} , and the question is to decide whether any subset of the integers sum to precisely T {\displaystyle T} . The problem is known to be NP-hard. Moreover, some restricted variants of it are NP-complete too, for example:

  • The variant in which all inputs are positive.
  • The variant in which inputs may be positive or negative, and T = 0 {\displaystyle T=0} . For example, given the set { 7 , 3 , 2 , 9000 , 5 , 8 } {\displaystyle \{-7,-3,-2,9000,5,8\}} , the answer is yes because the subset { 3 , 2 , 5 } {\displaystyle \{-3,-2,5\}} sums to zero.
  • The variant in which all inputs are positive, and the target sum is exactly half the sum of all inputs, i.e., T = 1 2 ( a 1 + + a n ) {\displaystyle T={\frac {1}{2}}(a_{1}+\dots +a_{n})} . This special case of SSP is known as the partition problem.

SSP can also be regarded as an optimization problem: find a subset whose sum is at most T, and subject to that, as close as possible to T. It is NP-hard, but there are several algorithms that can solve it reasonably quickly in practice.

SSP is a special case of the knapsack problem and of the multiple subset sum problem.