reserve a,b for Complex;
reserve V,X,Y for ComplexLinearSpace;
reserve u,u1,u2,v,v1,v2 for VECTOR of V;
reserve z,z1,z2 for Complex;
reserve V1,V2,V3 for Subset of V;
reserve W,W1,W2 for Subspace of V;
reserve x for set;
reserve w,w1,w2 for VECTOR of W;
reserve D for non empty set;
reserve d1 for Element of D;
reserve A for BinOp of D;
reserve M for Function of [:COMPLEX,D:],D;
reserve B,C for Coset of W;

theorem Th68:
  v in W implies (z * v) + W = the carrier of W
proof
  assume
A1: v in W;
  thus (z * v) + W c= the carrier of W
  proof
    let x be object;
    assume x in (z * v) + W;
    then consider u such that
A2: x = z * v + u and
A3: u in W;
    z * v in W by A1,Th40;
    then z * v + u in W by A3,Th39;
    hence thesis by A2;
  end;
  let x be object;
  assume
A4: x in the carrier of W;
  then
A5: x in W;
  the carrier of W c= the carrier of V by Def8;
  then reconsider y = x as Element of V by A4;
A6: z * v + (y - z * v) = (y + z * v) - z * v by RLVECT_1:def 3
    .= y + (z * v - z * v) by RLVECT_1:def 3
    .= y + 0.V by RLVECT_1:15
    .= x by RLVECT_1:4;
  z * v in W by A1,Th40;
  then y - z * v in W by A5,Th42;
  hence thesis by A6;
end;
