I need to estimate the probability $P(\text{Graph G has at least 1 k-clique})$, any precision will do. I know the edge probability, say $p$, so the average number of the edges, $EK$, is $pm(m - 1)/2$, where $m$ is a number of vertices. I tried to use the Turan theorem with the Markov inequality, but Turan condition is too strong, so I ended up with the estimation $P(\text{Graph G has at least 1 k-clique}) \ge 0$.
I tried to use more precise Chebyshev inequality instead, but to calculate $E(K)^2$ is really hard in my case.
Does anyone know what should I do? Is there maybe any estimates for the probability of a k-clique in a random graph, so I could use it instead of precise Turan condition?
The probability of any particular set of $k$ vertices forming a $k$-clique is $p^{\binom k2}$. The probability of there being at least one $k$-clique is less than the sum of all these probabilities, and thus less than $\displaystyle\binom mkp^{\binom k2}$.
I hope this is what you meant by "any precision will do" :-)
[Edit in response to the clarification:]
According to a comment under the question, the joint distribution of the existence of the edges is unknown and complicated. In this case nothing can be said about the probability of a $k$-clique; depending on the joint distribution this probability could lie anywhere between $0$ and $1$.