Questions tagged [hypergraphs]

Use this tag for questions about hypergraphs, i.e. generalizations of graphs in graph theory, in which edges are allowed to be arbitrary subsets of vertices, instead of just pairs.

Hypergraphs are a generalization of graphs in which an edge can join any number of vertices, instead of just two.

Formally, a hypergraph consists of:

  • a set of vertices;
  • a family of sets of vertices, called hyperedges or just edges.

We often consider $k$-uniform hypergraphs for some value of $k$: in these, all hyperedges contain exactly $k$ vertices. Thus, graphs are exactly the $2$-uniform hypergraphs.

One standard references for this area is Berge's Graphs and Hypergraphs.

160 questions
3
votes
1 answer

Dual of a Hypergraph

I would like to know for a hypergraph $H=(V,\mathcal{E})$ if $H^*$ represents its dual then is $(H^*)^*= H$?? https://en.wikipedia.org/wiki/Hypergraph and Claude berge's books tells $(H^*)^*= H$ but…
seena
  • 33
1
vote
0 answers

How to check if a separating system is minimal?

Let $\mathcal{H}$ be a minimal strongly separating system on a base set of size 20. Prove that $\mathcal{H}$ is a Sperner-system. Let $\mathcal{H}$ be a minimal strongly separating system on a base set of size 25. Show that there exists such that is…
0
votes
0 answers

Show the existence of a set $F'$, such that $F \subseteq F'$ and $|F'|=2^{n-1}$!

$F\subseteq2^{[n]}$ and it has no disjoint elements in it. Show that exists an $F'\supseteq F$, such that $F'$ still has no disjoint elements and $|F'|=2^{n-1}$! I tried to construct $F'$ of $F$ fixing one element $a\in [n]$ and taking all subsets…
0
votes
2 answers

How many hyperedges are in a (k, r) regular hypergraph?

I'm trying to write an algorithm to produce random $r$-regular $k$-uniform hypergraphs, the representation I am interested in is the incidence matrix. I've done this for the simpler case of a regular graph (2-uniform hypergraph), and that was not…
HericDenis
  • 103
  • 4