I have a set of Random Variables which I'm performing operations on that goes something like this:
$ \begin{alignat*}{5} &E\sim(&&A_1 - &&B_1)\cdot &&(C_1 + &&D) \\ &E\sim(&&A_2 - &&B_2)\cdot &&(C_2 + &&D) \\ &\vdots &&\vdots &&\vdots &&\vdots && \vdots \\ &E\sim(&&A_m - &&B_m)\cdot &&(C_m + &&D) \\ \end{alignat*} $
Note the operations are meant on the R.V.s and not on the distributions.
This arises from multiple observations of an experiment to estimate the distribution of $E$, where $D$ is a systematic error common to all experiments. All of these R.V.s (except $E$ of course) are uniformly distributed. The problem I have is combining all of these distributions to get a single distribution of $E$ when $D$ should have the same value (not merely the same distribution) in all equations.
Put another way, if $D$ was subscripted like the other R.V.s, I could create a distribution of $C_i + D_i, i\in \{1,2,\dots m\}$ without any issues. I could then combine the $m$ distributions into a single distribution for $E$ (using numerical methods). This would not be correct though, as it would allow for a possibility (effectively certainty) that $D$ would take different values in each distribution, effectively cancelling each other out to some degree.
How can I combine these rows correctly? Numerically is fine; I'm using R and the distr package as well as doing it by hand + manual coding.
I apoogise if the question is confusing. I'm not very good at mathematical notation or terminology. I'll endeavour to clean it up if you have any questions, and thanks in advance!
EDIT
Making things more concrete, $A_i$ and $B_i$ are inaccurate time measurements of an object from experiment $i$. The time elapsed is therefore distributed as $A_i - B_i$.
The speed of the object in experiment $i$ is measured as $C_i$, again inexactly. The 'random' measurement error is accounted for in the distribution. The speed estimating device is calibrated, but this again has an error. However, this error is systematic and identical from experiment to experiment.
The object in each experiment travels exactly the same distance. This distance is $E$ and the property I'm trying to determine as accurately as possible.