Finding the Cardinality of Set C: A Problem in Subsequence Coverage

  • Context: Graduate 
  • Thread starter Thread starter grigor
  • Start date Start date
  • Tags Tags
    Cardinality Set
Click For Summary
SUMMARY

The discussion focuses on determining the cardinality of set C, which consists of subsequences from set S that can be covered by K tiles from set T. Set T is formed from subsequences of M consecutive integers, with tiles of length L_T, while set S contains subsequences of length L_S. The problem emphasizes the relationship between the lengths of tiles and subsequences, illustrating that certain combinations can cover specific subsequences. The proposed approach involves examining the union of subsets of K tiles and utilizing power sets to derive the cardinality of C.

PREREQUISITES
  • Understanding of subsequences in combinatorial mathematics
  • Familiarity with power sets and their applications
  • Knowledge of set theory, particularly unions and subsets
  • Basic programming skills for implementing combinatorial algorithms
NEXT STEPS
  • Explore combinatorial algorithms for generating subsequences
  • Learn about power set generation techniques in programming
  • Investigate set union operations and their computational complexity
  • Study applications of combinatorial optimization in algorithm design
USEFUL FOR

This discussion is beneficial for mathematicians, computer scientists, and algorithm developers interested in combinatorial problems, particularly those involving subsequence coverage and optimization techniques.

grigor
Messages
4
Reaction score
0
I have faced the following problem recently:

We have a sequence A of M consecutive integers, beginning at A[1] = 1: 1,2,...M (example: M = 8 , A = 1,2,3,4,5,6,7,8 )

We have the set T consisting of all possible subsequences made from L_T consecutive terms of A, which do not overlap. (example L_T = 3 , subsequences are {1,2,3},{4,5,6},{7,8,9},...). Let's call the elements of T "tiles".

We have the set S consisting of all possible subsequences of A that have length L_S. ( example L_S = 4, subsequences like {1,2,3,4} , {1,3,7,8} ,...{4,5,7,8} ).

We say that an element s of S can be "covered" by K "tiles" of T if there exist K tiles in T such that the union of their sets of terms contains the terms of s as a subset. For example, subsequence {1,2,3} is possible to cover with 2 tiles of length 2 ({1,2} and {3,4}), while subsequnce {1,3,5} is not possible to "cover" with 2 "tiles" of length 2, but is possible to cover with 2 "tiles" of length 3 ({1,2,3} and {4,5,6}).

Let C be the subset of elements of S that can be covered by K tiles of T.

Find the cardinality of C given M, L_T, L_S, K.

Any ideas would be appreciated how to tackle this problem.
 
Physics news on Phys.org
It may make sense to look at the union of each subset of K tiles, and then take power sets of their union.
 

Similar threads

  • · Replies 20 ·
Replies
20
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
3
Views
2K
  • · Replies 27 ·
Replies
27
Views
4K
Replies
8
Views
3K
  • · Replies 1 ·
Replies
1
Views
11K
  • · Replies 4 ·
Replies
4
Views
2K