If I have this data,
y=c(0,1,0,1,1,1)
x1=c(0,1,2,2,1,0)
x2=c(1,2,2,2,0,0)
x3=c(1,2,2,2,1,0)
x4=c(0,0,0,0,1,0)
model1<-glm(y~x1,family=binomial)
model12-glm(y~x1+x2+x3+x4,family=binomial)
If we fit $y$ with just $x_1$ we will have a coefficient for $x_1$, namely $\hat{\beta_1}$, and if we fit $x_1$ and all the $x$s together (jointly) we will have four coefficients, $\hat{\beta_1}$, $\hat{\beta_2}$,$\hat{\beta_3}$, $\hat{\beta_4}$.
My question is what is the difference between the value of coefficient of $x_1$ in model1 and $x_1$ in model2? (Difference between $\hat{\beta_1}$ in model 1 and $\hat{\beta_1}$ in model 2)