I am curve fitting a model to data sets in order to determine a coefficient for each curve fit/data set. I then calculate an average coefficient and the 95% confidence interval for this average. However, each curve fit involves the use of a parameter (in the model equation) which itself has a 95% confidence interval. How do I propagate the 95% confidence interval for this parameter into the 95% confidence interval for the coefficient calculated from curve fits?
Here is an example version of the model that I am curve fitting to data: $$y=\text{erfc}\left(\frac{x}{A+B}\right)$$ $A$ is the curve fit variable and $B$ is the pre-determined parameter with a 95% confidence interval. Changing the value of $B$ changes the calculated value of $A$, so unless I'm mistaken, the confidence interval of $B$ should propagate into that of $A$. How is this done mathematically?
Edit: I found the answer to my question. It's included below.
I found a way to accomplish the propagation of uncertainty: Combine $A$ and $B$ into a single term—say, $C$—and curve fit to determine $C$. Then, solve $C = A + B$ for $A$ and calculate the uncertainty of $A$ with the uncertainties of $C$ and $B$.