I would like to estimate the size of the minimum vertex cover (MVC) for a very large graph $G=(V,E)$. To be exact, I would like to estimate the following proportion:
$$p(G)=\frac{|MVC|_G}{|V|}$$
As computing a MVC is quite expensive, I want to sample a subgraph $G_s=(V',E')$ with $n$ vertices from $G$ and compute $p(G')$. Finally, my goal is to estimate $p(G)$ from $p(G')$ with some error and/or confidence depending on $n$.
After a lot of research, I wasn't able to get a convincing result and almost no literature. I linked this problem to the estimation of the independence number but, once again, its estimation from a randomly sampled subgraph is absent.
I'm open on any parameter of the problem and if you have even a small idea of a potentially interesting paper to read, I am all ears. Thank you.
Following the very good explanation from Misha, I am just going to give my feedbacks after finding sufficient results for my application. Multiple papers have been published on the subject proposing to estimate the the MVC size from only a fraction of the nodes (they call it sublinear as it is sublinear regarding the number of nodes). In chronological order, here are the one you want to take a look at:
They have been one the road of improving successively both the complexity of the algorithm and the quality of the approximation. Enjoy!