I'm trying to perform this "interpolation" because I ultimately am trying to write a small library to simulate stochastic processes. I realized I might need to figure out what is the distribution of $W(k)$ when I already know the values of $W(a)$ and $W(b)$ during a sample run.
Here's what I got so far $$ W(k) = \frac{1}{2} (W(k)-W(a)) + \frac{1}{2}W(a) + \frac{1}{2}W(b) - \frac{1}{2}(W(b)-W(k)) $$ I know the first and last summands are independent normal r.v.s $$ W(k) = \frac{1}{2} (W(b)+W(a))+ \frac{1}{2} ( N(0,k-a)-N(0,b-k)) \\ $$ which results in $$ W(k) = \frac{W(b)+W(a)}{2} + \frac{1}{2} N(0,b-a) $$
The distribution of $W(k)$ doesn't seem to depend on $k$ at all, which is very counter-intuitive. For example, if during a sample I see $W(0)=0$ and $W(1)=1$, I refuse to believe that $W(0.1)$ has the same distribution as$W(0.99)$--namely, $N(0.5,0.25)$. I must be doing something wrong, but can't see what.
The formal manipulations seem correct. Am I committing some assumption of independence that isn't true.
To see what's happening, set $X = \frac{W(b) + W(a)}{2}$ and $Y = W(k) -X$. I agree that your computation shows $Y \sim \frac{1}{2} N(0,b-a)$, regardless of the value of $k$. And the distribution of $X$ certainly doesn't depend on $k$.
But this does not imply that the distribution of $W(k) = X+Y$ is the same for all $k$, because the covariance of $X$ and $Y$ does depend on $k$. (I will leave you to compute it.)
Put another way, to conclude that the distribution of $W(k)$ was the same for all $k$, you'd need to show that the joint distribution of $(X,Y)$ was the same for all $k$. But you've only shown that the marginal distributions are the same for all $k$.