Convolution of Time Distributions

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 1K views
SSGD
Messages
49
Reaction score
4
I need some help to make sure my reasoning is correct. Bear with me please.

I have a time distribution for a process and I want to construct a distribution for the time it takes to perform two processes. So I would define

##\tau = t + t##

This would create a new distribution with is a convolution of the process performed twice.

##P(\tau) = P(t)*P(t)##

Now could I do the same for performing the process N times

##\tau = t + t + ... + t = Nt##

##P(\tau) = P(t)*P(t)*...*P(t)##

Could the N convolutions be performed with a change of variables instead

##P(\tau) = P(t)\frac{dt}{d\tau}##

##P(\tau) = P(\frac{\tau}{N})\frac{1}{N}##
 
on Phys.org
Assuming the above is correct could I also combine time distributions for different process that each had N1 or N2 convolutions.

##z = \tau_1+\tau_2=N_1t_1+N_2t_2##

##P(z) = P_1(\tau_1)*P_2(\tau_2)=\frac{1}{N_1}P_1(\frac{z}{N_1})*\frac{1}{N_2}P_2(\frac{z}{N_2})##
 
SSGD said:
I have a time distribution for a process and I want to construct a distribution for the time it takes to perform two processes. So I would define

τ=t+tτ=t+t\tau = t + t

This would create a new distribution with is a convolution of the process performed twice.
Is that correct. I know that you could form a joint distribution and then project the joint distribution down onto lines of constant sum, but I didn't know that would give the same result as a convolution. If it does, then that is convenient.

SSGD said:
Assuming the above is correct could I also combine time distributions for different process that each had N1 or N2 convolutions
Or you could take the Fourier transform and multiply. That would be my approach.
 
Dale you that is a great idea! I didn't even think about the convolution being a product in the transformed domain. When I get a chance I'm going to do the transforms on a few different distributions and see if the above ideas work out for convolution and change of variables. Thanks.