reserve V,X,Y for RealLinearSpace;
reserve u,u1,u2,v,v1,v2 for VECTOR of V;
reserve a for Real;
reserve V1,V2,V3 for Subset of V;
reserve x for object;

theorem Th4:
  {0.V} is linearly-closed
proof
  thus for v,u st v in {0.V} & u in {0.V} holds v + u in {0.V}
  proof
    let v,u;
    assume v in {0.V} & u in {0.V};
    then v = 0.V & u = 0.V by TARSKI:def 1;
    then v + u = 0.V;
    hence thesis by TARSKI:def 1;
  end;
  let a,v;
  assume
A1: v in {0.V};
  then v = 0.V by TARSKI:def 1;
  hence thesis by A1;
end;
