I assume I can perform simple estimated calculations.Gaussian distribution is 1/sqrt(2*pi)/sigma exp[-(x-mu)^2/(2*sigma^2)]. Its maximum is 1/sqrt(2*pi)/sigma and half-maximum is the half of it... E.g. for std equal to 1, 1/sqrt(2*pi)*0.5 =~ 0.2, which is around the y coordinate of your point. You can also estimate the half width of the distribution at half maximum: for mu = 0, 1/2 = exp(-1/2 w^2/sigma^2), ln(0.5) = -log(2) = -1/2 w^2/sigma^2, w = sigma*sqrt(2*ln(2)). You can see that the maximum of the Gaussian scales with sigma like 1/sigma, while its half width grows linearly. For sigma = 1, the half width is slightly more than 1. If you stretch the distribution by increasing sigma to 2, the half width will be twice bigger, but the maximum of the distribution will already drop to 0.2. This shows that there's no chance to get to x=3 at y=0.2 for a Gaussian with maximum at x=mu=-3 (which should have been intuitively obvious since the beginning).The simpler the problem, the more words it takes to describe it