reserve X for non empty CUNITSTR;
reserve a, b for Complex;
reserve x, y for Point of X;
reserve X for ComplexUnitarySpace;
reserve x, y, z, u, v for Point of X;

theorem Th15:
  (a*x + b*y).|.z = a * x.|.z + b * y.|.z
proof
  (a*x+b*y) .|. z = (a*x) .|. z + (b*y) .|. z by Def11
    .= a * x .|. z + (b*y) .|. z by Def11;
  hence thesis by Def11;
end;
