I've taken up the Delta Method challenge to calculate the variance of back-transformed estimates in order to estimate 95% CIs (in my case the influence of water temperature on detection probability for frogs). To better understand the workings of the Delta Method I've used Example 4 (Appendix B-19) to re-create the values (using excel). I successfully estimated the variance by calculating the partial derivatives, then multiplied the vector of partial derivatives with the variance-covariance matrix to estimate the variance and then taken the square root of this to get the SE. This felt pretty good as I'd been looking at this chapter for years with some trepidation

. (I even managed to detect a very minor typo on page B-21 - a zero is missing on the variance estimate after the matrix calculation).
I went an calculated variance on my own data and then estimated 95%CI using the steps listed below:
step 1 - calculate 95% CI logits - b1+(b2*stdz covariate) +- 1.96*sqrt(variance)
step 2 - back-transform 95% CI logits - exp(logit)/(1+exp(logit)
Logits B1 -0.970978 (se 0.206664), B2 -1.221872 (se 0.236884), Stdz covariate value - -3.04651446159902
V-C B1 0.042710 0.020334
B2 0.020334 0.056114
However, I ended up with suspiciously small 95%CI values that I don't have much faith in.
I'd appreciate any insights into where I may have erred on this please.
Regards
Tony