Thanks so much for the answer, Devon.
So, if I understood it right, the alignment of a specific read to a location in the reference genome is a 'Bernoulli Trial' since it either aligns to that location (success) or not, and since let's assume that the depth of coverage is 30x, we are drawing from a Binomial distribution, because we are performing the Bernoulli trial on average 30 times.
The binomial distribution has two parameters: n and p. n, we can assume here that it is 30 for a normal diploid sample considering the depth of coverage of 30x.
Now, let's move from a read to a snp within that read. Since I am working with heterozygous snps, the probability of seeing the alternative allele is equal to the probability of seeing the reference allele which is equal to 0.5. So, it can be said that the the probability of success is always 0.5 (so this is the second parameter for the binomial distribution).
Now let imagine different possibilities:
Normal diploid (2N): n = 30, p = 0.5 => variance = 30 * 0.5 * 0,5 = 7.5
Hemizygous deletion (1N): Here, we can assume that if the coverage is 30, we would see 15 reads, since we have lost one of the copies, however, the probability of success (seeing the alternative allele) remains the same. So:
Variance = 15 * 0.5 * 0.5 = 3.75
Homozygous deletion (0N): n = 0, p = 0.5, var = 0
+1 gain (3N): n = 45, p = 0.5 => var = 45 * 0.5 * 0.5 = 11.25
+2 gain (4N): n=60, p= 0.5 => 60 * 0.5 * 0.5 = 15 and so on.
So, is this the correct way to think about this situation?



I was considering this might have something to do with the read (A, T, C, G) at each snp position.
Could it be due to the fact that there are fewer discrete steps on the way down than up? Lose one allele and you have 1+noise, lose the other and you have noise. Gain an allele and you have 3+noise and then the sky is the limit...
Could also imagine that amplifying something to high copy numbers by e.g. breakage-fusion-bridge cycles is inherently messy and could result in higher overall variance..