Over the domain of integers, if $(a-c)|(ab+cd)$ then $(a-c)|(ad+bc)$.
Note: $x|y$ means "$x$ divides $y$," i.e. $\exists k\in \mathbb{Z}. y=x\cdot k$
This is part of an assignment on GCD, Euclidean algorithm, and modular arithmetic.
My approach:
If $a-c$, divides a linear combination of $a$ and $c$, then $a-c$ is a common divisor of $a$ and $c$. This comes from the definition of a common divisor: that if a certain $d$ divides two integers $x$ and $y$, then $d$ divides a linear combination of $x$ and $y$. Both $ab+cd$ and $ad+bc$ are linear combinations of $a$ and $c$ so $a-c$ must divide both of them.
well, $ab + cd = ab - bc + bc + cd = b(a-c) + c(b+d)$ and thus:
$(a-c) | ab + cd \iff (a-c) | c(b+d)$
Likewise,
$ad + bc = ad - cd + cd + bc = d(a-c) + c(b+d)$.
So,
$(a-c) | ad + bc \iff (a-c) | c(b+d)$
Hence these conditions are equivalent:
That is, $(a-c) | ad + bc \iff (a-c) | ab + cd $.
Remark: My solution works, but provides little insight - i would love to see some geometric interpretations by others. e.g $(ab + cd) = (a,b) \cdot (b,c)$ - could we do something with this? and both $ad + bc$ and $ab + cd$ could be interpreted as the determinant of a matrix.